mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
247 B
JavaScript
18 lines
247 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const getCommunities = gql`
|
|
query {
|
|
getCommunities {
|
|
id
|
|
foreign
|
|
publicKey
|
|
url
|
|
lastAnnouncedAt
|
|
verifiedAt
|
|
lastErrorAt
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
`
|