How do I get orb and ultimate info?
Article 2953445, Status: VALIDATED
Table of Contents
❓Issue/Question
- There is no Orb or Ultimate related information in Series Events.
- Where can I see if an ultimate is ready to be used?
- Where can I see how many charges there are for an ultimate?
- Where can I see how many orbs a player has?
💻Environment/Context
- Series Events, Series State
- Valorant
👌Resolution/Answer
You can get this information by querying Series State. It is available on GamePlayeStateValorant.
Example query:
query SeriesState {
seriesState(id: 6) {
games {
teams {
players {
... on GamePlayerStateValorant {
name
abilities {
name
ready
charges
}
}
}
}
}
}
}