OBJECT

QuestGoalInt

Progress towards a particular quest goal.

link GraphQL Schema definition

1type QuestGoalInt {
2
3# Current progress towards quest goal.
4current: Int!
5
6# Number needed to complete the quest goal.
7goal: Int!
8
9}