@well-played.gg/react-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +57 -0
- package/dist/index.d.ts +553 -0
- package/dist/wp-react-sdk.cjs.js +479 -0
- package/dist/wp-react-sdk.es.js +42904 -0
- package/dist/wp-react-sdk.umd.js +479 -0
- package/package.json +54 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
import { ApolloError } from '@apollo/client';
|
|
2
|
+
import { ApolloQueryResult } from '@apollo/client';
|
|
3
|
+
import { ErrorResponse } from '@apollo/client/link/error';
|
|
4
|
+
import { EventClosedListener } from 'graphql-ws';
|
|
5
|
+
import { EventConnectedListener } from 'graphql-ws';
|
|
6
|
+
import { EventErrorListener } from 'graphql-ws';
|
|
7
|
+
import { FragmentOf } from 'gql.tada';
|
|
8
|
+
import { initGraphQLTada } from 'gql.tada';
|
|
9
|
+
import { InvalidationPolicies } from '@nerdwallet/apollo-cache-policies/dist/policies/types';
|
|
10
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
11
|
+
import { LazyQueryHookOptions } from '@apollo/client/react/types/types';
|
|
12
|
+
import { NoInfer as NoInfer_2 } from '@apollo/client/react/types/types';
|
|
13
|
+
import { OidcConfiguration } from '@axa-fr/oidc-client';
|
|
14
|
+
import { OidcProviderProps } from '@axa-fr/react-oidc';
|
|
15
|
+
import { PropsWithChildren } from 'react';
|
|
16
|
+
import { readFragment } from 'gql.tada';
|
|
17
|
+
import { ResultOf } from 'gql.tada';
|
|
18
|
+
import { TadaDocumentNode } from 'gql.tada';
|
|
19
|
+
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
20
|
+
import { VariablesOf } from 'gql.tada';
|
|
21
|
+
|
|
22
|
+
declare type BaseGame = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0]["rounds"][0]["games"][0];
|
|
23
|
+
|
|
24
|
+
declare type BaseGroup = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0];
|
|
25
|
+
|
|
26
|
+
declare type BaseMatch = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0]["rounds"][0]["games"][0]["matches"][0];
|
|
27
|
+
|
|
28
|
+
declare type BaseRound = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0]["rounds"][0];
|
|
29
|
+
|
|
30
|
+
declare type ClientProps = {
|
|
31
|
+
token?: string;
|
|
32
|
+
organizationId: string;
|
|
33
|
+
invalidationPolicies?: InvalidationPolicies;
|
|
34
|
+
handlers?: {
|
|
35
|
+
onError?: (error: Omit<ErrorResponse, "operation" | "forward" | "response">) => void;
|
|
36
|
+
webSocket?: {
|
|
37
|
+
onConnected?: EventConnectedListener;
|
|
38
|
+
onClosed?: EventClosedListener;
|
|
39
|
+
onError?: EventErrorListener;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export { FragmentOf }
|
|
45
|
+
|
|
46
|
+
declare type GameWithMatches = Omit<BaseGame, "matches"> & {
|
|
47
|
+
matches: MatchWithTeams[];
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export declare const graphql: initGraphQLTada<{
|
|
51
|
+
introspection: introspection;
|
|
52
|
+
scalars: {
|
|
53
|
+
ID: string;
|
|
54
|
+
DateTime: string;
|
|
55
|
+
};
|
|
56
|
+
}>;
|
|
57
|
+
|
|
58
|
+
declare type Group = Omit<BaseGroup, "rounds"> & {
|
|
59
|
+
rounds: RoundWithGames[];
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
/** An IntrospectionQuery representation of your schema.
|
|
63
|
+
*
|
|
64
|
+
* @remarks
|
|
65
|
+
* This is an introspection of your schema saved as a file by GraphQLSP.
|
|
66
|
+
* It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
|
|
67
|
+
* If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
|
|
68
|
+
* instead save to a .ts instead of a .d.ts file.
|
|
69
|
+
*/
|
|
70
|
+
export declare type introspection = {
|
|
71
|
+
name: never;
|
|
72
|
+
query: 'Query';
|
|
73
|
+
mutation: 'Mutation';
|
|
74
|
+
subscription: never;
|
|
75
|
+
types: introspection_types;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export declare type introspection_types = {
|
|
79
|
+
'Account': { kind: 'OBJECT'; name: 'Account'; fields: { 'email': { name: 'email'; type: { kind: 'SCALAR'; name: 'EmailAddress'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'identities': { name: 'identities'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountIdentity'; ofType: null; }; }; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupPermission'; ofType: null; }; }; }; } }; 'profiles': { name: 'profiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; }; }; } }; }; };
|
|
80
|
+
'AccountIdentity': { kind: 'OBJECT'; name: 'AccountIdentity'; fields: { 'accountId': { name: 'accountId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'organizationIdentityProvider': { name: 'organizationIdentityProvider'; type: { kind: 'OBJECT'; name: 'PublicOrganizationIdentityProvider'; ofType: null; } }; 'organizationIdentityProviderId': { name: 'organizationIdentityProviderId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'properties': { name: 'properties'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountIdentityProperty'; ofType: null; }; }; }; } }; 'providerId': { name: 'providerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
81
|
+
'AccountIdentityProperty': { kind: 'OBJECT'; name: 'AccountIdentityProperty'; fields: { 'property': { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
82
|
+
'AggregationType': { name: 'AggregationType'; enumValues: 'AVG' | 'MAX' | 'MIN' | 'SUM'; };
|
|
83
|
+
'AutomaticSeedingInput': { kind: 'INPUT_OBJECT'; name: 'AutomaticSeedingInput'; isOneOf: false; inputFields: [{ name: 'groupRepartitionMechanism'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'GroupRepartitionMechanism'; ofType: null; }; }; defaultValue: null }, { name: 'seedingMechanism'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SeedingMechanism'; ofType: null; }; }; defaultValue: null }, { name: 'teams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
84
|
+
'Boolean': unknown;
|
|
85
|
+
'BucketDuration': { name: 'BucketDuration'; enumValues: 'DAILY' | 'HOUR' | 'MINUTE' | 'MONTHLY' | 'YEARLY'; };
|
|
86
|
+
'Condition': { kind: 'OBJECT'; name: 'Condition'; fields: { 'numericCondition': { name: 'numericCondition'; type: { kind: 'OBJECT'; name: 'NumericCondition'; ofType: null; } }; 'property': { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'propertyCondition': { name: 'propertyCondition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyCondition'; ofType: null; }; } }; 'stringCondition': { name: 'stringCondition'; type: { kind: 'OBJECT'; name: 'StringCondition'; ofType: null; } }; }; };
|
|
87
|
+
'ConditionInput': { kind: 'INPUT_OBJECT'; name: 'ConditionInput'; isOneOf: false; inputFields: [{ name: 'numericCondition'; type: { kind: 'INPUT_OBJECT'; name: 'NumberConditionInput'; ofType: null; }; defaultValue: null }, { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'propertyCondition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyCondition'; ofType: null; }; }; defaultValue: null }, { name: 'stringCondition'; type: { kind: 'INPUT_OBJECT'; name: 'StringConditionInput'; ofType: null; }; defaultValue: null }]; };
|
|
88
|
+
'Configuration': { kind: 'OBJECT'; name: 'Configuration'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ConfigurationProperties'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'createdById': { name: 'createdById'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
89
|
+
'ConfigurationProperties': { kind: 'UNION'; name: 'ConfigurationProperties'; fields: {}; possibleTypes: 'StepConfiguration' | 'TournamentConfiguration'; };
|
|
90
|
+
'ConfigurationType': { name: 'ConfigurationType'; enumValues: 'STEP' | 'TOURNAMENT'; };
|
|
91
|
+
'CreateConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'CreateConfigurationInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSONObject'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
92
|
+
'CreateLeaderboardInput': { kind: 'INPUT_OBJECT'; name: 'CreateLeaderboardInput'; isOneOf: false; inputFields: [{ name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
93
|
+
'CreateLeaderboardSeasonBucketInput': { kind: 'INPUT_OBJECT'; name: 'CreateLeaderboardSeasonBucketInput'; isOneOf: false; inputFields: [{ name: 'minScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'scoreCalculationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'LeaderboardScoreCalculationType'; ofType: null; }; }; defaultValue: null }]; };
|
|
94
|
+
'CreateLeaderboardSeasonInput': { kind: 'INPUT_OBJECT'; name: 'CreateLeaderboardSeasonInput'; isOneOf: false; inputFields: [{ name: 'end'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'start'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; }; defaultValue: null }, { name: 'startingScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
95
|
+
'CreateOrganizationAppInput': { kind: 'INPUT_OBJECT'; name: 'CreateOrganizationAppInput'; isOneOf: false; inputFields: [{ name: 'consentUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'loginUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'logoutRedirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'redirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'requiresConsent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'secret'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
96
|
+
'CreateOrganizationGroupInput': { kind: 'INPUT_OBJECT'; name: 'CreateOrganizationGroupInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupPermissionInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
97
|
+
'CreateOrganizationIdentityProvider': { kind: 'INPUT_OBJECT'; name: 'CreateOrganizationIdentityProvider'; isOneOf: false; inputFields: [{ name: 'allowLogin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'icon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'identityProviderId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'oauth2Configuration'; type: { kind: 'INPUT_OBJECT'; name: 'OAuthClientConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'openidConfiguration'; type: { kind: 'INPUT_OBJECT'; name: 'OpenidConfigurationInput'; ofType: null; }; defaultValue: null }]; };
|
|
98
|
+
'CreateOrganizationInput': { kind: 'INPUT_OBJECT'; name: 'CreateOrganizationInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OrganizationConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
99
|
+
'CreatePlatformInput': { kind: 'INPUT_OBJECT'; name: 'CreatePlatformInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'subdomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
100
|
+
'CreatePlayerInput': { kind: 'INPUT_OBJECT'; name: 'CreatePlayerInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PlayerCustomFieldInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'organizationCustomId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'profilePicUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'username'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
101
|
+
'CreateTournamentInput': { kind: 'INPUT_OBJECT'; name: 'CreateTournamentInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentConfigurationOrImportFromIdInput'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'startAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'startRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }]; };
|
|
102
|
+
'CreateTournamentStepInput': { kind: 'INPUT_OBJECT'; name: 'CreateTournamentStepInput'; isOneOf: false; inputFields: [{ name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'properties'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StepType'; ofType: null; }; }; defaultValue: null }]; };
|
|
103
|
+
'CreateWebhookInput': { kind: 'INPUT_OBJECT'; name: 'CreateWebhookInput'; isOneOf: false; inputFields: [{ name: 'active'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'WebhookEventType'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
104
|
+
'CustomDomainData': { kind: 'OBJECT'; name: 'CustomDomainData'; fields: { 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownershipVerification': { name: 'ownershipVerification'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainOwnershipVerification'; ofType: null; }; } }; 'ssl': { name: 'ssl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainSsl'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'CustomDomainStatus'; ofType: null; }; } }; 'verificationErrors': { name: 'verificationErrors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; } }; }; };
|
|
105
|
+
'CustomDomainOwnershipVerification': { kind: 'OBJECT'; name: 'CustomDomainOwnershipVerification'; fields: { 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
106
|
+
'CustomDomainSsl': { kind: 'OBJECT'; name: 'CustomDomainSsl'; fields: { 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'CustomDomainValidationStatus'; ofType: null; }; } }; 'validationErrors': { name: 'validationErrors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainSslValidationError'; ofType: null; }; }; } }; 'validationRecords': { name: 'validationRecords'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainSslValidationRecord'; ofType: null; }; }; }; } }; }; };
|
|
107
|
+
'CustomDomainSslValidationError': { kind: 'OBJECT'; name: 'CustomDomainSslValidationError'; fields: { 'message': { name: 'message'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; }; };
|
|
108
|
+
'CustomDomainSslValidationRecord': { kind: 'OBJECT'; name: 'CustomDomainSslValidationRecord'; fields: { 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
109
|
+
'CustomDomainStatus': { name: 'CustomDomainStatus'; enumValues: 'active' | 'active_redeploying' | 'blocked' | 'deleted' | 'moved' | 'pending' | 'pending_blocked' | 'pending_deletion' | 'pending_migration' | 'pending_provisioned' | 'provisioned' | 'test_active' | 'test_active_apex' | 'test_blocked' | 'test_failed' | 'test_pending'; };
|
|
110
|
+
'CustomDomainValidationStatus': { name: 'CustomDomainValidationStatus'; enumValues: 'active' | 'backup_issued' | 'deactivating' | 'deleted' | 'deletion_timed_out' | 'deployment_timed_out' | 'expired' | 'holding_deployment' | 'inactive' | 'initializing' | 'initializing_timed_out' | 'issuance_timed_out' | 'pending_cleanup' | 'pending_deletion' | 'pending_deployment' | 'pending_expiration' | 'pending_issuance' | 'pending_validation' | 'staging_active' | 'staging_deployment' | 'validation_timed_out'; };
|
|
111
|
+
'CustomTeamMemberInput': { kind: 'INPUT_OBJECT'; name: 'CustomTeamMemberInput'; isOneOf: false; inputFields: [{ name: 'player'; type: { kind: 'INPUT_OBJECT'; name: 'CreatePlayerInput'; ofType: null; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
112
|
+
'DataRetrievalConfig': { kind: 'OBJECT'; name: 'DataRetrievalConfig'; fields: { 'headers': { name: 'headers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Header'; ofType: null; }; }; }; } }; 'mappingConfiguration': { name: 'mappingConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MappingConfiguration'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
113
|
+
'DataRetrievalConfigInput': { kind: 'INPUT_OBJECT'; name: 'DataRetrievalConfigInput'; isOneOf: false; inputFields: [{ name: 'headers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HeaderInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'mappingConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MappingConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
114
|
+
'DateTime': unknown;
|
|
115
|
+
'DeleteOrganizationAttachedAppInput': { kind: 'INPUT_OBJECT'; name: 'DeleteOrganizationAttachedAppInput'; isOneOf: false; inputFields: [{ name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
116
|
+
'DeleteOrganizationMembershipInput': { kind: 'INPUT_OBJECT'; name: 'DeleteOrganizationMembershipInput'; isOneOf: false; inputFields: [{ name: 'userId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
117
|
+
'EmailAddress': unknown;
|
|
118
|
+
'Float': unknown;
|
|
119
|
+
'GameConfiguration': { kind: 'OBJECT'; name: 'GameConfiguration'; fields: { 'matchConfiguration': { name: 'matchConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MatchConfiguration'; ofType: null; }; } }; 'teamsCount': { name: 'teamsCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'useMatchScoresAsGameScore': { name: 'useMatchScoresAsGameScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'wonMatchCountToWinGame': { name: 'wonMatchCountToWinGame'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
120
|
+
'GameConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'GameConfigurationInput'; isOneOf: false; inputFields: [{ name: 'matchConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MatchConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'teamsCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'useMatchScoresAsGameScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'wonMatchCountToWinGame'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
121
|
+
'GroupConfiguration': { kind: 'OBJECT'; name: 'GroupConfiguration'; fields: { 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'rounds': { name: 'rounds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RoundConfiguration'; ofType: null; }; }; }; } }; }; };
|
|
122
|
+
'GroupConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'GroupConfigurationInput'; isOneOf: false; inputFields: [{ name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'rounds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'RoundConfigurationInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
123
|
+
'GroupPermission': { kind: 'OBJECT'; name: 'GroupPermission'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; }; };
|
|
124
|
+
'GroupPermissionInput': { kind: 'INPUT_OBJECT'; name: 'GroupPermissionInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
125
|
+
'GroupRepartitionMechanism': { name: 'GroupRepartitionMechanism'; enumValues: 'BALANCED' | 'SEED_OPTIMIZED'; };
|
|
126
|
+
'Header': { kind: 'OBJECT'; name: 'Header'; fields: { 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
127
|
+
'HeaderInput': { kind: 'INPUT_OBJECT'; name: 'HeaderInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
128
|
+
'ID': unknown;
|
|
129
|
+
'IdentityProviderAvailability': { name: 'IdentityProviderAvailability'; enumValues: 'PREVIEW' | 'PRIVATE' | 'PUBLIC'; };
|
|
130
|
+
'IdentityProviderConfigurations': { kind: 'UNION'; name: 'IdentityProviderConfigurations'; fields: {}; possibleTypes: 'OAuthClientConfiguration' | 'OpenidConfiguration'; };
|
|
131
|
+
'IdentityProviderPropertyInput': { kind: 'INPUT_OBJECT'; name: 'IdentityProviderPropertyInput'; isOneOf: false; inputFields: [{ name: 'identityProviderId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
132
|
+
'IdentityProviderRequirements': { kind: 'OBJECT'; name: 'IdentityProviderRequirements'; fields: { 'requiredFields': { name: 'requiredFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; }; };
|
|
133
|
+
'IdentityProviderType': { name: 'IdentityProviderType'; enumValues: 'OAUTH2' | 'OPENID'; };
|
|
134
|
+
'Int': unknown;
|
|
135
|
+
'JSONObject': unknown;
|
|
136
|
+
'KeyMapping': { kind: 'OBJECT'; name: 'KeyMapping'; fields: { 'mappedTo': { name: 'mappedTo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'path': { name: 'path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'private': { name: 'private'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
|
|
137
|
+
'KeyMappingInput': { kind: 'INPUT_OBJECT'; name: 'KeyMappingInput'; isOneOf: false; inputFields: [{ name: 'mappedTo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'private'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
138
|
+
'Leaderboard': { kind: 'OBJECT'; name: 'Leaderboard'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'ownerId': { name: 'ownerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'seasons': { name: 'seasons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasons'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
139
|
+
'LeaderboardEdge': { kind: 'OBJECT'; name: 'LeaderboardEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboard'; ofType: null; }; }; }; } }; }; };
|
|
140
|
+
'LeaderboardGetPlayerRankingInput': { kind: 'INPUT_OBJECT'; name: 'LeaderboardGetPlayerRankingInput'; isOneOf: false; inputFields: [{ name: 'leaderboardId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'seasonId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
141
|
+
'LeaderboardRegisterPlayerScoreInput': { kind: 'INPUT_OBJECT'; name: 'LeaderboardRegisterPlayerScoreInput'; isOneOf: false; inputFields: [{ name: 'leaderboardId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'score'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'PositiveInt'; ofType: null; }; }; defaultValue: null }]; };
|
|
142
|
+
'LeaderboardScoreCalculationType': { name: 'LeaderboardScoreCalculationType'; enumValues: 'SCORE'; };
|
|
143
|
+
'LeaderboardSeason': { kind: 'OBJECT'; name: 'LeaderboardSeason'; fields: { 'buckets': { name: 'buckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBuckets'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'end': { name: 'end'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'leaderboardId': { name: 'leaderboardId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'start': { name: 'start'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'startingScore': { name: 'startingScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
144
|
+
'LeaderboardSeasonBucket': { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'minScore': { name: 'minScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'scoreCalculationType': { name: 'scoreCalculationType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'LeaderboardScoreCalculationType'; ofType: null; }; } }; 'scores': { name: 'scores'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScores'; ofType: null; }; } }; 'seasonId': { name: 'seasonId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
145
|
+
'LeaderboardSeasonBucketEdge': { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; ofType: null; }; }; }; } }; }; };
|
|
146
|
+
'LeaderboardSeasonBucketScore': { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScore'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'lastRank': { name: 'lastRank'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'lastScore': { name: 'lastScore'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'leaderboardSeasonBucketId': { name: 'leaderboardSeasonBucketId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'player': { name: 'player'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'playerProfileId': { name: 'playerProfileId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rank': { name: 'rank'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'score': { name: 'score'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
147
|
+
'LeaderboardSeasonBucketScoreEdge': { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScoreEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScore'; ofType: null; }; }; }; } }; }; };
|
|
148
|
+
'LeaderboardSeasonBucketScores': { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScores'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScoreEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScore'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
149
|
+
'LeaderboardSeasonBuckets': { kind: 'OBJECT'; name: 'LeaderboardSeasonBuckets'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
150
|
+
'LeaderboardSeasonEdge': { kind: 'OBJECT'; name: 'LeaderboardSeasonEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; }; }; } }; }; };
|
|
151
|
+
'LeaderboardSeasons': { kind: 'OBJECT'; name: 'LeaderboardSeasons'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
152
|
+
'Leaderboards': { kind: 'OBJECT'; name: 'Leaderboards'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboard'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
153
|
+
'Limit': { kind: 'OBJECT'; name: 'Limit'; fields: { 'bucketDuration': { name: 'bucketDuration'; type: { kind: 'ENUM'; name: 'BucketDuration'; ofType: null; } }; 'default': { name: 'default'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'max': { name: 'max'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'scope': { name: 'scope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'LimitScope'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OrganizationLimitType'; ofType: null; }; } }; }; };
|
|
154
|
+
'LimitOverride': { kind: 'OBJECT'; name: 'LimitOverride'; fields: { 'limit': { name: 'limit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OrganizationLimitsType'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
155
|
+
'LimitScope': { name: 'LimitScope'; enumValues: 'ORGANIZATION' | 'RESOURCE'; };
|
|
156
|
+
'Limits': { kind: 'OBJECT'; name: 'Limits'; fields: { 'limits': { name: 'limits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Limit'; ofType: null; }; }; }; } }; }; };
|
|
157
|
+
'Log': { kind: 'OBJECT'; name: 'Log'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LogData'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'resourceId': { name: 'resourceId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'LogType'; ofType: null; }; } }; }; };
|
|
158
|
+
'LogAuthorType': { name: 'LogAuthorType'; enumValues: 'APP' | 'SYSTEM' | 'USER'; };
|
|
159
|
+
'LogData': { kind: 'OBJECT'; name: 'LogData'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'authorType': { name: 'authorType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'LogAuthorType'; ofType: null; }; } }; 'newValue': { name: 'newValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSONObject'; ofType: null; }; } }; 'oldValue': { name: 'oldValue'; type: { kind: 'SCALAR'; name: 'JSONObject'; ofType: null; } }; }; };
|
|
160
|
+
'LogEdge': { kind: 'OBJECT'; name: 'LogEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Log'; ofType: null; }; }; }; } }; }; };
|
|
161
|
+
'LogType': { name: 'LogType'; enumValues: 'WEBHOOK_CALL' | 'WEBHOOK_CALL_ERROR'; };
|
|
162
|
+
'Logs': { kind: 'OBJECT'; name: 'Logs'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LogEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Log'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
163
|
+
'ManualSeedingGroupInput': { kind: 'INPUT_OBJECT'; name: 'ManualSeedingGroupInput'; isOneOf: false; inputFields: [{ name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'teams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
164
|
+
'ManualSeedingInput': { kind: 'INPUT_OBJECT'; name: 'ManualSeedingInput'; isOneOf: false; inputFields: [{ name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ManualSeedingGroupInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
165
|
+
'MappingConfiguration': { kind: 'OBJECT'; name: 'MappingConfiguration'; fields: { 'mappings': { name: 'mappings'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'KeyMapping'; ofType: null; }; }; }; } }; }; };
|
|
166
|
+
'MappingConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'MappingConfigurationInput'; isOneOf: false; inputFields: [{ name: 'mappings'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'KeyMappingInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
167
|
+
'MatchConfiguration': { kind: 'OBJECT'; name: 'MatchConfiguration'; fields: { 'scoreFormula': { name: 'scoreFormula'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'variables': { name: 'variables'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MatchVariable'; ofType: null; }; }; }; } }; }; };
|
|
168
|
+
'MatchConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'MatchConfigurationInput'; isOneOf: false; inputFields: [{ name: 'scoreFormula'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'variables'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MatchVariableInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
169
|
+
'MatchScoreStatus': { name: 'MatchScoreStatus'; enumValues: 'FORFEIT' | 'LOSER' | 'WAITING' | 'WINNER'; };
|
|
170
|
+
'MatchStatus': { name: 'MatchStatus'; enumValues: 'ENDED' | 'STARTED' | 'WAITING'; };
|
|
171
|
+
'MatchVariable': { kind: 'OBJECT'; name: 'MatchVariable'; fields: { 'defaultValue': { name: 'defaultValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'displayIcon': { name: 'displayIcon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'displayName': { name: 'displayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'formulaName': { name: 'formulaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
172
|
+
'MatchVariableInput': { kind: 'INPUT_OBJECT'; name: 'MatchVariableInput'; isOneOf: false; inputFields: [{ name: 'defaultValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'displayIcon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'displayName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'formulaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
173
|
+
'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'accountIdentityGenerateAccessToken': { name: 'accountIdentityGenerateAccessToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'accountIdentityRefresh': { name: 'accountIdentityRefresh'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountIdentity'; ofType: null; }; } }; 'answerToTournamentTeamInvite': { name: 'answerToTournamentTeamInvite'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'attachOrUpdateIdentityToAccount': { name: 'attachOrUpdateIdentityToAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountIdentity'; ofType: null; }; } }; 'confirmTournamentAttendance': { name: 'confirmTournamentAttendance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'confirmTournamentTeam': { name: 'confirmTournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'createIdentityProvider': { name: 'createIdentityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationIdentityProvider'; ofType: null; }; } }; 'createLeaderboard': { name: 'createLeaderboard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboard'; ofType: null; }; } }; 'createLeaderboardSeason': { name: 'createLeaderboardSeason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; } }; 'createLeaderboardSeasonBucket': { name: 'createLeaderboardSeasonBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; ofType: null; }; } }; 'createOrUpdateMyPlayerProfile': { name: 'createOrUpdateMyPlayerProfile'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'createOrganization': { name: 'createOrganization'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Organization'; ofType: null; }; } }; 'createOrganizationApp': { name: 'createOrganizationApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; } }; 'createOrganizationGroup': { name: 'createOrganizationGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; } }; 'createPlayer': { name: 'createPlayer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'createTournament': { name: 'createTournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; } }; 'createTournamentStep': { name: 'createTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStep'; ofType: null; }; } }; 'createWebhook': { name: 'createWebhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; } }; 'deleteAccount': { name: 'deleteAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteAnyTournamentTeam': { name: 'deleteAnyTournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteConfiguration': { name: 'deleteConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteIdentityProvider': { name: 'deleteIdentityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteLeaderboard': { name: 'deleteLeaderboard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'deleteLeaderboardSeason': { name: 'deleteLeaderboardSeason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'deleteLeaderboardSeasonBucket': { name: 'deleteLeaderboardSeasonBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'deleteOrganizationApp': { name: 'deleteOrganizationApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteOrganizationAttachedApp': { name: 'deleteOrganizationAttachedApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteOrganizationGroup': { name: 'deleteOrganizationGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteOrganizationMembership': { name: 'deleteOrganizationMembership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deletePlayer': { name: 'deletePlayer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteTournament': { name: 'deleteTournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteTournamentStep': { name: 'deleteTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteTournamentTeam': { name: 'deleteTournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteTournamentTeamInvite': { name: 'deleteTournamentTeamInvite'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'deleteWebhook': { name: 'deleteWebhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; } }; 'generateTournamentStep': { name: 'generateTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'inviteTournamentTeamMember': { name: 'inviteTournamentTeamMember'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'leaderboardRegisterPlayerScore': { name: 'leaderboardRegisterPlayerScore'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScore'; ofType: null; }; } }; 'organizationSkillRatingCreate': { name: 'organizationSkillRatingCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSkillRating'; ofType: null; }; } }; 'organizationSkillRatingDelete': { name: 'organizationSkillRatingDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'organizationSkillRatingUpdate': { name: 'organizationSkillRatingUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSkillRating'; ofType: null; }; } }; 'organizationSkillRatingsRegisterMatch': { name: 'organizationSkillRatingsRegisterMatch'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'organizationSubscriptionItemsUpdate': { name: 'organizationSubscriptionItemsUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformCreate': { name: 'platformCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Platform'; ofType: null; }; } }; 'platformDelete': { name: 'platformDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformFileCreate': { name: 'platformFileCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; } }; 'platformFileDelete': { name: 'platformFileDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformFilePublish': { name: 'platformFilePublish'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformFileUpdate': { name: 'platformFileUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; } }; 'platformForceCustomDomainRecheck': { name: 'platformForceCustomDomainRecheck'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainData'; ofType: null; }; } }; 'platformRegisterCustomDomain': { name: 'platformRegisterCustomDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainData'; ofType: null; }; } }; 'platformRemoveCustomDomain': { name: 'platformRemoveCustomDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformUpdate': { name: 'platformUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Platform'; ofType: null; }; } }; 'regenerateWebhookSecret': { name: 'regenerateWebhookSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; } }; 'registerCustomTournamentTeams': { name: 'registerCustomTournamentTeams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; }; }; } }; 'registerTournamentTeam': { name: 'registerTournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'resetOrganizationAppSecret': { name: 'resetOrganizationAppSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'seedTournamentStep': { name: 'seedTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'setOrganizationAttachedApp': { name: 'setOrganizationAttachedApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAttachedApp'; ofType: null; }; } }; 'setOrganizationMembership': { name: 'setOrganizationMembership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMember'; ofType: null; }; } }; 'startTournamentStep': { name: 'startTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'stripeCreatePortalSession': { name: 'stripeCreatePortalSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tournamentAdminDelete': { name: 'tournamentAdminDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'tournamentAdminUpsert': { name: 'tournamentAdminUpsert'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentAdmin'; ofType: null; }; } }; 'updateConfiguration': { name: 'updateConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Configuration'; ofType: null; }; } }; 'updateIdentityProvider': { name: 'updateIdentityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationIdentityProvider'; ofType: null; }; } }; 'updateLeaderboard': { name: 'updateLeaderboard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboard'; ofType: null; }; } }; 'updateLeaderboardSeason': { name: 'updateLeaderboardSeason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; } }; 'updateLeaderboardSeasonBucket': { name: 'updateLeaderboardSeasonBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; ofType: null; }; } }; 'updateMatchScores': { name: 'updateMatchScores'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; ofType: null; }; } }; 'updateOrganization': { name: 'updateOrganization'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Organization'; ofType: null; }; } }; 'updateOrganizationApp': { name: 'updateOrganizationApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; } }; 'updateOrganizationGroup': { name: 'updateOrganizationGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; } }; 'updatePlayer': { name: 'updatePlayer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'updateTournament': { name: 'updateTournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; } }; 'updateTournamentStep': { name: 'updateTournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStep'; ofType: null; }; } }; 'updateTournamentTeam': { name: 'updateTournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'updateTournamentTeamStatus': { name: 'updateTournamentTeamStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'updateWebhook': { name: 'updateWebhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; } }; }; };
|
|
174
|
+
'NumberConditionInput': { kind: 'INPUT_OBJECT'; name: 'NumberConditionInput'; isOneOf: false; inputFields: [{ name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NumberConditionType'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
175
|
+
'NumberConditionType': { name: 'NumberConditionType'; enumValues: 'BT' | 'BTE' | 'EQ' | 'LT' | 'LTE' | 'NEQ'; };
|
|
176
|
+
'NumericCondition': { kind: 'OBJECT'; name: 'NumericCondition'; fields: { 'conditionType': { name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NumberConditionType'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
177
|
+
'OAuthClientConfiguration': { kind: 'OBJECT'; name: 'OAuthClientConfiguration'; fields: { 'authorizationEndpoint': { name: 'authorizationEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'authorizationUrl': { name: 'authorizationUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'clientSecret': { name: 'clientSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'dataRetrievers': { name: 'dataRetrievers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DataRetrievalConfig'; ofType: null; }; }; }; } }; 'issuer': { name: 'issuer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'providerType': { name: 'providerType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IdentityProviderType'; ofType: null; }; } }; 'redirectUrl': { name: 'redirectUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenEndpoint': { name: 'tokenEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'tokenEndpointAuthMethod': { name: 'tokenEndpointAuthMethod'; type: { kind: 'ENUM'; name: 'OauthEndpointAuthMethod'; ofType: null; } }; }; };
|
|
178
|
+
'OAuthClientConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'OAuthClientConfigurationInput'; isOneOf: false; inputFields: [{ name: 'authorizationEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'authorizationUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'clientSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'dataRetrievers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DataRetrievalConfigInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'issuer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'providerType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IdentityProviderType'; ofType: null; }; }; defaultValue: null }, { name: 'redirectUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'tokenEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenEndpointAuthMethod'; type: { kind: 'ENUM'; name: 'OauthEndpointAuthMethod'; ofType: null; }; defaultValue: "CLIENT_SECRET_POST" }]; };
|
|
179
|
+
'OauthEndpointAuthMethod': { name: 'OauthEndpointAuthMethod'; enumValues: 'CLIENT_SECRET_BASIC' | 'CLIENT_SECRET_JWT' | 'CLIENT_SECRET_POST' | 'NONE' | 'PRIVATE_KEY_JWT' | 'SELF_SIGNED_TLS_CLIENT_AUTH' | 'TLS_CLIENT_AUTH'; };
|
|
180
|
+
'OpenidConfiguration': { kind: 'OBJECT'; name: 'OpenidConfiguration'; fields: { 'authorizationEndpoint': { name: 'authorizationEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'clientId': { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'clientSecret': { name: 'clientSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'dataRetrievers': { name: 'dataRetrievers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DataRetrievalConfig'; ofType: null; }; }; }; } }; 'issuer': { name: 'issuer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'providerType': { name: 'providerType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IdentityProviderType'; ofType: null; }; } }; 'redirectUrl': { name: 'redirectUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
181
|
+
'OpenidConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'OpenidConfigurationInput'; isOneOf: false; inputFields: [{ name: 'authorizationEndpoint'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'clientId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'clientSecret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'dataRetrievers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DataRetrievalConfigInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'issuer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'providerType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IdentityProviderType'; ofType: null; }; }; defaultValue: null }, { name: 'redirectUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
182
|
+
'OrderByProperty': { kind: 'INPUT_OBJECT'; name: 'OrderByProperty'; isOneOf: false; inputFields: [{ name: 'order'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }, { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
183
|
+
'OrderDirection': { name: 'OrderDirection'; enumValues: 'ASC' | 'DESC'; };
|
|
184
|
+
'Organization': { kind: 'OBJECT'; name: 'Organization'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationConfiguration'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'groups': { name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'identityProviders': { name: 'identityProviders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PublicOrganizationIdentityProvider'; ofType: null; }; }; }; } }; 'members': { name: 'members'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMember'; ofType: null; }; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownerId': { name: 'ownerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'stripeConfigured': { name: 'stripeConfigured'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'tournaments': { name: 'tournaments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; }; }; } }; }; };
|
|
185
|
+
'OrganizationApp': { kind: 'OBJECT'; name: 'OrganizationApp'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAppConfig'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'creator': { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'creatorId': { name: 'creatorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'public': { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'secret': { name: 'secret'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
186
|
+
'OrganizationAppConfig': { kind: 'OBJECT'; name: 'OrganizationAppConfig'; fields: { 'logoutRedirectUrls': { name: 'logoutRedirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'metadata': { name: 'metadata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAppConfigMetadata'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'redirectUrls': { name: 'redirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'scope': { name: 'scope'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
187
|
+
'OrganizationAppConfigMetadata': { kind: 'OBJECT'; name: 'OrganizationAppConfigMetadata'; fields: { 'consentUrl': { name: 'consentUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'creatorId': { name: 'creatorId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'loginUrl': { name: 'loginUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'public': { name: 'public'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'requiresConsent': { name: 'requiresConsent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; };
|
|
188
|
+
'OrganizationAppEdge': { kind: 'OBJECT'; name: 'OrganizationAppEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; }; }; } }; }; };
|
|
189
|
+
'OrganizationApps': { kind: 'OBJECT'; name: 'OrganizationApps'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAppEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
190
|
+
'OrganizationAttachedApp': { kind: 'OBJECT'; name: 'OrganizationAttachedApp'; fields: { 'app': { name: 'app'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; } }; 'appId': { name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'group': { name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupPermission'; ofType: null; }; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
191
|
+
'OrganizationAttachedAppEdge': { kind: 'OBJECT'; name: 'OrganizationAttachedAppEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAttachedApp'; ofType: null; }; }; }; } }; }; };
|
|
192
|
+
'OrganizationAttachedApps': { kind: 'OBJECT'; name: 'OrganizationAttachedApps'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAttachedAppEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAttachedApp'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
193
|
+
'OrganizationConfiguration': { kind: 'OBJECT'; name: 'OrganizationConfiguration'; fields: { 'customFields': { name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Property'; ofType: null; }; }; }; } }; }; };
|
|
194
|
+
'OrganizationConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationConfigurationInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
195
|
+
'OrganizationGroup': { kind: 'OBJECT'; name: 'OrganizationGroup'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupPermission'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OrganizationGroupType'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
196
|
+
'OrganizationGroupEdge': { kind: 'OBJECT'; name: 'OrganizationGroupEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; }; }; } }; }; };
|
|
197
|
+
'OrganizationGroupType': { name: 'OrganizationGroupType'; enumValues: 'ADMIN' | 'ANONYMOUS' | 'CONNECTED' | 'MEMBER'; };
|
|
198
|
+
'OrganizationGroups': { kind: 'OBJECT'; name: 'OrganizationGroups'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroupEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
199
|
+
'OrganizationIdentityProvider': { kind: 'OBJECT'; name: 'OrganizationIdentityProvider'; fields: { 'allowLogin': { name: 'allowLogin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'configuration': { name: 'configuration'; type: { kind: 'UNION'; name: 'IdentityProviderConfigurations'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'icon': { name: 'icon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'identityProviderId': { name: 'identityProviderId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'parentIdentityProvider': { name: 'parentIdentityProvider'; type: { kind: 'OBJECT'; name: 'PublicIdentityProvider'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
200
|
+
'OrganizationLimit': { kind: 'OBJECT'; name: 'OrganizationLimit'; fields: { 'current': { name: 'current'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'max': { name: 'max'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
201
|
+
'OrganizationLimitType': { name: 'OrganizationLimitType'; enumValues: 'BOOLEAN' | 'BYTES' | 'DAYS' | 'NUMBER'; };
|
|
202
|
+
'OrganizationLimits': { kind: 'OBJECT'; name: 'OrganizationLimits'; fields: { 'limits': { name: 'limits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationLimit'; ofType: null; }; }; }; } }; }; };
|
|
203
|
+
'OrganizationLimitsType': { name: 'OrganizationLimitsType'; enumValues: 'ANONYMOUS_PLAYER_PROFILES' | 'APPS' | 'ATTACHED_APPS' | 'CUSTOM_FIELDS' | 'CUSTOM_IDENTITY_PROVIDERS' | 'LEADERBOARDS' | 'LEADERBOARD_BUCKETS' | 'LEADERBOARD_ENTRIES' | 'LEADERBOARD_SEASONS' | 'ORGANIZATION_GROUPS' | 'ORGANIZATION_MEMBERS' | 'ORGANIZATION_STORAGE_SIZE' | 'PLATFORMS' | 'PLATFORM_CUSTOM_DOMAINS' | 'REGISTERED_USERS' | 'SKILL_RATINGS' | 'TOURNAMENT_REGISTRATION_RULES' | 'TOURNAMENT_STEPS' | 'TOURNAMENT_STEP_GROUPS' | 'TOURNAMENT_TEAMS_REGISTERED' | 'TOURNAMENT_TEAM_SIZE' | 'WEBHOOKS' | 'WHITE_LABEL'; };
|
|
204
|
+
'OrganizationMember': { kind: 'OBJECT'; name: 'OrganizationMember'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'group': { name: 'group'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'memberId': { name: 'memberId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupPermission'; ofType: null; }; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
205
|
+
'OrganizationMemberEdge': { kind: 'OBJECT'; name: 'OrganizationMemberEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMember'; ofType: null; }; }; }; } }; }; };
|
|
206
|
+
'OrganizationMembers': { kind: 'OBJECT'; name: 'OrganizationMembers'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMemberEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMember'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
207
|
+
'OrganizationSkillRating': { kind: 'OBJECT'; name: 'OrganizationSkillRating'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SkillRatingConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SkillRatingType'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
208
|
+
'OrganizationSkillRatingCreateInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationSkillRatingCreateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SkillRatingConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SkillRatingType'; ofType: null; }; }; defaultValue: null }]; };
|
|
209
|
+
'OrganizationSkillRatingUpdateInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationSkillRatingUpdateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'SkillRatingConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'SkillRatingType'; ofType: null; }; defaultValue: null }]; };
|
|
210
|
+
'OrganizationSkillRatingsRegisterMatchInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationSkillRatingsRegisterMatchInput'; isOneOf: false; inputFields: [{ name: 'teams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OrganizationSkillRatingsRegisterMatchTeamInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
211
|
+
'OrganizationSkillRatingsRegisterMatchTeamInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationSkillRatingsRegisterMatchTeamInput'; isOneOf: false; inputFields: [{ name: 'players'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
212
|
+
'OrganizationSubscriptionItem': { kind: 'OBJECT'; name: 'OrganizationSubscriptionItem'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'endAt': { name: 'endAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'subscriptionItem': { name: 'subscriptionItem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SubscriptionItem'; ofType: null; }; } }; 'subscriptionItemId': { name: 'subscriptionItemId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
213
|
+
'OrganizationSubscriptionItemUpdateInput': { kind: 'INPUT_OBJECT'; name: 'OrganizationSubscriptionItemUpdateInput'; isOneOf: false; inputFields: [{ name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'subscriptionItemId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
214
|
+
'PageInfo': { kind: 'INPUT_OBJECT'; name: 'PageInfo'; isOneOf: false; inputFields: [{ name: 'after'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'first'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; };
|
|
215
|
+
'Permission': { kind: 'OBJECT'; name: 'Permission'; fields: { 'availableVariables': { name: 'availableVariables'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'resources': { name: 'resources'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; }; };
|
|
216
|
+
'Permissions': { kind: 'OBJECT'; name: 'Permissions'; fields: { 'organizationPermissions': { name: 'organizationPermissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Permission'; ofType: null; }; }; }; } }; }; };
|
|
217
|
+
'Platform': { kind: 'OBJECT'; name: 'Platform'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'PlatformConfiguration'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'customDomains': { name: 'customDomains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCustomDomainData'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
218
|
+
'PlatformCdnFile': { kind: 'OBJECT'; name: 'PlatformCdnFile'; fields: { 'config': { name: 'config'; type: { kind: 'OBJECT'; name: 'PlatformCdnFileConfigs'; ofType: null; } }; 'contents': { name: 'contents'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'platformId': { name: 'platformId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PlatformCdnFileType'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
219
|
+
'PlatformCdnFileConfigs': { kind: 'OBJECT'; name: 'PlatformCdnFileConfigs'; fields: { 'pageConfig': { name: 'pageConfig'; type: { kind: 'OBJECT'; name: 'PlatformCdnFilePageConfig'; ofType: null; } }; }; };
|
|
220
|
+
'PlatformCdnFileConfigsInput': { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; isOneOf: false; inputFields: [{ name: 'pageConfig'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFilePageConfigInput'; ofType: null; }; defaultValue: null }]; };
|
|
221
|
+
'PlatformCdnFileCreateInput': { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileCreateInput'; isOneOf: false; inputFields: [{ name: 'config'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; ofType: null; }; defaultValue: null }, { name: 'contents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PlatformCdnFileType'; ofType: null; }; }; defaultValue: null }]; };
|
|
222
|
+
'PlatformCdnFilePageConfig': { kind: 'OBJECT'; name: 'PlatformCdnFilePageConfig'; fields: { 'path': { name: 'path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
223
|
+
'PlatformCdnFilePageConfigInput': { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFilePageConfigInput'; isOneOf: false; inputFields: [{ name: 'path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
224
|
+
'PlatformCdnFileType': { name: 'PlatformCdnFileType'; enumValues: 'COMPONENT' | 'IMAGE' | 'PAGE' | 'TEXT'; };
|
|
225
|
+
'PlatformConfiguration': { kind: 'OBJECT'; name: 'PlatformConfiguration'; fields: { 'whitelabel': { name: 'whitelabel'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
|
|
226
|
+
'PlatformConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'PlatformConfigurationInput'; isOneOf: false; inputFields: [{ name: 'whitelabel'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
227
|
+
'PlatformCustomDomainData': { kind: 'OBJECT'; name: 'PlatformCustomDomainData'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'CustomDomainData'; ofType: null; } }; 'domain': { name: 'domain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
228
|
+
'PlatformFileUpdateInput': { kind: 'INPUT_OBJECT'; name: 'PlatformFileUpdateInput'; isOneOf: false; inputFields: [{ name: 'config'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; ofType: null; }; defaultValue: null }, { name: 'contents'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
229
|
+
'Player': { kind: 'OBJECT'; name: 'Player'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'customFields': { name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PropertyConfigWithValue'; ofType: null; }; }; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'identities': { name: 'identities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AccountIdentity'; ofType: null; }; }; } }; 'organizationCustomId': { name: 'organizationCustomId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'OBJECT'; name: 'Account'; ofType: null; } }; 'ownerId': { name: 'ownerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'profilePicUrl': { name: 'profilePicUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'username': { name: 'username'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
230
|
+
'PlayerCondition': { kind: 'OBJECT'; name: 'PlayerCondition'; fields: { 'condition': { name: 'condition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Condition'; ofType: null; }; } }; 'errorMessage': { name: 'errorMessage'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'propertySource': { name: 'propertySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PlayerConditionDataSource'; ofType: null; }; } }; 'propertySourceId': { name: 'propertySourceId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'ruleDescription': { name: 'ruleDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
231
|
+
'PlayerConditionDataSource': { name: 'PlayerConditionDataSource'; enumValues: 'IDENTITY_PROVIDER' | 'PLAYER'; };
|
|
232
|
+
'PlayerConditionInput': { kind: 'INPUT_OBJECT'; name: 'PlayerConditionInput'; isOneOf: false; inputFields: [{ name: 'condition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ConditionInput'; ofType: null; }; }; defaultValue: null }, { name: 'errorMessage'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'propertySource'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PlayerConditionDataSource'; ofType: null; }; }; defaultValue: null }, { name: 'propertySourceId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'ruleDescription'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
233
|
+
'PlayerCustomFieldInput': { kind: 'INPUT_OBJECT'; name: 'PlayerCustomFieldInput'; isOneOf: false; inputFields: [{ name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
234
|
+
'PlayerEdge': { kind: 'OBJECT'; name: 'PlayerEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; }; }; } }; }; };
|
|
235
|
+
'PlayerSkillRating': { kind: 'OBJECT'; name: 'PlayerSkillRating'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'player': { name: 'player'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'playerProfileId': { name: 'playerProfileId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'ratingId': { name: 'ratingId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
236
|
+
'Players': { kind: 'OBJECT'; name: 'Players'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlayerEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
237
|
+
'PositiveInt': unknown;
|
|
238
|
+
'Property': { kind: 'OBJECT'; name: 'Property'; fields: { 'editability': { name: 'editability'; type: { kind: 'ENUM'; name: 'ProperyEditability'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'property': { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'public': { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'required': { name: 'required'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyType'; ofType: null; }; } }; 'unique': { name: 'unique'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'visibility': { name: 'visibility'; type: { kind: 'ENUM'; name: 'PropertyVisibility'; ofType: null; } }; }; };
|
|
239
|
+
'PropertyCondition': { name: 'PropertyCondition'; enumValues: 'DONT_EXIST' | 'EXISTS'; };
|
|
240
|
+
'PropertyConfigWithValue': { kind: 'OBJECT'; name: 'PropertyConfigWithValue'; fields: { 'editability': { name: 'editability'; type: { kind: 'ENUM'; name: 'ProperyEditability'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'property': { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'public': { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'required': { name: 'required'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyType'; ofType: null; }; } }; 'unique': { name: 'unique'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'visibility': { name: 'visibility'; type: { kind: 'ENUM'; name: 'PropertyVisibility'; ofType: null; } }; }; };
|
|
241
|
+
'PropertyInput': { kind: 'INPUT_OBJECT'; name: 'PropertyInput'; isOneOf: false; inputFields: [{ name: 'editability'; type: { kind: 'ENUM'; name: 'ProperyEditability'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'required'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyType'; ofType: null; }; }; defaultValue: null }, { name: 'unique'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'visibility'; type: { kind: 'ENUM'; name: 'PropertyVisibility'; ofType: null; }; defaultValue: null }]; };
|
|
242
|
+
'PropertyType': { name: 'PropertyType'; enumValues: 'BOOLEAN' | 'COUNTRY' | 'DATE' | 'PHONE' | 'STRING'; };
|
|
243
|
+
'PropertyValueInput': { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; isOneOf: false; inputFields: [{ name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
244
|
+
'PropertyVisibility': { name: 'PropertyVisibility'; enumValues: 'OWNER' | 'OWNER_OR_PERMISSION' | 'PUBLIC' | 'WITH_PERMISSION'; };
|
|
245
|
+
'ProperyEditability': { name: 'ProperyEditability'; enumValues: 'ALWAYS' | 'ONE_TIME' | 'WITH_PERMISSION'; };
|
|
246
|
+
'PublicIdentityProvider': { kind: 'OBJECT'; name: 'PublicIdentityProvider'; fields: { 'availability': { name: 'availability'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'IdentityProviderAvailability'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'icon': { name: 'icon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'requirements': { name: 'requirements'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IdentityProviderRequirements'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
247
|
+
'PublicOrganizationIdentityProvider': { kind: 'OBJECT'; name: 'PublicOrganizationIdentityProvider'; fields: { 'allowLogin': { name: 'allowLogin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'authorizationUrl': { name: 'authorizationUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'icon': { name: 'icon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
248
|
+
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'availablePermissions': { name: 'availablePermissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Permissions'; ofType: null; }; } }; 'availableRootIdentityProvider': { name: 'availableRootIdentityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PublicIdentityProvider'; ofType: null; }; } }; 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Configuration'; ofType: null; }; } }; 'currentLeaderboardSeason': { name: 'currentLeaderboardSeason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; } }; 'getAvailableRootIdentityProviders': { name: 'getAvailableRootIdentityProviders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PublicIdentityProvider'; ofType: null; }; }; }; } }; 'getMyAccount': { name: 'getMyAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'identityProvider': { name: 'identityProvider'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationIdentityProvider'; ofType: null; }; } }; 'identityProviders': { name: 'identityProviders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationIdentityProvider'; ofType: null; }; }; }; } }; 'leaderboard': { name: 'leaderboard'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboard'; ofType: null; }; } }; 'leaderboardCurrentPlayerRanking': { name: 'leaderboardCurrentPlayerRanking'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScore'; ofType: null; }; } }; 'leaderboardSeason': { name: 'leaderboardSeason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeason'; ofType: null; }; } }; 'leaderboardSeasonBucket': { name: 'leaderboardSeasonBucket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucket'; ofType: null; }; } }; 'leaderboardSeasonBuckets': { name: 'leaderboardSeasonBuckets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBuckets'; ofType: null; }; } }; 'leaderboardSeasons': { name: 'leaderboardSeasons'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasons'; ofType: null; }; } }; 'leaderboards': { name: 'leaderboards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Leaderboards'; ofType: null; }; } }; 'limitDefinitions': { name: 'limitDefinitions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Limits'; ofType: null; }; } }; 'logs': { name: 'logs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Logs'; ofType: null; }; } }; 'match': { name: 'match'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; ofType: null; }; } }; 'organization': { name: 'organization'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Organization'; ofType: null; }; } }; 'organizationApp': { name: 'organizationApp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApp'; ofType: null; }; } }; 'organizationApps': { name: 'organizationApps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationApps'; ofType: null; }; } }; 'organizationAttachedApps': { name: 'organizationAttachedApps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationAttachedApps'; ofType: null; }; } }; 'organizationCurrentSubscriptionItems': { name: 'organizationCurrentSubscriptionItems'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSubscriptionItem'; ofType: null; }; }; }; } }; 'organizationGroup': { name: 'organizationGroup'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroup'; ofType: null; }; } }; 'organizationGroups': { name: 'organizationGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationGroups'; ofType: null; }; } }; 'organizationLimits': { name: 'organizationLimits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationLimits'; ofType: null; }; } }; 'organizationMembers': { name: 'organizationMembers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationMembers'; ofType: null; }; } }; 'organizationSkillRating': { name: 'organizationSkillRating'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSkillRating'; ofType: null; }; } }; 'organizationSkillRatings': { name: 'organizationSkillRatings'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSkillRating'; ofType: null; }; }; }; } }; 'platform': { name: 'platform'; type: { kind: 'OBJECT'; name: 'Platform'; ofType: null; } }; 'platformCheckDomainAvailability': { name: 'platformCheckDomainAvailability'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'platformCustomDomains': { name: 'platformCustomDomains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCustomDomainData'; ofType: null; }; }; }; } }; 'platformFile': { name: 'platformFile'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; } }; 'platformFiles': { name: 'platformFiles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; }; }; } }; 'platformFindFromDomain': { name: 'platformFindFromDomain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Platform'; ofType: null; }; } }; 'platforms': { name: 'platforms'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Platform'; ofType: null; }; }; }; } }; 'player': { name: 'player'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; } }; 'playerMatchesHistory': { name: 'playerMatchesHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatches'; ofType: null; }; } }; 'playerSkillRatings': { name: 'playerSkillRatings'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlayerSkillRating'; ofType: null; }; }; }; } }; 'players': { name: 'players'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Players'; ofType: null; }; } }; 'searchPlayer': { name: 'searchPlayer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Player'; ofType: null; }; }; }; } }; 'subscriptionItems': { name: 'subscriptionItems'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SubscriptionItem'; ofType: null; }; }; }; } }; 'tournament': { name: 'tournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; } }; 'tournamentAdmins': { name: 'tournamentAdmins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentAdmin'; ofType: null; }; }; }; } }; 'tournamentPlayers': { name: 'tournamentPlayers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TeamMembers'; ofType: null; }; } }; 'tournamentStep': { name: 'tournamentStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStep'; ofType: null; }; } }; 'tournamentStepGeneratedShape': { name: 'tournamentStepGeneratedShape'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroup'; ofType: null; }; }; }; } }; 'tournamentStepGroupRoundGameMatchScoresGetForStep': { name: 'tournamentStepGroupRoundGameMatchScoresGetForStep'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScores'; ofType: null; }; } }; 'tournamentSteps': { name: 'tournamentSteps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStep'; ofType: null; }; }; }; } }; 'tournamentTeam': { name: 'tournamentTeam'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'tournamentTeamInvites': { name: 'tournamentTeamInvites'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TeamMembers'; ofType: null; }; } }; 'tournamentTeams': { name: 'tournamentTeams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeams'; ofType: null; }; } }; 'tournaments': { name: 'tournaments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournaments'; ofType: null; }; } }; 'userOrganizations': { name: 'userOrganizations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Organization'; ofType: null; }; }; }; } }; 'webhook': { name: 'webhook'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; } }; 'webhookAvailableEvents': { name: 'webhookAvailableEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WebhookEventConfiguration'; ofType: null; }; }; }; } }; 'webhooks': { name: 'webhooks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Webhook'; ofType: null; }; }; }; } }; }; };
|
|
249
|
+
'QueryPlayersInput': { kind: 'INPUT_OBJECT'; name: 'QueryPlayersInput'; isOneOf: false; inputFields: [{ name: 'anonymous'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
250
|
+
'RegisterCustomTeamInput': { kind: 'INPUT_OBJECT'; name: 'RegisterCustomTeamInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'fromExistingTeamId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'members'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'CustomTeamMemberInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentTeamStatus'; ofType: null; }; }; defaultValue: null }, { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
251
|
+
'RegisterCustomTeamsInput': { kind: 'INPUT_OBJECT'; name: 'RegisterCustomTeamsInput'; isOneOf: false; inputFields: [{ name: 'customTeams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'RegisterCustomTeamInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
252
|
+
'RegisterTournamentTeamInput': { kind: 'INPUT_OBJECT'; name: 'RegisterTournamentTeamInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'fromExistingTeamId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
253
|
+
'RegistrationConditions': { kind: 'OBJECT'; name: 'RegistrationConditions'; fields: { 'memberConditions': { name: 'memberConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlayerCondition'; ofType: null; }; }; }; } }; 'teamConditions': { name: 'teamConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TeamCondition'; ofType: null; }; }; }; } }; }; };
|
|
254
|
+
'RegistrationConditionsInput': { kind: 'INPUT_OBJECT'; name: 'RegistrationConditionsInput'; isOneOf: false; inputFields: [{ name: 'memberConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PlayerConditionInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'teamConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TeamConditionInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
255
|
+
'ResponsePageInfo': { kind: 'OBJECT'; name: 'ResponsePageInfo'; fields: { 'endCursor': { name: 'endCursor'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'hasNextPage': { name: 'hasNextPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hasPreviousPage': { name: 'hasPreviousPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'startCursor': { name: 'startCursor'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
256
|
+
'RoundConfiguration': { kind: 'OBJECT'; name: 'RoundConfiguration'; fields: { 'game': { name: 'game'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GameConfiguration'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
257
|
+
'RoundConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'RoundConfigurationInput'; isOneOf: false; inputFields: [{ name: 'game'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GameConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
258
|
+
'SeedingInput': { kind: 'INPUT_OBJECT'; name: 'SeedingInput'; isOneOf: false; inputFields: [{ name: 'automaticSeeding'; type: { kind: 'INPUT_OBJECT'; name: 'AutomaticSeedingInput'; ofType: null; }; defaultValue: null }, { name: 'manualSeeding'; type: { kind: 'INPUT_OBJECT'; name: 'ManualSeedingInput'; ofType: null; }; defaultValue: null }]; };
|
|
259
|
+
'SeedingMechanism': { name: 'SeedingMechanism'; enumValues: 'HALF_SHIFT' | 'NONE' | 'PAIR_FLIP' | 'REVERSE' | 'REVERSE_HALF_SHIFT'; };
|
|
260
|
+
'SetOrganizationAttachedAppInput': { kind: 'INPUT_OBJECT'; name: 'SetOrganizationAttachedAppInput'; isOneOf: false; inputFields: [{ name: 'appId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'groupId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'permissions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupPermissionInput'; ofType: null; }; }; }; defaultValue: null }]; };
|
|
261
|
+
'SetOrganizationMembershipInput': { kind: 'INPUT_OBJECT'; name: 'SetOrganizationMembershipInput'; isOneOf: false; inputFields: [{ name: 'email'; type: { kind: 'SCALAR'; name: 'EmailAddress'; ofType: null; }; defaultValue: null }, { name: 'groupId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'permissions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupPermissionInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'userId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
262
|
+
'SkillRatingConfiguration': { kind: 'OBJECT'; name: 'SkillRatingConfiguration'; fields: { 'updateLeaderboardId': { name: 'updateLeaderboardId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; }; };
|
|
263
|
+
'SkillRatingConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'SkillRatingConfigurationInput'; isOneOf: false; inputFields: [{ name: 'updateLeaderboardId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
264
|
+
'SkillRatingType': { name: 'SkillRatingType'; enumValues: 'BRADLEY_TERRY_PART' | 'BREDLEY_TERRY_FULL' | 'PLACKETT_LUCE' | 'THURSTONE_MOSTELLER_FULL' | 'THURSTONE_MOSTELLER_PART'; };
|
|
265
|
+
'StepConfiguration': { kind: 'OBJECT'; name: 'StepConfiguration'; fields: { 'groups': { name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupConfiguration'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConfigurationType'; ofType: null; }; } }; }; };
|
|
266
|
+
'StepConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'StepConfigurationInput'; isOneOf: false; inputFields: [{ name: 'groups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'GroupConfigurationInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConfigurationType'; ofType: null; }; }; defaultValue: "STEP" }]; };
|
|
267
|
+
'StepStatus': { name: 'StepStatus'; enumValues: 'CONFIGURED' | 'ENDED' | 'GENERATED' | 'GENERATING' | 'SEEDED' | 'SEEDING' | 'STARTED'; };
|
|
268
|
+
'StepType': { name: 'StepType'; enumValues: 'CUSTOM' | 'DOUBLE_ELIM' | 'ROUND_ROBIN' | 'SCORE' | 'SINGLE_ELIM'; };
|
|
269
|
+
'String': unknown;
|
|
270
|
+
'StringCondition': { kind: 'OBJECT'; name: 'StringCondition'; fields: { 'conditionType': { name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StringConditionType'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
271
|
+
'StringConditionInput': { kind: 'INPUT_OBJECT'; name: 'StringConditionInput'; isOneOf: false; inputFields: [{ name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StringConditionType'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
272
|
+
'StringConditionType': { name: 'StringConditionType'; enumValues: 'EQ' | 'NEQ'; };
|
|
273
|
+
'SubscriptionItem': { kind: 'OBJECT'; name: 'SubscriptionItem'; fields: { 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'limitsOverride': { name: 'limitsOverride'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LimitOverride'; ofType: null; }; }; }; } }; 'maxCount': { name: 'maxCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'price': { name: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
274
|
+
'TeamCondition': { kind: 'OBJECT'; name: 'TeamCondition'; fields: { 'errorMessage': { name: 'errorMessage'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'numericCondition': { name: 'numericCondition'; type: { kind: 'OBJECT'; name: 'TeamNumericCondition'; ofType: null; } }; 'property': { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'propertyCondition': { name: 'propertyCondition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyCondition'; ofType: null; }; } }; 'stringCondition': { name: 'stringCondition'; type: { kind: 'OBJECT'; name: 'StringCondition'; ofType: null; } }; }; };
|
|
275
|
+
'TeamConditionInput': { kind: 'INPUT_OBJECT'; name: 'TeamConditionInput'; isOneOf: false; inputFields: [{ name: 'errorMessage'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'numericCondition'; type: { kind: 'INPUT_OBJECT'; name: 'TeamNumericConditionInput'; ofType: null; }; defaultValue: null }, { name: 'property'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'propertyCondition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PropertyCondition'; ofType: null; }; }; defaultValue: null }, { name: 'stringCondition'; type: { kind: 'INPUT_OBJECT'; name: 'StringConditionInput'; ofType: null; }; defaultValue: null }]; };
|
|
276
|
+
'TeamMembers': { kind: 'OBJECT'; name: 'TeamMembers'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamMemberEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamMemberDto'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
277
|
+
'TeamNumericCondition': { kind: 'OBJECT'; name: 'TeamNumericCondition'; fields: { 'aggregationType': { name: 'aggregationType'; type: { kind: 'ENUM'; name: 'AggregationType'; ofType: null; } }; 'conditionType': { name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NumberConditionType'; ofType: null; }; } }; 'propertySource': { name: 'propertySource'; type: { kind: 'ENUM'; name: 'PlayerConditionDataSource'; ofType: null; } }; 'propertySourceId': { name: 'propertySourceId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
278
|
+
'TeamNumericConditionInput': { kind: 'INPUT_OBJECT'; name: 'TeamNumericConditionInput'; isOneOf: false; inputFields: [{ name: 'aggregationType'; type: { kind: 'ENUM'; name: 'AggregationType'; ofType: null; }; defaultValue: null }, { name: 'conditionType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'NumberConditionType'; ofType: null; }; }; defaultValue: null }, { name: 'propertySource'; type: { kind: 'ENUM'; name: 'PlayerConditionDataSource'; ofType: null; }; defaultValue: null }, { name: 'propertySourceId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
279
|
+
'TeamStatusAfterRegistration': { name: 'TeamStatusAfterRegistration'; enumValues: 'AWAITING_FOR_PAYMENT' | 'AWAITING_FOR_PRESENCE_CONFIRMATION' | 'REGISTERED'; };
|
|
280
|
+
'Tournament': { kind: 'OBJECT'; name: 'Tournament'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'TournamentConfiguration'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'createdBy': { name: 'createdBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'createdById': { name: 'createdById'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'endAt': { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'endRegistrationsAt': { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'myTeam': { name: 'myTeam'; type: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'startAt': { name: 'startAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'startRegistrationsAt': { name: 'startRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'steps': { name: 'steps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStep'; ofType: null; }; }; }; } }; 'teamScores': { name: 'teamScores'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamScore'; ofType: null; }; }; }; } }; 'teams': { name: 'teams'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeams'; ofType: null; }; } }; 'title': { name: 'title'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tournamentSeriesId': { name: 'tournamentSeriesId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'visibleAt': { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; }; };
|
|
281
|
+
'TournamentAdmin': { kind: 'OBJECT'; name: 'TournamentAdmin'; fields: { 'account': { name: 'account'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Account'; ofType: null; }; } }; 'accountId': { name: 'accountId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'permissions': { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentAdminPermissions'; ofType: null; }; }; }; } }; 'tournamentId': { name: 'tournamentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
282
|
+
'TournamentAdminDeleteInput': { kind: 'INPUT_OBJECT'; name: 'TournamentAdminDeleteInput'; isOneOf: false; inputFields: [{ name: 'accountId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'tournamentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
283
|
+
'TournamentAdminPermissions': { name: 'TournamentAdminPermissions'; enumValues: 'MANAGE_PERMISSIONS' | 'MANAGE_SCORES' | 'MANAGE_TEAMS' | 'MANAGE_TOURNAMENT'; };
|
|
284
|
+
'TournamentAdminUpsertInput': { kind: 'INPUT_OBJECT'; name: 'TournamentAdminUpsertInput'; isOneOf: false; inputFields: [{ name: 'accountId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'permissions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentAdminPermissions'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'tournamentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
285
|
+
'TournamentConfiguration': { kind: 'OBJECT'; name: 'TournamentConfiguration'; fields: { 'customFields': { name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Property'; ofType: null; }; }; } }; 'registrationConditions': { name: 'registrationConditions'; type: { kind: 'OBJECT'; name: 'RegistrationConditions'; ofType: null; } }; 'teamMaxSize': { name: 'teamMaxSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'teamMinSize': { name: 'teamMinSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'teamStatusAfterRegistration': { name: 'teamStatusAfterRegistration'; type: { kind: 'ENUM'; name: 'TeamStatusAfterRegistration'; ofType: null; } }; 'teamsCount': { name: 'teamsCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConfigurationType'; ofType: null; }; } }; }; };
|
|
286
|
+
'TournamentConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'TournamentConfigurationInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'registrationConditions'; type: { kind: 'INPUT_OBJECT'; name: 'RegistrationConditionsInput'; ofType: null; }; defaultValue: null }, { name: 'teamMaxSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'teamMinSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'teamStatusAfterRegistration'; type: { kind: 'ENUM'; name: 'TeamStatusAfterRegistration'; ofType: null; }; defaultValue: null }, { name: 'teamsCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ConfigurationType'; ofType: null; }; }; defaultValue: "TOURNAMENT" }]; };
|
|
287
|
+
'TournamentEdge': { kind: 'OBJECT'; name: 'TournamentEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; }; }; } }; }; };
|
|
288
|
+
'TournamentGameStatus': { name: 'TournamentGameStatus'; enumValues: 'ENDED' | 'STARTED' | 'WAITING'; };
|
|
289
|
+
'TournamentStep': { kind: 'OBJECT'; name: 'TournamentStep'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StepConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StepStatus'; ofType: null; }; } }; 'teamScores': { name: 'teamScores'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamScore'; ofType: null; }; }; }; } }; 'tournament': { name: 'tournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; } }; 'tournamentId': { name: 'tournamentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StepType'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
290
|
+
'TournamentStepGroup': { kind: 'OBJECT'; name: 'TournamentStepGroup'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GroupConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'rounds': { name: 'rounds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRound'; ofType: null; }; }; }; } }; 'tournamentStepId': { name: 'tournamentStepId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
291
|
+
'TournamentStepGroupRound': { kind: 'OBJECT'; name: 'TournamentStepGroupRound'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'RoundConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'games': { name: 'games'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGame'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'tournamentStepGroupId': { name: 'tournamentStepGroupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
292
|
+
'TournamentStepGroupRoundGame': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGame'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'GameConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'losingGameId': { name: 'losingGameId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'matches': { name: 'matches'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; ofType: null; }; }; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentGameStatus'; ofType: null; }; } }; 'tournamentStepGroupRoundId': { name: 'tournamentStepGroupRoundId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'winningGameId': { name: 'winningGameId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; }; };
|
|
293
|
+
'TournamentStepGroupRoundGameMatch': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MatchConfiguration'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'order': { name: 'order'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MatchStatus'; ofType: null; }; } }; 'tournamentStepGroupRoundGameId': { name: 'tournamentStepGroupRoundGameId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
294
|
+
'TournamentStepGroupRoundGameMatchEdge': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; ofType: null; }; }; }; } }; }; };
|
|
295
|
+
'TournamentStepGroupRoundGameMatchScore': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScore'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'matchId': { name: 'matchId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'score': { name: 'score'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MatchScoreStatus'; ofType: null; }; } }; 'teamId': { name: 'teamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
296
|
+
'TournamentStepGroupRoundGameMatchScoreEdge': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScoreEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScore'; ofType: null; }; }; }; } }; }; };
|
|
297
|
+
'TournamentStepGroupRoundGameMatchScores': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScores'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScoreEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchScore'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
298
|
+
'TournamentStepGroupRoundGameMatches': { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatches'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatchEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentStepGroupRoundGameMatch'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
299
|
+
'TournamentTeam': { kind: 'OBJECT'; name: 'TournamentTeam'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'customFields': { name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PropertyConfigWithValue'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'managerId': { name: 'managerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'members': { name: 'members'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamMemberDto'; ofType: null; }; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentTeamStatus'; ofType: null; }; } }; 'tag': { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'teamId': { name: 'teamId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'tournament': { name: 'tournament'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; } }; 'tournamentId': { name: 'tournamentId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
300
|
+
'TournamentTeamEdge': { kind: 'OBJECT'; name: 'TournamentTeamEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; }; }; } }; }; };
|
|
301
|
+
'TournamentTeamMemberDto': { kind: 'OBJECT'; name: 'TournamentTeamMemberDto'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'playerProfileId': { name: 'playerProfileId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentTeamMemberStatus'; ofType: null; }; } }; 'team': { name: 'team'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'tournamentTeamId': { name: 'tournamentTeamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
302
|
+
'TournamentTeamMemberEdge': { kind: 'OBJECT'; name: 'TournamentTeamMemberEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamMemberDto'; ofType: null; }; }; }; } }; }; };
|
|
303
|
+
'TournamentTeamMemberStatus': { name: 'TournamentTeamMemberStatus'; enumValues: 'ACCEPTED' | 'AWAITING' | 'DENIED'; };
|
|
304
|
+
'TournamentTeamScore': { kind: 'OBJECT'; name: 'TournamentTeamScore'; fields: { 'score': { name: 'score'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'team': { name: 'team'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; } }; 'teamId': { name: 'teamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; };
|
|
305
|
+
'TournamentTeamStatus': { name: 'TournamentTeamStatus'; enumValues: 'AWAITING_FOR_PAYMENT' | 'AWAITING_FOR_PRESENCE_CONFIRMATION' | 'CONFIRMED' | 'DENIED' | 'NOT_ATTENDING' | 'NOT_VALID' | 'REGISTERED'; };
|
|
306
|
+
'TournamentTeams': { kind: 'OBJECT'; name: 'TournamentTeams'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeamEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentTeam'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
307
|
+
'Tournaments': { kind: 'OBJECT'; name: 'Tournaments'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TournamentEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tournament'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ResponsePageInfo'; ofType: null; }; } }; 'totalCount': { name: 'totalCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
308
|
+
'TournamentsQuery': { kind: 'INPUT_OBJECT'; name: 'TournamentsQuery'; isOneOf: false; inputFields: [{ name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentsQueryOrderBy'; ofType: null; }; }; defaultValue: "START_AT" }, { name: 'orderDirection'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; }; defaultValue: "ASC" }, { name: 'showNotVisible'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentsQueryStatus'; ofType: null; }; }; defaultValue: "ALL" }]; };
|
|
309
|
+
'TournamentsQueryOrderBy': { name: 'TournamentsQueryOrderBy'; enumValues: 'END_AT' | 'REGISTRATIONS_END_AT' | 'REGISTRATIONS_START_AT' | 'START_AT'; };
|
|
310
|
+
'TournamentsQueryStatus': { name: 'TournamentsQueryStatus'; enumValues: 'ALL' | 'ENDED' | 'REGISTRATIONS_CLOSED' | 'REGISTRATIONS_ENDED' | 'REGISTRATIONS_OPEN' | 'STARTED'; };
|
|
311
|
+
'URL': unknown;
|
|
312
|
+
'UpdateLeaderboardInput': { kind: 'INPUT_OBJECT'; name: 'UpdateLeaderboardInput'; isOneOf: false; inputFields: [{ name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
313
|
+
'UpdateLeaderboardSeasonBucketInput': { kind: 'INPUT_OBJECT'; name: 'UpdateLeaderboardSeasonBucketInput'; isOneOf: false; inputFields: [{ name: 'minScore'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'scoreCalculationType'; type: { kind: 'ENUM'; name: 'LeaderboardScoreCalculationType'; ofType: null; }; defaultValue: null }]; };
|
|
314
|
+
'UpdateLeaderboardSeasonInput': { kind: 'INPUT_OBJECT'; name: 'UpdateLeaderboardSeasonInput'; isOneOf: false; inputFields: [{ name: 'end'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'start'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'startingScore'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; };
|
|
315
|
+
'UpdateMatchScoreInput': { kind: 'INPUT_OBJECT'; name: 'UpdateMatchScoreInput'; isOneOf: false; inputFields: [{ name: 'forcedScoreValue'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'status'; type: { kind: 'ENUM'; name: 'MatchScoreStatus'; ofType: null; }; defaultValue: null }, { name: 'teamId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'variables'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentMatchScoreVariablesInput'; ofType: null; }; }; }; defaultValue: null }]; };
|
|
316
|
+
'UpdateMePlayerInput': { kind: 'INPUT_OBJECT'; name: 'UpdateMePlayerInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PlayerCustomFieldInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'profilePicUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'username'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
317
|
+
'UpdateOrganizationAppInput': { kind: 'INPUT_OBJECT'; name: 'UpdateOrganizationAppInput'; isOneOf: false; inputFields: [{ name: 'consentUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'loginUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'logoutRedirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'redirectUrls'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'requiresConsent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'secret'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
318
|
+
'UpdateOrganizationIdentityProvider': { kind: 'INPUT_OBJECT'; name: 'UpdateOrganizationIdentityProvider'; isOneOf: false; inputFields: [{ name: 'allowLogin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'icon'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'oauth2Configuration'; type: { kind: 'INPUT_OBJECT'; name: 'OAuthClientConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'openidConfiguration'; type: { kind: 'INPUT_OBJECT'; name: 'OpenidConfigurationInput'; ofType: null; }; defaultValue: null }]; };
|
|
319
|
+
'UpdateOrganizationInput': { kind: 'INPUT_OBJECT'; name: 'UpdateOrganizationInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OrganizationConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
320
|
+
'UpdatePlatformInput': { kind: 'INPUT_OBJECT'; name: 'UpdatePlatformInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
321
|
+
'UpdatePlayerInput': { kind: 'INPUT_OBJECT'; name: 'UpdatePlayerInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PlayerCustomFieldInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'organizationCustomId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'profilePicUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'username'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
322
|
+
'UpdateTournamentConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentConfigurationInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'registrationConditions'; type: { kind: 'INPUT_OBJECT'; name: 'RegistrationConditionsInput'; ofType: null; }; defaultValue: null }, { name: 'teamMaxSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'teamMinSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'teamStatusAfterRegistration'; type: { kind: 'ENUM'; name: 'TeamStatusAfterRegistration'; ofType: null; }; defaultValue: null }, { name: 'teamsCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'ConfigurationType'; ofType: null; }; defaultValue: "TOURNAMENT" }]; };
|
|
323
|
+
'UpdateTournamentConfigurationOrImportFromIdInput': { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentConfigurationOrImportFromIdInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'fromId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
324
|
+
'UpdateTournamentInput': { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentConfigurationOrImportFromIdInput'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'startAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'startRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }, { name: 'title'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; defaultValue: null }]; };
|
|
325
|
+
'UpdateTournamentMatchScoreVariablesInput': { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentMatchScoreVariablesInput'; isOneOf: false; inputFields: [{ name: 'formulaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
326
|
+
'UpdateTournamentTeamInput': { kind: 'INPUT_OBJECT'; name: 'UpdateTournamentTeamInput'; isOneOf: false; inputFields: [{ name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'tag'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
327
|
+
'UpdateWebhookInput': { kind: 'INPUT_OBJECT'; name: 'UpdateWebhookInput'; isOneOf: false; inputFields: [{ name: 'active'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'events'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'WebhookEventType'; ofType: null; }; }; }; defaultValue: null }, { name: 'url'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
328
|
+
'Variable': { kind: 'OBJECT'; name: 'Variable'; fields: { 'defaultValue': { name: 'defaultValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
329
|
+
'VariableInput': { kind: 'INPUT_OBJECT'; name: 'VariableInput'; isOneOf: false; inputFields: [{ name: 'defaultValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
330
|
+
'Void': unknown;
|
|
331
|
+
'Webhook': { kind: 'OBJECT'; name: 'Webhook'; fields: { 'active': { name: 'active'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'events': { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'WebhookEventType'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'secret': { name: 'secret'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
332
|
+
'WebhookEventConfiguration': { kind: 'OBJECT'; name: 'WebhookEventConfiguration'; fields: { 'answerPayload': { name: 'answerPayload'; type: { kind: 'OBJECT'; name: 'WebhookEventConfigurationProperties'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payload': { name: 'payload'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WebhookEventConfigurationProperties'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'WebhookEventType'; ofType: null; }; } }; }; };
|
|
333
|
+
'WebhookEventConfigurationProperties': { kind: 'OBJECT'; name: 'WebhookEventConfigurationProperties'; fields: { 'array': { name: 'array'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'example': { name: 'example'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'optional': { name: 'optional'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'properties': { name: 'properties'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WebhookEventConfigurationProperties'; ofType: null; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
334
|
+
'WebhookEventType': { name: 'WebhookEventType'; enumValues: 'TOURNAMENT_TEAM_ATTENDANCE_UPDATED' | 'TOURNAMENT_TEAM_CONFIRMATION_UPDATED' | 'TOURNAMENT_TEAM_DELETED' | 'TOURNAMENT_TEAM_DELETED_ADMIN' | 'TOURNAMENT_TEAM_STATUS_UPDATED'; };
|
|
335
|
+
};
|
|
336
|
+
|
|
337
|
+
declare type MatchWithTeams = BaseMatch & {
|
|
338
|
+
teamScores: TeamScore[];
|
|
339
|
+
};
|
|
340
|
+
|
|
341
|
+
export { readFragment }
|
|
342
|
+
|
|
343
|
+
export { ResultOf }
|
|
344
|
+
|
|
345
|
+
export declare const RichTextEditorContent: ({ content, style, }: {
|
|
346
|
+
content: string;
|
|
347
|
+
style?: React.CSSProperties;
|
|
348
|
+
}) => JSX_2.Element;
|
|
349
|
+
|
|
350
|
+
declare type RoundWithGames = Omit<BaseRound, "games"> & {
|
|
351
|
+
games: GameWithMatches[];
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
declare type TeamScore = ReturnType<typeof useTournamentTeams>["results"][0] & {
|
|
355
|
+
score: number;
|
|
356
|
+
};
|
|
357
|
+
|
|
358
|
+
declare const TOURNAMENT_STEP_SHAPE_QUERY: TadaDocumentNode< {
|
|
359
|
+
tournamentStepGeneratedShape: {
|
|
360
|
+
id: string;
|
|
361
|
+
name: string;
|
|
362
|
+
rounds: {
|
|
363
|
+
id: string;
|
|
364
|
+
name: string;
|
|
365
|
+
order: number;
|
|
366
|
+
games: {
|
|
367
|
+
id: string;
|
|
368
|
+
order: number;
|
|
369
|
+
matches: {
|
|
370
|
+
id: string;
|
|
371
|
+
order: number;
|
|
372
|
+
status: "ENDED" | "STARTED" | "WAITING";
|
|
373
|
+
}[];
|
|
374
|
+
}[];
|
|
375
|
+
}[];
|
|
376
|
+
}[];
|
|
377
|
+
}, {
|
|
378
|
+
stepId: string;
|
|
379
|
+
}, void>;
|
|
380
|
+
|
|
381
|
+
declare const TOURNAMENT_TEAM_QUERY: TadaDocumentNode< {
|
|
382
|
+
tournamentTeams: {
|
|
383
|
+
pageInfo: {
|
|
384
|
+
endCursor: string | null;
|
|
385
|
+
hasNextPage: boolean;
|
|
386
|
+
};
|
|
387
|
+
nodes: {
|
|
388
|
+
id: string;
|
|
389
|
+
name: string;
|
|
390
|
+
status: "AWAITING_FOR_PAYMENT" | "AWAITING_FOR_PRESENCE_CONFIRMATION" | "CONFIRMED" | "DENIED" | "NOT_ATTENDING" | "NOT_VALID" | "REGISTERED";
|
|
391
|
+
members: {
|
|
392
|
+
status: "ACCEPTED" | "DENIED" | "AWAITING";
|
|
393
|
+
playerProfileId: string;
|
|
394
|
+
}[];
|
|
395
|
+
}[];
|
|
396
|
+
};
|
|
397
|
+
}, {
|
|
398
|
+
status?: "AWAITING_FOR_PAYMENT" | "AWAITING_FOR_PRESENCE_CONFIRMATION" | "CONFIRMED" | "DENIED" | "NOT_ATTENDING" | "NOT_VALID" | "REGISTERED" | null | undefined;
|
|
399
|
+
page: {
|
|
400
|
+
first?: number | null | undefined;
|
|
401
|
+
after?: string | null | undefined;
|
|
402
|
+
};
|
|
403
|
+
tournamentId: string;
|
|
404
|
+
}, void>;
|
|
405
|
+
|
|
406
|
+
export declare const useOrganization: () => {
|
|
407
|
+
loading: boolean;
|
|
408
|
+
error: ApolloError | undefined;
|
|
409
|
+
data: {
|
|
410
|
+
organization: {
|
|
411
|
+
id: string;
|
|
412
|
+
identityProviders: {
|
|
413
|
+
name: string;
|
|
414
|
+
id: string;
|
|
415
|
+
}[];
|
|
416
|
+
};
|
|
417
|
+
} | undefined;
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* Fetches all results from a paginated query
|
|
422
|
+
* @param query The query to fetch
|
|
423
|
+
* @param options The options for the query
|
|
424
|
+
*/
|
|
425
|
+
export declare const usePaginatedLoadAll: <TNodeChild, TData, TVariables>(query: TypedDocumentNode<TData, TVariables> | TadaDocumentNode<TData, TVariables>, options?: LazyQueryHookOptions<NoInfer_2<TData>, NoInfer_2<Omit<TVariables, "page">>> & {
|
|
426
|
+
skip?: boolean;
|
|
427
|
+
onResults?: (results: TNodeChild[]) => void;
|
|
428
|
+
}) => {
|
|
429
|
+
loading: boolean;
|
|
430
|
+
results: TNodeChild[];
|
|
431
|
+
refetch: (variables?: NoInfer_2<Omit<TVariables, "page">>) => Promise<TNodeChild[]>;
|
|
432
|
+
};
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Fetches a paginated query and provides methods to fetch more data
|
|
436
|
+
* @param query The query to fetch
|
|
437
|
+
* @param options The options for the query
|
|
438
|
+
*/
|
|
439
|
+
export declare const usePaginatedQuery: <TNodeChild, TData, TVariables>(query: TypedDocumentNode<TData, TVariables> | TadaDocumentNode<TData, TVariables>, options?: LazyQueryHookOptions<NoInfer_2<TData>, NoInfer_2<Omit<TVariables, "page">>> & {
|
|
440
|
+
skip?: boolean;
|
|
441
|
+
onResults?: (results: TNodeChild[]) => void;
|
|
442
|
+
pageSize?: number;
|
|
443
|
+
}) => {
|
|
444
|
+
data: TData | undefined;
|
|
445
|
+
loading: boolean;
|
|
446
|
+
loadNextPage: (variables?: NoInfer_2<Omit<TVariables, "page">>) => Promise<ApolloQueryResult<TData>> | undefined;
|
|
447
|
+
loadNextPageWithoutAppendingOldData: (variables?: NoInfer_2<Omit<TVariables, "page">>) => Promise<ApolloQueryResult<TData>>;
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
export declare const usePlayers: ({ playerIds, skip, }: {
|
|
451
|
+
playerIds?: string[];
|
|
452
|
+
skip?: boolean;
|
|
453
|
+
}) => {
|
|
454
|
+
results: {
|
|
455
|
+
id: string;
|
|
456
|
+
username: string;
|
|
457
|
+
ownerId: string | null;
|
|
458
|
+
customFields: {
|
|
459
|
+
property: string;
|
|
460
|
+
value: string;
|
|
461
|
+
}[];
|
|
462
|
+
identities: {
|
|
463
|
+
properties: {
|
|
464
|
+
property: string;
|
|
465
|
+
value: string;
|
|
466
|
+
}[];
|
|
467
|
+
}[] | null;
|
|
468
|
+
}[];
|
|
469
|
+
refetch: (playerIds: string[]) => Promise<void>;
|
|
470
|
+
loading: boolean;
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export declare const useTournamentStep: ({ tournamentId, stepId, skip, }: {
|
|
474
|
+
stepId: string;
|
|
475
|
+
skip?: boolean;
|
|
476
|
+
tournamentId: string;
|
|
477
|
+
}) => {
|
|
478
|
+
loading: boolean;
|
|
479
|
+
groups: Group[] | undefined;
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Fetches all teams for a tournament
|
|
484
|
+
* @param tournamentId The ID of the tournament
|
|
485
|
+
* @param skip Whether to skip fetching the data or not
|
|
486
|
+
* @param status The status of the teams to fetch
|
|
487
|
+
*/
|
|
488
|
+
export declare const useTournamentTeams: ({ tournamentId, skip, status, }: {
|
|
489
|
+
tournamentId: string;
|
|
490
|
+
skip?: boolean;
|
|
491
|
+
status?: VariablesOf<typeof TOURNAMENT_TEAM_QUERY>[`status`];
|
|
492
|
+
}) => {
|
|
493
|
+
results: (Omit<ResultOf<typeof TOURNAMENT_TEAM_QUERY>["tournamentTeams"]["nodes"][0], "members"> & {
|
|
494
|
+
members: (ResultOf<typeof TOURNAMENT_TEAM_QUERY>["tournamentTeams"]["nodes"][0]["members"][0] & {
|
|
495
|
+
player: ReturnType<typeof usePlayers>["results"][0];
|
|
496
|
+
})[];
|
|
497
|
+
})[];
|
|
498
|
+
loading: boolean;
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
export declare const useWellPlayed: () => {
|
|
502
|
+
organizationId: string;
|
|
503
|
+
};
|
|
504
|
+
|
|
505
|
+
export { VariablesOf }
|
|
506
|
+
|
|
507
|
+
export declare const WellPlayedProvider: ({ children, oidcConfig, wpAppConfig, ...configs }: PropsWithChildren<WPConfigProps>) => JSX_2.Element;
|
|
508
|
+
|
|
509
|
+
declare type WPConfigProps = {
|
|
510
|
+
/**
|
|
511
|
+
* The organization id from the Well Played Console
|
|
512
|
+
*/
|
|
513
|
+
organizationId: string;
|
|
514
|
+
/**
|
|
515
|
+
* Application configurations from the Well Played Console
|
|
516
|
+
*
|
|
517
|
+
* @see https://console.well-played.gg/apps
|
|
518
|
+
*/
|
|
519
|
+
wpAppConfig: {
|
|
520
|
+
/**
|
|
521
|
+
* The client id of the application
|
|
522
|
+
*/
|
|
523
|
+
client_id: string;
|
|
524
|
+
/**
|
|
525
|
+
* The redirect uri of the application (should be the same as the one configured on the Well Played Console)
|
|
526
|
+
*/
|
|
527
|
+
redirect_uri: string;
|
|
528
|
+
/**
|
|
529
|
+
* The scope of the application (if you want to refresh the token and maintain the session, you should add `offline_access`)
|
|
530
|
+
*/
|
|
531
|
+
scope: string;
|
|
532
|
+
};
|
|
533
|
+
/**
|
|
534
|
+
* OIDC configurations
|
|
535
|
+
*/
|
|
536
|
+
oidcConfig?: Omit<OidcProviderProps, "configuration"> & {
|
|
537
|
+
configuration: Omit<OidcConfiguration, "client_id" | "redirect_uri" | "scope" | "response_type" | "authority" | "authority_configuration" | "authority_timeout_wellknowurl_in_millisecond" | "authority_time_cache_wellknowurl_in_second">;
|
|
538
|
+
};
|
|
539
|
+
/**
|
|
540
|
+
* GraphQL client configurations
|
|
541
|
+
*/
|
|
542
|
+
clientConfig?: Omit<ClientProps, "token">;
|
|
543
|
+
};
|
|
544
|
+
|
|
545
|
+
export { }
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
declare module 'gql.tada' {
|
|
550
|
+
interface setupSchema {
|
|
551
|
+
introspection: introspection
|
|
552
|
+
}
|
|
553
|
+
}
|