Skip to content

Instantly share code, notes, and snippets.

@jbaxleyiii
Last active May 24, 2019 15:25
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 jbaxleyiii/affbb722dbf4a1e9ead4767359c61a25 to your computer and use it in GitHub Desktop.
Save jbaxleyiii/affbb722dbf4a1e9ead4767359c61a25 to your computer and use it in GitHub Desktop.
type Product @key(fields: "upc") @key(fields: "sku") {
upc: String!
sku: String!
}
type User @key(fields: "id organization { id }") {
id: ID!
organization: Organization!
}
type Organization {
id: ID!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment