INTERFACE

HypeTrainReward

The hype train reward interface, which has to implement an identifier and the hype train reward type.

link GraphQL Schema definition

1interface HypeTrainReward {
2
3# The identifier of the reward.
4id: ID!
5
6# The type of reward that is entitled.
7type: HypeTrainRewardType!
8
9}