I tried to change my goal in API explorer using my PH login, but I got error saying "SyntaxError: Unexpected token < in JSON at position 0"
```
mutation {
goalUpdate(input: {goalId: 12345, title: "test update"}) {
clientMutationId
}
}
```
@roy_shao can you try something like this, after logging in via product hunt in the explorer app
mutation($goalUpdateInput: GoalUpdateInput!) {
goalUpdate(input: $goalUpdateInput) {
node {
title
id
}
}
}
and inside query variables you can put the input values like
{
"goalUpdateInput": {
"goalId": goal_id,
"title": new_title_here
}
}