OBJECT

Organization

A developer organization.

link GraphQL Schema definition

1type Organization {
2
3# The bounty board campaigns that the company owns.
4bountyCampaigns(campaignID: ID, status: BountyCampaignStatus): BountyCampaignConnection
5
6# The brand portal settings for the company.
7brandPortalSettings: BrandPortalSettings
8
9# ID of the Company in the CurseForge Infrastructure.
10curseCompanyID: ID
11
12# Drop Campaigns developed by the organization.
13dropCampaigns: [DropCampaign!] @deprecated( reason: "Use Organization.drops instead" )
14
15# Drop 2.0 Campaigns and Benefits configured for the organization.
16drops: OrganizationDrops!
17
18# The estimated viewer reach for the pool of broadcasters this company is
19# considering targeting.
20estimatedBroadcasterViewerReach(
21gameNames: [String!]!,
22targetAllBroadcasters: Boolean!,
23targetVarietyBroadcasters: Boolean!,
24streamLengthSeconds: Int,
25targetAllCountries: Boolean,
26targetAllGames: Boolean,
27countries: [String!]
28): BroadcasterViewerReach
29
30# The games associated with the company. Optionally include games that a company
31# can use for Bounty Board
32# campaigns (ie. "Just Chatting" for trailer campaigns).
33games(includeBountyBoardGames: Boolean): [Game!]
34
35# The company's unique identifier.
36id: ID!
37
38# List of pending invites.
39invites(first: Int, after: Cursor): OrganizationInviteConnection
40
41# Legacy Companies need to agree to the Drops Terms.
42isCampaignsEnabled: Boolean!
43
44# Legacy Companies are required to sign the Contract.
45isContractSigned: Boolean!
46
47# Indicates if the Company is a Legacy Company from the first iteration of the
48# DevSite.
49isLegacy: Boolean!
50
51# A list of rbac users who are apart of an organization.
52members(first: Int, after: Cursor, input: OrganizationMembersInput): OrganizationMemberConnection
53
54# The human-readable name of the company.
55name: String!
56
57# Attributes related to the current user.
58self: OrganizationSelfEdge
59
60# Indicates if company is a developer, publisher or other.
61type: OrganizationType!
62
63# The Company URL for their Corporate Website.
64url: String!
65
66}