Jim
05/08/2018, 6:29 AMtype User {
id: ID! @unique
groups: [Group!]!
}
type Group {
id: ID! @unique
name: String!
users: [User!]!
}
I can return the user object but all I actually need is the count. You could do this with Graphcool BaaS
groups {
name
category {
name
}
users {
id
}
}
}
WillB
05/08/2018, 11:23 PMJim
05/09/2018, 5:30 AM