ENUM

OrganizationType

Type of work an organization does.

link GraphQL Schema definition

1enum OrganizationType {
2
3# Organization that developes games.
4GAME_DEVELOPER
5
6# Organization that publishes games.
7GAME_PUBLISHER
8
9# Organization that does other work.
10OTHER
11
12# Organization that works in brands/advertsing.
13BRANDS_ADVERTISING
14
15# Organization that works with broadcaster tools.
16BROADCASTER_TOOLS
17}