Created
August 27, 2022 09:37
-
-
Save susimsek/62f8f838df1f743c4b12d9a4efa00b69 to your computer and use it in GitHub Desktop.
Graphql Product Micro Service Schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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