Skip to content

Instantly share code, notes, and snippets.

@nishantharcot
Created February 16, 2026 14:30
Show Gist options
  • Select an option

  • Save nishantharcot/695ef2d32529a9a9c3352c1276bf3abb to your computer and use it in GitHub Desktop.

Select an option

Save nishantharcot/695ef2d32529a9a9c3352c1276bf3abb to your computer and use it in GitHub Desktop.
type Query {
cakes: [Cake!]!
cake(id: ID!): Cake
}
type Mutation {
createCake(input: CreateCakeInput!): Cake!
}
type Cake {
id: ID!
name: String!
price: Float!
}
input CreateCakeInput {
name: String!
price: Float!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment