querySubscription
returns a Svelte store that you can use to implement client-side updates of the page as soon as the content changes. It uses DatoCMS's Real-time Updates API to receive the updated query results in real-time, and is able to reconnect in case of network failures.
Live updates are great both to get instant previews of your content while editing it inside DatoCMS, or to offer real-time updates of content to your visitors (ie. news site).
Import querySubscription
from datocms-svelte
and use it inside your components like this:
import { querySubscription } from '@datocms/svelte';
const subscription = querySubscription(options: Options);
prop | type | required | description | default |
---|---|---|---|---|
enabled | boolean | ❌ | Whether the subscription has to be performed or not | true |
query | string | TypedDocumentNode |
✅ | The GraphQL query to subscribe | |
token | string | ✅ | DatoCMS API token to use | |
variables | Object | ❌ | GraphQL variables for the query | |
includeDrafts | boolean | ❌ | If true, draft records will be returned | |
excludeInvalid | boolean | ❌ | If true, invalid records will be filtered out | |
environment | string | ❌ | The name of the DatoCMS environment where to perform the query (defaults to primary environment) | |
contentLink | 'vercel-1' or undefined |
❌ | If true, embed metadata that enable Content Link | |
baseEditingUrl | string | ❌ | The base URL of the DatoCMS project | |
cacheTags | boolean | ❌ | If true, receive the Cache Tags associated with the query | |
initialData | Object | ❌ | The initial data to use on the first render | |
reconnectionPeriod | number | ❌ | In case of network errors, the period (in ms) to wait to reconnect | 1000 |
fetcher | a fetch-like function | ❌ | The fetch function to use to perform the registration query | window.fetch |
eventSourceClass | an EventSource-like class | ❌ | The EventSource class to use to open up the SSE connection | window.EventSource |
baseUrl | string | ❌ | The base URL to use to perform the query | https://graphql-listen.datocms.com |
The status
property represents the state of the server-sent events connection. It can be one of the following:
connecting
: the subscription channel is trying to connectconnected
: the channel is open, we're receiving live updatesclosed
: the channel has been permanently closed due to a fatal error (ie. an invalid query)
prop | type | description |
---|---|---|
code | string | The code of the error (ie. INVALID_QUERY ) |
message | string | An human friendly message explaining the error |
response | Object | The raw response returned by the endpoint, if available |
<script>
import { querySubscription } from 'react-datocms';
const subscription = useQuerySubscription({
enabled: true,
query: `
query AppQuery($first: IntType) {
allBlogPosts {
slug
title
}
}`,
variables: { first: 10 },
token: 'YOUR_API_TOKEN',
});
$: ({ data, error, status } = $subscription)
const statusMessage = {
connecting: 'Connecting to DatoCMS...',
connected: 'Connected to DatoCMS, receiving live updates!',
closed: 'Connection closed',
};
</script>
<p>Connection status: {statusMessage[status]}</p>
{#if error}
<h1>Error: {error.code}</h1>
<p>{error.message}</p>
{#if error.response}
<pre>{JSON.stringify(error.response, null, 2)}</pre>
{/if}
{/if}
{#if data}
<ul>
{#each data.allBlogPosts as blogPost (blogPost.slug)}
<li>{blogPost.title}</li>
</ul>
{/if}