Last active
May 28, 2018 17:42
-
-
Save maticzav/a0ff355ee2e0d80b76a200a0d04bc35f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# 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