INTERFACE

DropType

An interface to handle shared Drop data. The Drop type is already in use (although deprecated) so we can't use that name.

link GraphQL Schema definition

1interface DropType {
2
3# The rewards for this drop and how often those rewards can be awarded.
4benefitEdges: [DropBenefitEdge!]
5
6# The campaign this drop belongs to.
7campaign: DropCampaign!
8
9# The time this drop becomes unavailable.
10endAt: Time!
11
12# A unique identifier.
13id: ID!
14
15# The name of this drop.
16name: String!
17
18# The time this drop becomes available.
19startAt: Time!
20
21}