Sign up for Hasura Newsletter
Loading...

Fetch public todos - subscription

Now let's define the subscription query to get notified about new public todos

Open src/components/Todo/TodoPublicListSubscription.svelte and add the following code.

githubsrc/components/Todo/TodoPublicListSubscription.svelte
<script>
import { gql } from "@apollo/client/core";
import { subscribe } from "svelte-apollo";
const NOTIFY_NEW_PUBLIC_TODOS = gql`
subscription notifyNewPublicTodos {
todos(
where: { is_public: { _eq: true } }
limit: 1
order_by: { created_at: desc }
) {
id
created_at
}
}
`;
const todos = subscribe(NOTIFY_NEW_PUBLIC_TODOS);
</script>

What does the Subscription do?

The query fetches todos with a simple condition; is_public must be true. We also limit the number of todos to 1, since we would just like to get notified whenever a new todo comes in. We sort the todos by its latest created_at time according to the schema. We specify which fields we need for the todos node.

We already have the TodoPublicList component which renders the list of public todos. So let's pass latestTodo as a prop to that component.

{#if $todos.loading}
<div>Loading ...</div>
{:else if $todos.error}
<div>Error!</div>
{:else if $todos.data}
<TodoPublicList
latestTodo={$todos.data.todos.length ? $todos.data.todos[0] : null}
/>
{/if}
Did you find this page helpful?
Start with GraphQL on Hasura for Free
  • ArrowBuild apps and APIs 10x faster
  • ArrowBuilt-in authorization and caching
  • Arrow8x more performant than hand-rolled APIs
Promo
footer illustration
Brand logo
© 2024 Hasura Inc. All rights reserved
Github
Titter
Discord
Facebook
Instagram
Youtube
Linkedin