summaryrefslogtreecommitdiffstats
path: root/backend/database/datamodel.graphql
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-03-23 11:11:09 -0400
committerWes Bos <wesbos@gmail.com>2018-03-23 11:11:09 -0400
commit4fb8969f6994d8414f388f583d8e270d4e4a67e9 (patch)
treedad4cd0eeda0fdc71e4f925c263668763f2e4dff /backend/database/datamodel.graphql
parentfa16c52917305e21823294e3a4e384bfeae50da0 (diff)
ya
Diffstat (limited to 'backend/database/datamodel.graphql')
-rw-r--r--backend/database/datamodel.graphql2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/database/datamodel.graphql b/backend/database/datamodel.graphql
index b35f423..f31a089 100644
--- a/backend/database/datamodel.graphql
+++ b/backend/database/datamodel.graphql
@@ -27,7 +27,7 @@ type User {
type CartItem {
id: ID! @unique
quantity: Int! @default(value: 1)
- item: Item! # Relationship to an Item
+ item: Item # Relationship to an Item
user: User! # Relationship to a user
createdAt: DateTime!
updatedAt: DateTime!