user and post) that return typed objects. Use the Documentation panel to explore available fields and arguments.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to use the GraphQL schema on Auk.
type Query {
hello: String
}
https://graphqlzero.almansi.me/api
schema {
query: Query
mutation: Mutation
}
type Query {
user(id: ID!): User
post(id: ID!): Post
}
type User {
id: ID
name: String
email: String
}
user and post) that return typed objects. Use the Documentation panel to explore available fields and arguments.Was this page helpful?