If you want to filter by a field, then you need to add @search directive on that field.
type person @withSubscription {
id: ID!
is_active: Boolean! @search
start_date: DateTime!
}
If you want to filter by a field, then you need to add @search directive on that field.
type person @withSubscription {
id: ID!
is_active: Boolean! @search
start_date: DateTime!
}