martinweiler commented on code in PR #2328:
URL:
https://github.com/apache/incubator-kie-kogito-apps/pull/2328#discussion_r3364348900
##########
data-index/data-index-graphql/src/main/resources/graphql/basic.schema.graphqls:
##########
@@ -252,6 +252,28 @@ input NodeInstanceArgument {
slaDueDate: DateArgument
}
+input NodeInstanceArrayArgument {
+ # Array-specific operations
+ contains: NodeInstanceArgument
+ containsAll: [NodeInstanceArgument!]
+ containsAny: [NodeInstanceArgument!]
+ isNull: Boolean
+ and: [NodeInstanceArrayArgument!]
+ or: [NodeInstanceArrayArgument!]
+ not: NodeInstanceArrayArgument
+ # Backward compatibility:
Review Comment:
@jstastny-cz as @GopikaReghunath showed in the example, the fallback to
`containsAny` is how such queries were handled prior to this PR. The new
operators give you more control, but I wouldn't say they are "forcing" you into
anything.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]