Skip to content

Instantly share code, notes, and snippets.

@atesibrahim
Created August 1, 2022 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atesibrahim/d4e51708fc279fdfb94c867b67504ca0 to your computer and use it in GitHub Desktop.
Save atesibrahim/d4e51708fc279fdfb94c867b67504ca0 to your computer and use it in GitHub Desktop.
graphqls
type Book {
id: Int
title: String
authorName: String
}
input BookInput {
id: Int
title: String
authorName: String
}
input NewBook {
id: Int
title: String
authorName: String
}
type BookOutput {
id: Int
title: String
authorName: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment