summaryrefslogtreecommitdiffstats
path: root/backend/src/schema.graphql
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-09 13:31:39 -0500
committerWes Bos <wesbos@gmail.com>2018-02-09 13:31:39 -0500
commite0d0baa75ec0bf617f91b6cd779305d4009cae12 (patch)
tree00eb968f49c6586cbc4367053887d0c5e68471b2 /backend/src/schema.graphql
parent19c9683e2126c68cb9d231293162c756d69c51fb (diff)
🆒
Diffstat (limited to 'backend/src/schema.graphql')
-rw-r--r--backend/src/schema.graphql7
1 files changed, 5 insertions, 2 deletions
diff --git a/backend/src/schema.graphql b/backend/src/schema.graphql
index 8a2fa23..b30b096 100644
--- a/backend/src/schema.graphql
+++ b/backend/src/schema.graphql
@@ -1,4 +1,4 @@
-# import ItemWhereInput, ItemOrderByInput, allItems, Post, Item, ItemCreateInput, ItemOrderByInput, ItemWhereInput from './generated/prisma.graphql'
+# import CartItem, ItemWhereInput, ItemOrderByInput, allItems, Post, Item, ItemCreateInput, ItemOrderByInput, ItemWhereInput from './generated/prisma.graphql'
type Query {
feed: [Post!]!
@@ -28,6 +28,7 @@ type Mutation {
signup(email: String!, password: String!, name: String!): AuthPayload!
signin(email: String!, password: String!): AuthPayload!
requestReset(email: String!): User
+ resetPassword(resetToken: String!, password: String!, confirmPassword: String!): AuthPayload!
createDraft(title: String!, text: String!): Post!
publish(id: ID!): Post!
deletePost(id: ID!): Post!
@@ -35,6 +36,8 @@ type Mutation {
createItem(title: String, description: String, price: Int): Item!
deleteItem(id: ID!): Item!
updateItem(id: ID!, title: String, description: String, price: Int): Item!
+ addToCart(id: ID!): CartItem
+ removeFromCart(id: ID!): CartItem
}
type AuthPayload {
@@ -49,5 +52,5 @@ type User {
name: String!
posts: [Post!]!
age: Int
- resetToken: String
+ cart: [CartItem!]!
}