Skip to content

Instantly share code, notes, and snippets.

@susimsek
Created August 27, 2022 10:34
Show Gist options
  • Save susimsek/a42842c1d9e3beb843072881d27884ba to your computer and use it in GitHub Desktop.
Save susimsek/a42842c1d9e3beb843072881d27884ba to your computer and use it in GitHub Desktop.
Product Microservice Query with Reviews
query ProductAndReviews($id: ID!) {
product(id: $id) {
id
name
description,
reviews {
id,
text,
starRating
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment