OBJECT
Company
A company that is on Twitch.
link GraphQL Schema definition
1 type Company { 2 3 # The bounty board campaigns that the company owns. 4 (: ID, : BountyCampaignStatus): BountyCampaignConnection 5 6 # The brand portal settings for the company. 7 : BrandPortalSettings 8 9 # ID of the Company in the CurseForge Infrastructure. 10 : ID 11 12 # The estimated viewer reach for the pool of broadcasters this company is 13 # considering targeting. 14 ( 15 : [String!]!, 16 : Boolean!, 17 : Boolean!, 18 : Int, 19 : Boolean, 20 : Boolean, 21 : [String!] 22 ): BroadcasterViewerReach 23 24 # The games associated with the company. Optionally include games that a company 25 # can use for Bounty Board 26 # campaigns (ie. "Just Chatting" for trailer campaigns). 27 (: Boolean): [Game!] 28 29 # The company's unique identifier. 30 : ID! 31 32 # Legacy Companies need to agree to the Drops Terms. 33 : Boolean! 34 35 # Legacy Companies are required to sign the Contract. 36 : Boolean! 37 38 # Indicates if the Company is a Legacy Company from the first iteration of the 39 # DevSite. 40 : Boolean! 41 42 # The human-readable name of the company. 43 : String! 44 45 # Indicates if company is a developer, publisher or other. 46 : OrganizationType! 47 48 # The Company URL for their Corporate Website. 49 : String! 50 51 }