mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
20 lines
305 B
TypeScript
20 lines
305 B
TypeScript
import { gql } from 'apollo-boost'
|
|
|
|
export interface AdminUserDeleteMutationData {
|
|
form: {
|
|
id
|
|
}
|
|
}
|
|
|
|
export interface AdminUserDeleteMutationVariables {
|
|
id: string
|
|
}
|
|
|
|
export const ADMIN_USER_DELETE_MUTATION = gql`
|
|
mutation delete($id: ID!) {
|
|
form: deleteUser(id: $id) {
|
|
id
|
|
}
|
|
}
|
|
`
|