GraphQL Persisted Query with Path Parameter on Dispatcher
We have following persisted query:
The GraphQL query has the parameter "startsWith" which takes a path like this:
query getArticlesByPath($startsWith: ID!) {
articleCfmList(filter: {
_path: {
_expressions: [
{
value: $startsWith
_operator: STARTS_WITH
}]
}
}) {
items {
...
It works perfectly fine on author and publisher but when sending the same request to the dispatcher it will not send the request correctly to the publisher because the encoded path is not correctly transmitted.
We have tried it with directive
AllowEncodedSlashes NoDecode
but it didn't help. What is the correct dispatcher setting for these kind of parameters?

