mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-31 22:55:35 +00:00
31 lines
476 B
JavaScript
31 lines
476 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const allCommunities = gql`
|
|
query {
|
|
allCommunities {
|
|
foreign
|
|
url
|
|
publicKey
|
|
uuid
|
|
authenticatedAt
|
|
name
|
|
description
|
|
gmsApiKey
|
|
location
|
|
creationDate
|
|
createdAt
|
|
updatedAt
|
|
federatedCommunities {
|
|
id
|
|
apiVersion
|
|
endPoint
|
|
lastAnnouncedAt
|
|
verifiedAt
|
|
lastErrorAt
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
}
|
|
`
|