16 lines
263 B
TypeScript
16 lines
263 B
TypeScript
|
import { gql } from '@urql/core'
|
||
|
|
||
|
export default gql`
|
||
|
mutation CommunityUpdateMutation($community: Community!) {
|
||
|
updateCommunity(community: $community) {
|
||
|
_id: slug
|
||
|
slug
|
||
|
desc
|
||
|
name
|
||
|
pic
|
||
|
createdAt
|
||
|
createdBy
|
||
|
}
|
||
|
}
|
||
|
`
|