I have a GraphQL query that requires an input variable as follows:
query GetTagsByFamily($tagsByFamilyInput: tagsByFamilyInput!){
tags(tagsByFamilyInput: $tagsByFamilyInput) {
id
slug
status
}
}
The definition of the tagsByFamilyInput variable is as follows:
"tagsByFamilyInput": {
"id": String!,
"slug": String!
}
I'm trying to work out how I can pass these variables. In the Variables panel, I don't have the option of creating an object inside the variable. So is there a way to do this?
