You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
Hello,
I am trying to write a GraphQL filter to filter for nulls.
But when I'm generating the filter expression, the SQL expression looks like
"WHERE bookingId = 'null'"
instead ofbookingId = null
without the single quotes.Can this be fixed or can you point to where the toString is coming from?
The text was updated successfully, but these errors were encountered: