Retrieve all posts with fields
Query users with nested posts
Retrieve a list of all users
Fetch paginated posts
curl -X POST http://localhost:4000/graphql -H 'Content-Type: application/json' -d '{"query":"{ posts(limit: 5, offset: 10) { id title } }"}'
Retrieve a subset of results using limit and offset. Useful for paginated UI views.
Next page posts
{ posts(limit: 3, offset: 6) { id title } }
Rename query results using aliases
Retrieve a single user by ID
Retrieve a single post by ID