Fetch todos - query
The first graphql query you will write will be to fetch personal todos. You will need to load the todo data from the database which belongs to the logged in user. Let's define a graphql query to fetch the required data.
query getMyTodos {todos(where: { is_public: { _eq: false} }, order_by: { created_at: desc }) {idtitlecreated_atis_completed}}
Try this query in Hasura Console against the application database to see what the response looks like.
Note: You need to pass the Authorization: Bearer <token>
header before querying to get the results.
This query is the actual graphql query that we will be using in our Next.js app and hence test this out to make sure it works as expected.
Let's now integrate this graphql query into our app.
Did you find this page helpful?
Start with GraphQL on Hasura for Free
- Build apps and APIs 10x faster
- Built-in authorization and caching
- 8x more performant than hand-rolled APIs