Filter nested fields
I use hasura dataprovider, and i wonder how to use nested filter in order to apply filter on nested field
My goal is to make the following graphql query (specially the user_activity_aggregate)
My goal is to make the following graphql query (specially the user_activity_aggregate)
query event {
event {
user_activity_aggregate(where: { type: {_in: ["participate", "interested"]}}) {
aggregate { count }
}
}
}