10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
mutation CommunityDestroyMutation($slug: String!) {
|
||
|
deleteCommunity(slug: $slug) {
|
||
|
error
|
||
|
}
|
||
|
}
|
||
|
`
|