Filtering
query {
communities (where: {name: {eq: "Business Analysts Community"}}) {
id
name
}
}query {
communities(
where: {
createdBy: { firstName: { eq: "Admin" }, lastName: { eq: "Istrator" } }
}
) {
id
name
}
}Last updated
Was this helpful?