Skip to content

Instantly share code, notes, and snippets.

@susimsek
Created August 27, 2022 09:37
Show Gist options
  • Save susimsek/62f8f838df1f743c4b12d9a4efa00b69 to your computer and use it in GitHub Desktop.
Save susimsek/62f8f838df1f743c4b12d9a4efa00b69 to your computer and use it in GitHub Desktop.
Graphql Product Micro Service Schema
scalar OffsetDateTime
type Query {
product(id: ID!): Product
products: [Product!]!
}
type Product @key(fields: "id") {
id: ID!
name: String!
description: String,
createdDate: OffsetDateTime!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment