This is my query:
query Characters ($id: ID!){
character (id: $id) {
name
age
alias
affiliates
abilities
description
image {
url
}
}
}
and in graphql this is my error where the results of the query should appear:
“error”: {
“errors”: [
{
“message”: “Variable “$id” of required type “ID!” was not provided.”,