'How to filter by non-null values?

Is it possible in the Hasura web app, to filter by values which aren't null?

enter image description here



Solution 1:[1]

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
  }
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 kevin meyers