Which while it doesn’t throw a error for invalid query syntax and breaking schema, it does not produce any results either.
The only way I can do it I can think of is to have two separate queries like:
{
queryUser @recurse {
username
firstName
}
}
Then with list of usernames as a variable do a filter with not. The problem then becomes that I cannot give an array to search in like I can if the id is a true id.
This leads to a use case for:
The need to filter for null
The need to filter for in Array with String and enum types.
Maybe the second thought would be a different topic, but I feel like I already made too many topics lol.
Another use case to make it simpler would be having a predicate userRole that points to an enum and I want to do a SQL like IN(...) operation. Yes I could do it long route with
Yeah, I see what you mean now. Yes you can do those kinds of enum queries at the moment, but that in syntax looks really nice. I guess it could be added every time that eq gets added.