How to create persist url graphql with variable array of object
Hello i have query variable like this

{
"tagFilter": [
{
"value": "ctf:ring"
}
]
}
and i want to copy url /graphql/execute.json/testingtemplate/collections;tagFilter=[{value: ctf:ring}]
and this encode
graphql/execute.json/testingtemplate/collections%3BtagFilter=[%7Bvalue:%20ctf:ring%7D]
and i get error this. how to create url if variable array of object?




