Hi guys, I’m having trouble trying to retrieve the data of classic characters when using the name, serverSlug and serverRegion parameters. For example, executing the query below:
query GetCharacterRankings {
characterData {
character(name: "Akimbro", serverSlug: "faerlina", serverRegion: "us") {
name
zoneRankings
}
}
}
I get this response
{
"data": {
"characterData": {
"character": null
}
}
}
When passing a retail character the request also works. The only way I manage to get this working in classic is using the character id.
Is there anything that I’m missing?