Reputation: 18690
Is it possible in the Hasura web app, to filter by values which aren't null?
Upvotes: 5
Views: 893
Reputation: 21
Not sure about the explorer there, but you can do it easily in the API tabs Graphiql explorer:
query {
my_table(where: {trailer_id: {_is_null: false}}) {
fields_here
}
}
Upvotes: 2