mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const updateHomeCommunity = gql`
|
|
mutation ($uuid: String!, $gmsApiKey: String, $location: Location, $hieroTopicId: String) {
|
|
updateHomeCommunity(
|
|
uuid: $uuid
|
|
gmsApiKey: $gmsApiKey
|
|
location: $location
|
|
hieroTopicId: $hieroTopicId
|
|
) {
|
|
uuid
|
|
}
|
|
}
|
|
`
|