mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-03 08:05:33 +00:00
36 lines
495 B
GraphQL
36 lines
495 B
GraphQL
query Group($isMember: Boolean, $id: ID, $slug: String) {
|
|
Group(isMember: $isMember, id: $id, slug: $slug) {
|
|
id
|
|
name
|
|
slug
|
|
createdAt
|
|
updatedAt
|
|
disabled
|
|
deleted
|
|
about
|
|
description
|
|
descriptionExcerpt
|
|
groupType
|
|
actionRadius
|
|
categories {
|
|
id
|
|
slug
|
|
name
|
|
icon
|
|
}
|
|
avatar {
|
|
url
|
|
}
|
|
locationName
|
|
location {
|
|
id
|
|
name
|
|
}
|
|
myRole
|
|
inviteCodes {
|
|
code
|
|
redeemedByCount
|
|
}
|
|
}
|
|
}
|