'How to filter by non-null values?
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 |

