moved user deletion into graph

This commit is contained in:
Wyatt Johnson
2018-03-12 15:39:50 -06:00
parent 2f5fc03e9c
commit f5fd162b37
5 changed files with 121 additions and 75 deletions
+9
View File
@@ -1426,6 +1426,12 @@ type ForceScrapeAssetResponse implements Response {
errors: [UserError!]
}
type DelUserResponse implements Response {
# An array of errors relating to the mutation that occurred.
errors: [UserError!]
}
# All mutations for the application are defined on this object.
type RootMutation {
@@ -1523,6 +1529,9 @@ type RootMutation {
# forceScrapeAsset will force scrape the Asset with the given ID.
forceScrapeAsset(id: ID!): ForceScrapeAssetResponse
# delUser will delete the user with the specified id.
delUser(id: ID!): DelUserResponse
}
type UsernameChangedPayload {