summaryrefslogtreecommitdiffstats
path: root/backend/src
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/src
parentfa16c52917305e21823294e3a4e384bfeae50da0 (diff)
ya
Diffstat (limited to 'backend/src')
-rw-r--r--backend/src/generated/prisma.graphql6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/src/generated/prisma.graphql b/backend/src/generated/prisma.graphql
index d910a39..2ceacae 100644
--- a/backend/src/generated/prisma.graphql
+++ b/backend/src/generated/prisma.graphql
@@ -8,7 +8,7 @@
type CartItem implements Node {
id: ID!
quantity: Int!
- item(where: ItemWhereInput): Item!
+ item(where: ItemWhereInput): Item
user(where: UserWhereInput): User!
createdAt: DateTime!
updatedAt: DateTime!
@@ -116,7 +116,7 @@ type CartItemConnection {
input CartItemCreateInput {
quantity: Int
- item: ItemCreateOneInput!
+ item: ItemCreateOneInput
user: UserCreateOneWithoutCartInput!
}
@@ -127,7 +127,7 @@ input CartItemCreateManyWithoutUserInput {
input CartItemCreateWithoutUserInput {
quantity: Int
- item: ItemCreateOneInput!
+ item: ItemCreateOneInput
}
type CartItemEdge {