webapp/src/graphql/mutation/core/community-destroy.ts
2023-11-28 16:18:25 +03:00

10 lines
168 B
TypeScript

import { gql } from '@urql/core'
export default gql`
mutation CommunityDestroyMutation($slug: String!) {
delete_community(slug: $slug) {
error
}
}
`