Skip to content

Instantly share code, notes, and snippets.

@susimsek
Created August 27, 2022 09:43
Show Gist options
  • Save susimsek/c0c39c6966adff3ebc89737c4b7e11ad to your computer and use it in GitHub Desktop.
Save susimsek/c0c39c6966adff3ebc89737c4b7e11ad to your computer and use it in GitHub Desktop.
Review Microservice Schema
type Product @key(fields: "id") @extends {
id: ID! @external
reviews: [Review!]!
}
type Review {
id: ID!,
text: String
starRating: Int!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment