## Observe model mutations in real-time
You can subscribe to changes on your Models. This reacts dynamically to updates of data to the underlying Storage Engine, which could be the result of GraphQL Subscriptions as well as Queries or Mutations that run against the backing AppSync API if you are synchronizing with the cloud.
import js0 from '/src/fragments/lib/datastore/js/real-time/observe-snippet.mdx';
import reactnative0 from '/src/fragments/lib/datastore/js/real-time/observe-snippet.mdx';
import ios1 from '/src/fragments/lib/datastore/ios/real-time/observe-snippet.mdx';
import android2 from '/src/fragments/lib/datastore/android/real-time/observe-snippet.mdx';
import flutter3 from '/src/fragments/lib/datastore/flutter/real-time/observe-snippet.mdx';
## Observe query results in real-time
`observeQuery(...)` returns an initial data set, similar to `query(...)`, and also automatically subscribes to subsequent changes to the query.
The first snapshot returned from `observeQuery` will contain the same results as calling `query` directly on your Model - a collection of all the locally-available records. Subsequent snapshots will be emitted as updates to the dataset are received in the local store.
While data is syncing from the cloud, snapshots will contain all of the items synced so far and an `isSynced` status of `false`. When the sync process is complete, a snapshot will be emitted with all the records in the local store and an `isSynced` status of `true`.
In addition to typical real-time use cases, `observeQuery` can be used on app launch to show your customers an initial data set from the local store while new data is being synced from cloud.
`observeQuery` also accepts the same [predicates](/lib/datastore/data-access#predicates) and [sorting](/lib/datastore/data-access#sort) options as `query`.
import js1 from '/src/fragments/lib/datastore/js/real-time/observe-query-snippet.mdx';
import reactnative1 from '/src/fragments/lib/datastore/js/real-time/observe-query-snippet.mdx';
import ios2 from '/src/fragments/lib/datastore/ios/real-time/observe-query-snippet.mdx';
import android3 from '/src/fragments/lib/datastore/android/real-time/observe-query-snippet.mdx';
import flutter4 from '/src/fragments/lib/datastore/flutter/real-time/observe-query-snippet.mdx';