mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
31 lines
479 B
JavaScript
31 lines
479 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const allCommunities = gql`
|
|
query {
|
|
allCommunities {
|
|
id
|
|
foreign
|
|
url
|
|
publicKey
|
|
communityUuid
|
|
authenticatedAt
|
|
name
|
|
description
|
|
gmsApiKey
|
|
creationDate
|
|
createdAt
|
|
updatedAt
|
|
federatedCommunities {
|
|
id
|
|
apiVersion
|
|
endPoint
|
|
lastAnnouncedAt
|
|
verifiedAt
|
|
lastErrorAt
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
}
|
|
`
|