Multiple Tags as parameters for GraphQL persisted queries
Hello,
I would like to request data via GraphQL query based on a Tag multifield like this:

The parameters to return this data should be for example:
- ["wknd-shared:season/summer"]
- ["wknd-shared:season/summer", "wknd-shared:season/spring"]
I tried this query:
query ($adventureTags: [String]) {
adventureList(
filter: {
adventureTags: {_logOp: OR, _expressions: [{values: $adventureTags, _operator: EQUALS}]}
}) {
items {
_path
adventureTags
}
}
}It's only returning data if I add all parameters like this
- ["wknd-shared:season/summer", "wknd-shared:season/spring"]
but does not return anything for this
- ["wknd-shared:season/summer"]
Additionally I've tried to request the data with the persisted queries and the default cloud sdk dispatcher config like this:
But that does not return any data.
And if I run the query on author it works:
It seems almost like this use case is not supported and I could not find any info about this in the Adobe docs. Can somebody help me here or has done something similar?




