Need help declaring a GraphQL variable

Any news? Same problem

Hi Alex,

It seems you have to declare variable on the first line.
With that I get the Variables populated:

mutation updateIntermediaryBank($bank_id: String) {
  updateIntermediaryBank(input: {
      id: $bank_id
      bannedUsers:["859aec09-55ec-484b-a13f-dc108a7d6280"]
    }) {
    bankName
    bannedUsers
  }
}

I hope it can help!

Yes! It's working, thx!