Skip to content

Instantly share code, notes, and snippets.

@maticzav
Last active May 28, 2018 17:42
Show Gist options
  • Save maticzav/a0ff355ee2e0d80b76a200a0d04bc35f to your computer and use it in GitHub Desktop.
Save maticzav/a0ff355ee2e0d80b76a200a0d04bc35f to your computer and use it in GitHub Desktop.
# database/datamodel.graphql
type Grocer {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
email: String! @unique
}
type Customer {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
email: String! @unique
basket: [BasketItem!]!
}
type BasketItem {
id: ID! @unique
product: Product!
quantity: Int!
}
type Product {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
name: String!
description: String!
price: Int!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment