📡 GraphqlAPI
Documented schema
type Query {
user(id: ID!): User
products(category: String): [Product]
}
type User { id: ID! name: String email: String }
type Product { id: ID! name: String price: Float }
(Other fields exist on the server but aren't in our docs.)
Send GraphQL query
{ user(id: "1") { name email } }
Run query
Insert introspection query
Insert example query
{ }