You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Variable interpolation in the GraphQL queries is raising errors "String cannot represent a non string value".
But it works if I copy the same content (including the variable interpolation) in a temporary state, and put it in the graphql query.
This doesn't work
This works
Expected Behavior
GraphQL query to work with variable interpolations
body:
{
countries(filter: {continent: {eq: "{{continentCode.value}}"}}) {
code
name
capital
}
}
4) result
error "String cannot represent a non string value"