I'm trying to make a filter for react admin using ra-data-hasura as the dataProvider.
If I simply try and add {foreign_id: {_is_null: true}}
I get many errors as it resolves into { foreign_id: _eq: { {_is_null: true} } }
. Using {foreign_id: null}
also fails as that appears to be the default value.
What's the best way to get my List
to show only rows where a column is either NULL
or not null
?
I'm using Postgres as my database if that matters.