Bjoern
05/19/2019, 6:22 PMquery GET_MESSAGES($community: ID, $isGeneral: Boolean!) {
messages
(where: {community: {id: $community}}) @skip(if: $isGeneral)
{
text
id
}
unfiltered: messages @include(if: $isGeneral) {
id
text
}
}