I want to filter graphQL on two fields in Hasura. For example:
table (
where: { field1: {_gt: field2}}
) {
id
}
Is it possible?
I want to filter graphQL on two fields in Hasura. For example:
table (
where: { field1: {_gt: field2}}
) {
id
}
Is it possible?
No, you'll need to create a PG function that does this for you and query it via Hasura.