mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
31 lines
509 B
TypeScript
31 lines
509 B
TypeScript
import { gql } from 'graphql-tag'
|
|
|
|
export const DeleteUser = gql`
|
|
mutation ($id: ID!, $resource: [Deletable]) {
|
|
DeleteUser(id: $id, resource: $resource) {
|
|
id
|
|
name
|
|
about
|
|
deleted
|
|
contributions {
|
|
id
|
|
content
|
|
contentExcerpt
|
|
deleted
|
|
comments {
|
|
id
|
|
content
|
|
contentExcerpt
|
|
deleted
|
|
}
|
|
}
|
|
comments {
|
|
id
|
|
content
|
|
contentExcerpt
|
|
deleted
|
|
}
|
|
}
|
|
}
|
|
`
|