webapp/src/graphql/mutation/community-update.ts

16 lines
263 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
mutation CommunityUpdateMutation($community: Community!) {
updateCommunity(community: $community) {
_id: slug
slug
desc
name
pic
createdAt
createdBy
}
}
`