I setup a really simple schema, one object with like 7 fields.
I’m trying to query against a boolean field, but it keeps complaining the field isn’t in the filter. I can see the filter if I view via GraphQL Playground, but no where do I see where I can edit the filter.
I’m basically just trying to return results that have a field set to true. I’ve looked at dozen graphql and dgraph tutorials, and nothing works as shown in examples. Trying to use api explorer is really frustrating, as you can’t toggle between query/mutation/subscription without trying to add one, and no where do I see where to edit all the hidden stuff like filters.
Example schema
type person @withSubscription {
id: ID!
is_active: Boolean!
start_date: DateTime!
}
I’m trying to return all entries that have is_active == true.
When I do the obvious options, I get a message is_active is not in personfilter.