summaryrefslogtreecommitdiffstats
path: root/backend/src/schema.graphql
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-15 22:15:36 -0400
committerWes Bos <wesbos@gmail.com>2018-05-15 22:15:36 -0400
commit3f9b14e3c1d7f47d9b3e48b94b3b5bf2c722205e (patch)
tree63373ce8c75e51305b7899af6c53903ef6c4f179 /backend/src/schema.graphql
parentae1a94b08f5aba0c16c6536e388b4dd4a53120fd (diff)
migrate to cookies for jwt
Diffstat (limited to 'backend/src/schema.graphql')
-rw-r--r--backend/src/schema.graphql1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/src/schema.graphql b/backend/src/schema.graphql
index 5c77d56..14d4797 100644
--- a/backend/src/schema.graphql
+++ b/backend/src/schema.graphql
@@ -18,6 +18,7 @@ type Mutation {
removeFromCart(id: ID!): CartItem
createOrder(token: String!): Order!
updateUser(name: String): User
+ signout: User
updatePermissions(permissions: [Permission], userId: ID!): User
}