From 261edef72bb6bdd002e4f6d78d8398b4cbeb4c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Fri, 8 Mar 2019 20:55:46 +0100 Subject: [PATCH] Remove duplicate mutations --- src/schema.graphql | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/schema.graphql b/src/schema.graphql index 16db72819..5d641c0b8 100644 --- a/src/schema.graphql +++ b/src/schema.graphql @@ -12,7 +12,6 @@ type Mutation { report(id: ID!, description: String): Report disable(id: ID!): ID! enable(id: ID!): ID! - report(resource: Resource!, description: String): Report "Shout the given Type and ID" shout(id: ID!, type: ShoutTypeEnum): Boolean! @cypher(statement: """ MATCH (n {id: $id})<-[:WROTE]-(wu:User), (u:User {id: $cypherParams.currentUserId}) @@ -42,8 +41,6 @@ type Mutation { DELETE r RETURN COUNT(r) > 0 """) - disable(resource: Resource!): Boolean! - enable(resource: Resource!): Boolean! } type Statistics {