intuit / intuit/graphql-filter-java
Filtering for null values
Offen
- Vorherrschende Sprache
- Java
- Sterne
- 73
- Forks
- 33
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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?
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.