intuit / intuit/graphql-filter-java
Filtering for null values
Aperta
- Lingua principale
- Java
- Stelle
- 73
- Fork
- 33
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Hello,
I am trying to write a GraphQL filter to filter for nulls.
```
{
events(
filter: {
bookingId: { eq: null }
}
) {
id
booking {
id
}
}
}
```
But when I'm generating the filter expression, the SQL expression looks like `"WHERE bookingId = 'null'"` instead of `bookingId = null` without the single quotes.
Can this be fixed or can you point to where the toString is coming from?
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.