Hello,
I found a bug in the GraphQuery API. When using it as below to retrieve multiple content relationships I'm getting the error an invalid api response was returned
. This doesn't happen when I replace ...secondFields
with the name of the first field of the document. It does happen when I also add the name of the second field. The first content relationship is working without any issues. When adding the second one as described I'm getting the error.
Is this a known issue? I would be very happy if this can be solved.
Kind regards,
Sian
...
...on slice name {
variation {
...on default {
primary {
...primaryFields
}
items {
...itemsFields
}
}
...on variationName {
primary {
...primaryFields
first {
...firstFields
}
second {
...secondFields
}
}
items {
...itemsFields
}
}
}
}
...