webapp/src/graphql/mutation/core/community-destroy.ts

10 lines
168 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
mutation CommunityDestroyMutation($slug: String!) {
2023-11-28 13:18:25 +00:00
delete_community(slug: $slug) {
2022-09-09 11:53:35 +00:00
error
}
}
`