OBJECT

OrganizationDrops

OrganizationDrop links organizations to the campaigns it has configured and the benefits that it has created.

link GraphQL Schema definition

1type OrganizationDrops {
2
3# The benefits created for this organization that can be added to the
4# organization's drops.
5benefits: [DropBenefit!]
6
7# The campaigns configued for this organizaiton.
8campaigns: [DropCampaign!]
9
10}