@well-played.gg/react-sdk 1.18.0 → 2.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/dist/index.d.ts +4 -413
- package/dist/wp-react-sdk.cjs.js +49 -253
- package/dist/wp-react-sdk.es.js +18501 -39648
- package/dist/wp-react-sdk.umd.js +49 -253
- package/package.json +6 -24
- package/CHANGELOG.md +0 -0
- package/LICENSE +0 -21
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
|
+
import { ApiBaseUrl } from '@well-played.gg/typescript-sdk';
|
|
1
2
|
import { ApolloClient } from '@apollo/client';
|
|
2
3
|
import { ApolloQueryResult } from '@apollo/client';
|
|
3
|
-
import {
|
|
4
|
-
import { EventClosedListener } from 'graphql-ws';
|
|
5
|
-
import { EventConnectedListener } from 'graphql-ws';
|
|
6
|
-
import { EventErrorListener } from 'graphql-ws';
|
|
7
|
-
import { FetchPolicy } from '@apollo/client';
|
|
8
|
-
import { FragmentOf } from 'gql.tada';
|
|
9
|
-
import { initGraphQLTada } from 'gql.tada';
|
|
10
|
-
import { InvalidationPolicies } from '@nerdwallet/apollo-cache-policies/dist/policies/types';
|
|
4
|
+
import { ClientProps } from '@well-played.gg/typescript-sdk';
|
|
11
5
|
import { JSX } from 'react/jsx-runtime';
|
|
12
6
|
import { LazyQueryHookOptions } from '@apollo/client/react/types/types';
|
|
13
7
|
import { NoInfer as NoInfer_2 } from '@apollo/client/react/types/types';
|
|
@@ -15,14 +9,11 @@ import { NormalizedCacheObject } from '@apollo/client';
|
|
|
15
9
|
import { OidcConfiguration } from '@axa-fr/oidc-client';
|
|
16
10
|
import { OidcProviderProps } from '@axa-fr/react-oidc';
|
|
17
11
|
import { PropsWithChildren } from 'react';
|
|
18
|
-
import {
|
|
19
|
-
import { ResultOf } from 'gql.tada';
|
|
12
|
+
import { ResultOf } from '@well-played.gg/typescript-sdk';
|
|
20
13
|
import { StringMap } from '@axa-fr/react-oidc';
|
|
21
14
|
import { TadaDocumentNode } from 'gql.tada';
|
|
22
15
|
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
23
|
-
import { VariablesOf } from '
|
|
24
|
-
|
|
25
|
-
declare type ApiBaseUrl = "well-played.gg" | "stg.well-played.gg";
|
|
16
|
+
import { VariablesOf } from '@well-played.gg/typescript-sdk';
|
|
26
17
|
|
|
27
18
|
declare type BaseGame = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0]["rounds"][0]["games"][0];
|
|
28
19
|
|
|
@@ -32,408 +23,18 @@ declare type BaseMatch = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamen
|
|
|
32
23
|
|
|
33
24
|
declare type BaseRound = ResultOf<typeof TOURNAMENT_STEP_SHAPE_QUERY>["tournamentStepGeneratedShape"][0]["rounds"][0];
|
|
34
25
|
|
|
35
|
-
declare type ClientProps = {
|
|
36
|
-
token?: string;
|
|
37
|
-
organizationId: string;
|
|
38
|
-
invalidationPolicies?: InvalidationPolicies;
|
|
39
|
-
fetchPolicy?: FetchPolicy;
|
|
40
|
-
handlers?: {
|
|
41
|
-
onError?: ErrorHandler;
|
|
42
|
-
webSocket?: {
|
|
43
|
-
onConnected?: EventConnectedListener;
|
|
44
|
-
onClosed?: EventClosedListener;
|
|
45
|
-
onError?: EventErrorListener;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
websocket?: {
|
|
49
|
-
lazy?: boolean;
|
|
50
|
-
};
|
|
51
|
-
apiBaseUrl?: ApiBaseUrl;
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
export { FragmentOf }
|
|
55
|
-
|
|
56
26
|
declare type GameWithMatches = Omit<BaseGame, "matches"> & {
|
|
57
27
|
matches: MatchWithTeams[];
|
|
58
28
|
};
|
|
59
29
|
|
|
60
|
-
export declare const graphql: initGraphQLTada<{
|
|
61
|
-
introspection: introspection;
|
|
62
|
-
scalars: {
|
|
63
|
-
ID: string;
|
|
64
|
-
DateTime: string;
|
|
65
|
-
};
|
|
66
|
-
}>;
|
|
67
|
-
|
|
68
30
|
declare type Group = Omit<BaseGroup, "rounds"> & {
|
|
69
31
|
rounds: RoundWithGames[];
|
|
70
32
|
};
|
|
71
33
|
|
|
72
|
-
/** An IntrospectionQuery representation of your schema.
|
|
73
|
-
*
|
|
74
|
-
* @remarks
|
|
75
|
-
* This is an introspection of your schema saved as a file by GraphQLSP.
|
|
76
|
-
* It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
|
|
77
|
-
* If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
|
|
78
|
-
* instead save to a .ts instead of a .d.ts file.
|
|
79
|
-
*/
|
|
80
|
-
export declare type introspection = {
|
|
81
|
-
name: never;
|
|
82
|
-
query: 'Query';
|
|
83
|
-
mutation: 'Mutation';
|
|
84
|
-
subscription: 'Subscription';
|
|
85
|
-
types: introspection_types;
|
|
86
|
-
};
|
|
87
|
-
|
|
88
|
-
export declare type introspection_types = {
|
|
89
|
-
'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; }; }; }; } }; }; };
|
|
90
|
-
'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; }; } }; }; };
|
|
91
|
-
'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; }; } }; }; };
|
|
92
|
-
'AggregationType': { name: 'AggregationType'; enumValues: 'AVG' | 'MAX' | 'MIN' | 'SUM'; };
|
|
93
|
-
'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 }]; };
|
|
94
|
-
'Boolean': unknown;
|
|
95
|
-
'BucketDuration': { name: 'BucketDuration'; enumValues: 'DAILY' | 'HOUR' | 'MINUTE' | 'MONTHLY' | 'YEARLY'; };
|
|
96
|
-
'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; } }; }; };
|
|
97
|
-
'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 }]; };
|
|
98
|
-
'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; }; } }; }; };
|
|
99
|
-
'ConfigurationProperties': { kind: 'UNION'; name: 'ConfigurationProperties'; fields: {}; possibleTypes: 'StepConfiguration' | 'TournamentConfiguration'; };
|
|
100
|
-
'ConfigurationType': { name: 'ConfigurationType'; enumValues: 'STEP' | 'TOURNAMENT'; };
|
|
101
|
-
'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 }]; };
|
|
102
|
-
'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 }]; };
|
|
103
|
-
'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 }]; };
|
|
104
|
-
'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 }]; };
|
|
105
|
-
'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 }]; };
|
|
106
|
-
'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 }]; };
|
|
107
|
-
'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 }]; };
|
|
108
|
-
'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 }]; };
|
|
109
|
-
'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 }]; };
|
|
110
|
-
'CreatePlatformTemplateInput': { kind: 'INPUT_OBJECT'; name: 'CreatePlatformTemplateInput'; 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: 'public'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'screenshotUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; }; defaultValue: null }]; };
|
|
111
|
-
'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 }]; };
|
|
112
|
-
'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 }]; };
|
|
113
|
-
'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 }]; };
|
|
114
|
-
'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 }]; };
|
|
115
|
-
'Currencies': { name: 'Currencies'; enumValues: 'EUR' | 'GBP' | 'USD'; };
|
|
116
|
-
'CustomDomainData': { kind: 'OBJECT'; name: 'CustomDomainData'; fields: { 'hostname': { name: 'hostname'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownership_verification': { name: 'ownership_verification'; type: { 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: 'ENUM'; name: 'CustomDomainStatus'; ofType: null; } }; 'verification_errors': { name: 'verification_errors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; } }; }; };
|
|
117
|
-
'CustomDomainOwnershipVerification': { kind: 'OBJECT'; name: 'CustomDomainOwnershipVerification'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
118
|
-
'CustomDomainSsl': { kind: 'OBJECT'; name: 'CustomDomainSsl'; fields: { 'status': { name: 'status'; type: { kind: 'ENUM'; name: 'CustomDomainValidationStatus'; ofType: null; } }; 'validation_errors': { name: 'validation_errors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainSslValidationError'; ofType: null; }; }; } }; 'validation_records': { name: 'validation_records'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CustomDomainSslValidationRecord'; ofType: null; }; }; } }; }; };
|
|
119
|
-
'CustomDomainSslValidationError': { kind: 'OBJECT'; name: 'CustomDomainSslValidationError'; fields: { 'message': { name: 'message'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
120
|
-
'CustomDomainSslValidationRecord': { kind: 'OBJECT'; name: 'CustomDomainSslValidationRecord'; fields: { 'txt_name': { name: 'txt_name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'txt_value': { name: 'txt_value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
121
|
-
'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'; };
|
|
122
|
-
'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'; };
|
|
123
|
-
'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 }]; };
|
|
124
|
-
'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; }; } }; }; };
|
|
125
|
-
'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 }]; };
|
|
126
|
-
'DateTime': unknown;
|
|
127
|
-
'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 }]; };
|
|
128
|
-
'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 }]; };
|
|
129
|
-
'EmailAddress': unknown;
|
|
130
|
-
'Event': { kind: 'OBJECT'; name: 'Event'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'EventConfiguration'; 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; }; } }; 'decryptionKey': { name: 'decryptionKey'; 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; }; } }; 'endAt': { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'endRegistrationsAt': { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'eventVenueId': { name: 'eventVenueId'; type: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; 'startAt': { name: 'startAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'startRegistrationsAt': { name: 'startRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'title': { name: 'title'; 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; }; } }; 'venue': { name: 'venue'; type: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; } }; 'visibleAt': { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; }; };
|
|
131
|
-
'EventConfiguration': { kind: 'OBJECT'; name: 'EventConfiguration'; fields: { 'customFields': { name: 'customFields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Property'; ofType: null; }; }; } }; 'maxGroupSize': { name: 'maxGroupSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'maxTicketsPerReservation': { name: 'maxTicketsPerReservation'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'registrationConditions': { name: 'registrationConditions'; type: { kind: 'OBJECT'; name: 'RegistrationConditions'; ofType: null; } }; 'reservationStatusAfterRegistration': { name: 'reservationStatusAfterRegistration'; type: { kind: 'ENUM'; name: 'EventReservationStatusAfterRegistration'; ofType: null; } }; 'sessionDuration': { name: 'sessionDuration'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
|
|
132
|
-
'EventConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'EventConfigurationInput'; 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: 'maxGroupSize'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'maxTicketsPerReservation'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'registrationConditions'; type: { kind: 'INPUT_OBJECT'; name: 'RegistrationConditionsInput'; ofType: null; }; defaultValue: null }, { name: 'reservationStatusAfterRegistration'; type: { kind: 'ENUM'; name: 'EventReservationStatusAfterRegistration'; ofType: null; }; defaultValue: null }, { name: 'sessionDuration'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }]; };
|
|
133
|
-
'EventCreateInput': { kind: 'INPUT_OBJECT'; name: 'EventCreateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'EventConfigurationInput'; 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: 'eventVenueId'; type: { kind: 'SCALAR'; name: 'ID'; 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 }]; };
|
|
134
|
-
'EventEdge': { kind: 'OBJECT'; name: 'EventEdge'; 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: 'Event'; ofType: null; }; }; }; } }; }; };
|
|
135
|
-
'EventInterface': { kind: 'INTERFACE'; name: 'EventInterface'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'EventConfiguration'; 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; }; } }; 'decryptionKey': { name: 'decryptionKey'; 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; }; } }; 'endAt': { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'endRegistrationsAt': { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'eventVenueId': { name: 'eventVenueId'; type: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; 'startAt': { name: 'startAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'startRegistrationsAt': { name: 'startRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'title': { name: 'title'; 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; }; } }; 'venue': { name: 'venue'; type: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; } }; 'visibleAt': { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; }; possibleTypes: 'Event' | 'EventWithUserReservation'; };
|
|
136
|
-
'EventReservation': { kind: 'OBJECT'; name: 'EventReservation'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'eventId': { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; 'sessionValidUntil': { name: 'sessionValidUntil'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'EventReservationStatus'; ofType: null; }; } }; 'tickets': { name: 'tickets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservationTicket'; ofType: null; }; }; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
137
|
-
'EventReservationRegisterTicketInput': { kind: 'INPUT_OBJECT'; name: 'EventReservationRegisterTicketInput'; isOneOf: false; inputFields: [{ name: 'quantity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'reservedSeats'; 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 }, { name: 'ticketConfigurationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
138
|
-
'EventReservationRegisterTicketsInput': { kind: 'INPUT_OBJECT'; name: 'EventReservationRegisterTicketsInput'; isOneOf: false; inputFields: [{ name: 'tickets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventReservationRegisterTicketInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
139
|
-
'EventReservationStatus': { name: 'EventReservationStatus'; enumValues: 'CONFIRMED' | 'DENIED' | 'GROUP_NOT_VALID' | 'NOT_ATTENDING' | 'PAYMENT_FAILED' | 'PAYMENT_PENDING' | 'PAYMENT_REFUNDED' | 'PENDING' | 'PRESENCE_CONFIRMATION_PENDING' | 'REGISTERED' | 'SESSION_EXPIRED'; };
|
|
140
|
-
'EventReservationStatusAfterRegistration': { name: 'EventReservationStatusAfterRegistration'; enumValues: 'CONFIRMED' | 'PRESENCE_CONFIRMATION_PENDING' | 'REGISTERED'; };
|
|
141
|
-
'EventReservationTicket': { kind: 'OBJECT'; name: 'EventReservationTicket'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'groupMemberId': { name: 'groupMemberId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'reservationId': { name: 'reservationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'seatId': { name: 'seatId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'ticketId': { name: 'ticketId'; 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; }; } }; }; };
|
|
142
|
-
'EventReservationTicketWithQrCode': { kind: 'OBJECT'; name: 'EventReservationTicketWithQrCode'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'groupMemberId': { name: 'groupMemberId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'qrCode': { name: 'qrCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'reservationId': { name: 'reservationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'seatId': { name: 'seatId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'ticketId': { name: 'ticketId'; 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; }; } }; }; };
|
|
143
|
-
'EventReservationValidateAndPay': { kind: 'OBJECT'; name: 'EventReservationValidateAndPay'; fields: { 'clientSecret': { name: 'clientSecret'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'paymentUrl': { name: 'paymentUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
144
|
-
'EventReservationValidateAndPayInput': { kind: 'INPUT_OBJECT'; name: 'EventReservationValidateAndPayInput'; isOneOf: false; inputFields: [{ name: 'canceledUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'returnUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'successUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'uiMode'; type: { kind: 'ENUM'; name: 'StripeUiMode'; ofType: null; }; defaultValue: null }]; };
|
|
145
|
-
'EventReservationWithTicketsAndQrCode': { kind: 'OBJECT'; name: 'EventReservationWithTicketsAndQrCode'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'eventId': { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; 'sessionValidUntil': { name: 'sessionValidUntil'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'EventReservationStatus'; ofType: null; }; } }; 'tickets': { name: 'tickets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservationTicketWithQrCode'; ofType: null; }; }; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
146
|
-
'EventReservations': { kind: 'OBJECT'; name: 'EventReservations'; 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: 'OmitObjectTypeEdge'; 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: 'OmitObjectType'; 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; } }; }; };
|
|
147
|
-
'EventReservationsQueryInput': { kind: 'INPUT_OBJECT'; name: 'EventReservationsQueryInput'; isOneOf: false; inputFields: [{ name: 'filterByPlayerIdentityProviderProperties'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IdentityProviderPropertyInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'filterByPlayerProperties'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'filterByPlayerUsernameQuery'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'filterByPlayers'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventReservationsQueryPlayerIdWithGroupStatusInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'filterByRegistrationStatus'; type: { kind: 'ENUM'; name: 'EventReservationStatus'; ofType: null; }; defaultValue: null }, { name: 'filterByReservationProperties'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PropertyValueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'retrieveOnlyGroupMembersWithStatus'; type: { kind: 'ENUM'; name: 'UserGroupMemberStatus'; ofType: null; }; defaultValue: null }]; };
|
|
148
|
-
'EventReservationsQueryPlayerIdWithGroupStatusInput': { kind: 'INPUT_OBJECT'; name: 'EventReservationsQueryPlayerIdWithGroupStatusInput'; isOneOf: false; inputFields: [{ name: 'memberStatus'; type: { kind: 'ENUM'; name: 'UserGroupMemberStatus'; ofType: null; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
149
|
-
'EventSeat': { kind: 'OBJECT'; name: 'EventSeat'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatConfiguration'; 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; }; } }; 'reservedByTicketId': { name: 'reservedByTicketId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'seatTypeId': { name: 'seatTypeId'; 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: 'EventSeatStatus'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
150
|
-
'EventSeatEdge': { kind: 'OBJECT'; name: 'EventSeatEdge'; 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: 'EventSeat'; ofType: null; }; }; }; } }; }; };
|
|
151
|
-
'EventSeatStatus': { name: 'EventSeatStatus'; enumValues: 'AVAILABLE' | 'RESERVED' | 'SOLD'; };
|
|
152
|
-
'EventSeats': { kind: 'OBJECT'; name: 'EventSeats'; 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: 'EventSeatEdge'; 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: 'EventSeat'; 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
|
-
'EventTicketConfiguration': { kind: 'OBJECT'; name: 'EventTicketConfiguration'; fields: { 'buyable': { name: 'buyable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'currency': { name: 'currency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'Currencies'; ofType: null; }; } }; 'currentCount': { name: 'currentCount'; 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; }; } }; 'eventId': { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'maxCount': { name: 'maxCount'; 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; }; } }; 'price': { name: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'seatTypeId': { name: 'seatTypeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
154
|
-
'EventTicketConfigurationCreateInput': { kind: 'INPUT_OBJECT'; name: 'EventTicketConfigurationCreateInput'; isOneOf: false; inputFields: [{ name: 'buyable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'currency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'Currencies'; ofType: null; }; }; defaultValue: null }, { name: 'description'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'maxCount'; 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: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'seatTypeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
155
|
-
'EventTicketConfigurationUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventTicketConfigurationUpdateInput'; isOneOf: false; inputFields: [{ name: 'buyable'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'currency'; type: { kind: 'ENUM'; name: 'Currencies'; ofType: null; }; defaultValue: null }, { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'maxCount'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'seatTypeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
156
|
-
'EventUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventUpdateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'EventConfigurationInput'; 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: 'eventVenueId'; type: { kind: 'SCALAR'; name: 'ID'; 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 }]; };
|
|
157
|
-
'EventVenue': { kind: 'OBJECT'; name: 'EventVenue'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'city': { name: 'city'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueConfiguration'; ofType: null; }; } }; 'country': { name: 'country'; 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; }; } }; '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; }; } }; 'postalCode': { name: 'postalCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'state': { name: 'state'; 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; }; } }; }; };
|
|
158
|
-
'EventVenueConfiguration': { kind: 'OBJECT'; name: 'EventVenueConfiguration'; fields: { 'imageUrl': { name: 'imageUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
159
|
-
'EventVenueConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueConfigurationInput'; isOneOf: false; inputFields: [{ name: 'imageUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
160
|
-
'EventVenueCreateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueCreateInput'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'city'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'country'; 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: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'postalCode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'state'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
|
|
161
|
-
'EventVenueEdge': { kind: 'OBJECT'; name: 'EventVenueEdge'; 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: 'EventVenue'; ofType: null; }; }; }; } }; }; };
|
|
162
|
-
'EventVenueSeat': { kind: 'OBJECT'; name: 'EventVenueSeat'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatConfiguration'; 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; }; } }; 'seatTypeId': { name: 'seatTypeId'; 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; }; } }; }; };
|
|
163
|
-
'EventVenueSeatConfiguration': { kind: 'OBJECT'; name: 'EventVenueSeatConfiguration'; fields: { 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'svgUrl': { name: 'svgUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
164
|
-
'EventVenueSeatConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatConfigurationInput'; isOneOf: false; inputFields: [{ name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionInput'; ofType: null; }; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'svgUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
165
|
-
'EventVenueSeatCreateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatCreateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatConfigurationInput'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'seatTypeId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }]; };
|
|
166
|
-
'EventVenueSeatEdge': { kind: 'OBJECT'; name: 'EventVenueSeatEdge'; 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: 'EventVenueSeat'; ofType: null; }; }; }; } }; }; };
|
|
167
|
-
'EventVenueSeatType': { kind: 'OBJECT'; name: 'EventVenueSeatType'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatTypeConfiguration'; 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; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'venueId': { name: 'venueId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; };
|
|
168
|
-
'EventVenueSeatTypeConfiguration': { kind: 'OBJECT'; name: 'EventVenueSeatTypeConfiguration'; fields: { 'nonce': { name: 'nonce'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
169
|
-
'EventVenueSeatTypeConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatTypeConfigurationInput'; isOneOf: false; inputFields: [{ name: 'nonce'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
170
|
-
'EventVenueSeatTypeCreateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatTypeCreateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatTypeConfigurationInput'; 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 }]; };
|
|
171
|
-
'EventVenueSeatTypeEdge': { kind: 'OBJECT'; name: 'EventVenueSeatTypeEdge'; 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: 'EventVenueSeatType'; ofType: null; }; }; }; } }; }; };
|
|
172
|
-
'EventVenueSeatTypeUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatTypeUpdateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatTypeConfigurationInput'; 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 }]; };
|
|
173
|
-
'EventVenueSeatTypes': { kind: 'OBJECT'; name: 'EventVenueSeatTypes'; 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: 'EventVenueSeatTypeEdge'; 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: 'EventVenueSeatType'; 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; } }; }; };
|
|
174
|
-
'EventVenueSeatUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatUpdateInput'; isOneOf: false; inputFields: [{ name: 'configuration'; type: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatConfigurationInput'; ofType: null; }; defaultValue: null }, { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'seatTypeId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
175
|
-
'EventVenueSeats': { kind: 'OBJECT'; name: 'EventVenueSeats'; 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: 'EventVenueSeatEdge'; 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: 'EventVenueSeat'; 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; } }; }; };
|
|
176
|
-
'EventVenueSeatsUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatsUpdateInput'; isOneOf: false; inputFields: [{ name: 'createSeats'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatCreateInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'deleteSeats'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'updateSeats'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventVenueSeatUpdateInput'; ofType: null; }; }; }; defaultValue: null }]; };
|
|
177
|
-
'EventVenueSeatsUpdateResult': { kind: 'OBJECT'; name: 'EventVenueSeatsUpdateResult'; fields: { 'createdSeats': { name: 'createdSeats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeat'; ofType: null; }; }; }; } }; 'deletedSeats': { name: 'deletedSeats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeat'; ofType: null; }; }; }; } }; 'updatedSeats': { name: 'updatedSeats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeat'; ofType: null; }; }; }; } }; }; };
|
|
178
|
-
'EventVenueUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EventVenueUpdateInput'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'city'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'country'; type: { kind: 'SCALAR'; name: 'String'; 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: 'postalCode'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'state'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
|
|
179
|
-
'EventVenues': { kind: 'OBJECT'; name: 'EventVenues'; 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: 'EventVenueEdge'; 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: 'EventVenue'; 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; } }; }; };
|
|
180
|
-
'EventWithUserReservation': { kind: 'OBJECT'; name: 'EventWithUserReservation'; fields: { 'configuration': { name: 'configuration'; type: { kind: 'OBJECT'; name: 'EventConfiguration'; 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; }; } }; 'decryptionKey': { name: 'decryptionKey'; 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; }; } }; 'endAt': { name: 'endAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'endRegistrationsAt': { name: 'endRegistrationsAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'eventVenueId': { name: 'eventVenueId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'myReservation': { name: 'myReservation'; type: { kind: 'OBJECT'; name: 'EventReservationWithTicketsAndQrCode'; 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; } }; 'title': { name: 'title'; 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; }; } }; 'venue': { name: 'venue'; type: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; } }; 'visibleAt': { name: 'visibleAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; }; };
|
|
181
|
-
'Events': { kind: 'OBJECT'; name: 'Events'; 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: 'EventEdge'; 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: 'Event'; 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; } }; }; };
|
|
182
|
-
'EventsQuery': { kind: 'INPUT_OBJECT'; name: 'EventsQuery'; isOneOf: false; inputFields: [{ name: 'filterByPlayers'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EventsQueryPlayerIdWithTeamStatusInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'EventsQueryOrderBy'; 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: 'EventsQueryStatus'; ofType: null; }; }; defaultValue: "ALL" }]; };
|
|
183
|
-
'EventsQueryOrderBy': { name: 'EventsQueryOrderBy'; enumValues: 'END_AT' | 'REGISTRATIONS_END_AT' | 'REGISTRATIONS_START_AT' | 'START_AT'; };
|
|
184
|
-
'EventsQueryPlayerIdWithTeamStatusInput': { kind: 'INPUT_OBJECT'; name: 'EventsQueryPlayerIdWithTeamStatusInput'; isOneOf: false; inputFields: [{ name: 'memberStatus'; type: { kind: 'ENUM'; name: 'UserGroupMemberStatus'; ofType: null; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'reservationStatus'; type: { kind: 'ENUM'; name: 'EventReservationStatus'; ofType: null; }; defaultValue: null }]; };
|
|
185
|
-
'EventsQueryStatus': { name: 'EventsQueryStatus'; enumValues: 'ALL' | 'ENDED' | 'REGISTRATIONS_CLOSED' | 'REGISTRATIONS_ENDED' | 'REGISTRATIONS_OPEN' | 'STARTED'; };
|
|
186
|
-
'Float': unknown;
|
|
187
|
-
'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; }; } }; }; };
|
|
188
|
-
'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 }]; };
|
|
189
|
-
'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; }; }; }; } }; }; };
|
|
190
|
-
'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 }]; };
|
|
191
|
-
'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; }; }; }; } }; }; };
|
|
192
|
-
'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 }]; };
|
|
193
|
-
'GroupRepartitionMechanism': { name: 'GroupRepartitionMechanism'; enumValues: 'BALANCED' | 'SEED_OPTIMIZED'; };
|
|
194
|
-
'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; }; } }; }; };
|
|
195
|
-
'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 }]; };
|
|
196
|
-
'ID': unknown;
|
|
197
|
-
'IdentityProviderAvailability': { name: 'IdentityProviderAvailability'; enumValues: 'PREVIEW' | 'PRIVATE' | 'PUBLIC'; };
|
|
198
|
-
'IdentityProviderConfigurations': { kind: 'UNION'; name: 'IdentityProviderConfigurations'; fields: {}; possibleTypes: 'OAuthClientConfiguration' | 'OpenidConfiguration'; };
|
|
199
|
-
'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 }]; };
|
|
200
|
-
'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; }; }; }; } }; }; };
|
|
201
|
-
'IdentityProviderType': { name: 'IdentityProviderType'; enumValues: 'OAUTH2' | 'OPENID'; };
|
|
202
|
-
'Int': unknown;
|
|
203
|
-
'JSONObject': unknown;
|
|
204
|
-
'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; } }; }; };
|
|
205
|
-
'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 }]; };
|
|
206
|
-
'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; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
207
|
-
'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; }; }; }; } }; }; };
|
|
208
|
-
'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 }]; };
|
|
209
|
-
'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 }]; };
|
|
210
|
-
'LeaderboardScoreCalculationType': { name: 'LeaderboardScoreCalculationType'; enumValues: 'SCORE'; };
|
|
211
|
-
'LeaderboardSeason': { kind: 'OBJECT'; name: 'LeaderboardSeason'; fields: { '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; }; } }; }; };
|
|
212
|
-
'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; }; } }; '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; }; } }; }; };
|
|
213
|
-
'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; }; }; }; } }; }; };
|
|
214
|
-
'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; }; } }; '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; }; } }; }; };
|
|
215
|
-
'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; }; }; }; } }; }; };
|
|
216
|
-
'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; } }; }; };
|
|
217
|
-
'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; } }; }; };
|
|
218
|
-
'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; }; }; }; } }; }; };
|
|
219
|
-
'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; } }; }; };
|
|
220
|
-
'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; } }; }; };
|
|
221
|
-
'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; }; } }; }; };
|
|
222
|
-
'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; }; } }; }; };
|
|
223
|
-
'LimitScope': { name: 'LimitScope'; enumValues: 'ORGANIZATION' | 'RESOURCE'; };
|
|
224
|
-
'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; }; }; }; } }; }; };
|
|
225
|
-
'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; }; } }; }; };
|
|
226
|
-
'LogAuthorType': { name: 'LogAuthorType'; enumValues: 'APP' | 'SYSTEM' | 'USER'; };
|
|
227
|
-
'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; } }; }; };
|
|
228
|
-
'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; }; }; }; } }; }; };
|
|
229
|
-
'LogType': { name: 'LogType'; enumValues: 'WEBHOOK_CALL' | 'WEBHOOK_CALL_ERROR'; };
|
|
230
|
-
'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; } }; }; };
|
|
231
|
-
'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 }]; };
|
|
232
|
-
'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 }]; };
|
|
233
|
-
'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; }; }; }; } }; }; };
|
|
234
|
-
'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 }]; };
|
|
235
|
-
'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; }; }; }; } }; }; };
|
|
236
|
-
'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 }]; };
|
|
237
|
-
'MatchScoreStatus': { name: 'MatchScoreStatus'; enumValues: 'FORFEIT' | 'LOSER' | 'WAITING' | 'WINNER'; };
|
|
238
|
-
'MatchStatus': { name: 'MatchStatus'; enumValues: 'ENDED' | 'STARTED' | 'WAITING'; };
|
|
239
|
-
'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; }; } }; }; };
|
|
240
|
-
'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 }]; };
|
|
241
|
-
'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; }; } }; 'eventCreate': { name: 'eventCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Event'; ofType: null; }; } }; 'eventDelete': { name: 'eventDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'eventReservationConfirmPresence': { name: 'eventReservationConfirmPresence'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservation'; ofType: null; }; } }; 'eventReservationStartRegistrationSession': { name: 'eventReservationStartRegistrationSession'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservation'; ofType: null; }; } }; 'eventReservationUpdateStatus': { name: 'eventReservationUpdateStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservation'; ofType: null; }; } }; 'eventReservationValidateAndPay': { name: 'eventReservationValidateAndPay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservationValidateAndPay'; ofType: null; }; } }; 'eventTicketConfigurationCreate': { name: 'eventTicketConfigurationCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventTicketConfiguration'; ofType: null; }; } }; 'eventTicketConfigurationDelete': { name: 'eventTicketConfigurationDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventTicketConfiguration'; ofType: null; }; } }; 'eventTicketConfigurationUpdate': { name: 'eventTicketConfigurationUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventTicketConfiguration'; ofType: null; }; } }; 'eventUpdate': { name: 'eventUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Event'; ofType: null; }; } }; 'eventVenueCreate': { name: 'eventVenueCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; }; } }; 'eventVenueDelete': { name: 'eventVenueDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; }; } }; 'eventVenueRequestImageUpdate': { name: 'eventVenueRequestImageUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PresignedUrl'; ofType: null; }; } }; 'eventVenueSeatTypeCreate': { name: 'eventVenueSeatTypeCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatType'; ofType: null; }; } }; 'eventVenueSeatTypeDelete': { name: 'eventVenueSeatTypeDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatType'; ofType: null; }; } }; 'eventVenueSeatTypeUpdate': { name: 'eventVenueSeatTypeUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatType'; ofType: null; }; } }; 'eventVenueSeatsUpdate': { name: 'eventVenueSeatsUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatsUpdateResult'; ofType: null; }; } }; 'eventVenueUpdate': { name: 'eventVenueUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; }; } }; 'eventVenueValidateImage': { name: 'eventVenueValidateImage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenue'; 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; }; } }; 'organizationPaymentCollectionConfigurationCreateOrUpdateAccount': { name: 'organizationPaymentCollectionConfigurationCreateOrUpdateAccount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; 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: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OrganizationSkillRatingsRegisterMatchPlayer'; 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; }; } }; 'platformFileGenerateUploadUrl': { name: 'platformFileGenerateUploadUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PresignedUrl'; ofType: null; }; } }; 'platformFilePublish': { name: 'platformFilePublish'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; } }; 'platformFileUpdate': { name: 'platformFileUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformCdnFile'; ofType: null; }; } }; 'platformFileValidateFileUpload': { name: 'platformFileValidateFileUpload'; 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; }; } }; 'platformTemplateApply': { name: 'platformTemplateApply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Platform'; ofType: null; }; } }; 'platformTemplateCreate': { name: 'platformTemplateCreate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformTemplate'; ofType: null; }; } }; 'platformTemplateDelete': { name: 'platformTemplateDelete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Void'; ofType: null; }; } }; 'platformTemplateUpdate': { name: 'platformTemplateUpdate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformTemplate'; 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; }; } }; }; };
|
|
242
|
-
'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 }]; };
|
|
243
|
-
'NumberConditionType': { name: 'NumberConditionType'; enumValues: 'BT' | 'BTE' | 'EQ' | 'LT' | 'LTE' | 'NEQ'; };
|
|
244
|
-
'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; }; } }; }; };
|
|
245
|
-
'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; } }; }; };
|
|
246
|
-
'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" }]; };
|
|
247
|
-
'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'; };
|
|
248
|
-
'OmitObjectType': { kind: 'OBJECT'; name: 'OmitObjectType'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'eventId': { name: 'eventId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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; }; } }; 'sessionValidUntil': { name: 'sessionValidUntil'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'EventReservationStatus'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
249
|
-
'OmitObjectTypeEdge': { kind: 'OBJECT'; name: 'OmitObjectTypeEdge'; 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: 'OmitObjectType'; ofType: null; }; }; }; } }; }; };
|
|
250
|
-
'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; }; } }; }; };
|
|
251
|
-
'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 }]; };
|
|
252
|
-
'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 }]; };
|
|
253
|
-
'OrderDirection': { name: 'OrderDirection'; enumValues: 'ASC' | 'DESC'; };
|
|
254
|
-
'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; }; }; }; } }; }; };
|
|
255
|
-
'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; }; } }; }; };
|
|
256
|
-
'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; }; } }; }; };
|
|
257
|
-
'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; }; } }; }; };
|
|
258
|
-
'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; }; }; }; } }; }; };
|
|
259
|
-
'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; } }; }; };
|
|
260
|
-
'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; }; } }; }; };
|
|
261
|
-
'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; }; }; }; } }; }; };
|
|
262
|
-
'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; } }; }; };
|
|
263
|
-
'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; }; }; }; } }; }; };
|
|
264
|
-
'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 }]; };
|
|
265
|
-
'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; }; } }; }; };
|
|
266
|
-
'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; }; }; }; } }; }; };
|
|
267
|
-
'OrganizationGroupType': { name: 'OrganizationGroupType'; enumValues: 'ADMIN' | 'ANONYMOUS' | 'CONNECTED' | 'MEMBER'; };
|
|
268
|
-
'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; } }; }; };
|
|
269
|
-
'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; }; } }; }; };
|
|
270
|
-
'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; }; } }; }; };
|
|
271
|
-
'OrganizationLimitType': { name: 'OrganizationLimitType'; enumValues: 'BOOLEAN' | 'BYTES' | 'DAYS' | 'NUMBER'; };
|
|
272
|
-
'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; }; }; }; } }; }; };
|
|
273
|
-
'OrganizationLimitsType': { name: 'OrganizationLimitsType'; enumValues: 'ANONYMOUS_PLAYER_PROFILES' | 'APPS' | 'ATTACHED_APPS' | 'CUSTOM_FIELDS' | 'CUSTOM_IDENTITY_PROVIDERS' | 'EVENTS_MAX_GROUP_SIZE' | 'EVENTS_MAX_REGISTRATION_RULES' | 'EVENTS_MAX_TICKETS' | 'EVENTS_MAX_TICKETS_TYPES' | 'EVENT_VENUES' | 'EVENT_VENUE_MAX_SEATS' | 'EVENT_VENUE_MAX_SEAT_TYPES' | 'LEADERBOARDS' | 'LEADERBOARD_BUCKETS' | 'LEADERBOARD_ENTRIES' | 'LEADERBOARD_SEASONS' | 'ORGANIZATION_GROUPS' | 'ORGANIZATION_MEMBERS' | 'ORGANIZATION_STORAGE_SIZE' | 'PLATFORMS' | 'PLATFORM_CUSTOM_DOMAINS' | 'PLATFORM_TEMPLATES' | 'REGISTERED_USERS' | 'SKILL_RATINGS' | 'TOURNAMENT_REGISTRATION_RULES' | 'TOURNAMENT_STEPS' | 'TOURNAMENT_STEP_GROUPS' | 'TOURNAMENT_TEAMS_REGISTERED' | 'TOURNAMENT_TEAM_SIZE' | 'WEBHOOKS' | 'WHITE_LABEL'; };
|
|
274
|
-
'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; }; } }; }; };
|
|
275
|
-
'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; }; }; }; } }; }; };
|
|
276
|
-
'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; } }; }; };
|
|
277
|
-
'OrganizationPaymentCollectionConfiguration': { kind: 'OBJECT'; name: 'OrganizationPaymentCollectionConfiguration'; fields: { 'wellPlayedFeePercent': { name: 'wellPlayedFeePercent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'wellPlayedMinimalFee': { name: 'wellPlayedMinimalFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
278
|
-
'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; }; } }; }; };
|
|
279
|
-
'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 }]; };
|
|
280
|
-
'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 }]; };
|
|
281
|
-
'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 }]; };
|
|
282
|
-
'OrganizationSkillRatingsRegisterMatchPlayer': { kind: 'OBJECT'; name: 'OrganizationSkillRatingsRegisterMatchPlayer'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'leaderboardPointsUpdate': { name: 'leaderboardPointsUpdate'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'newValue': { name: 'newValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'oldValue': { name: 'oldValue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
283
|
-
'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 }]; };
|
|
284
|
-
'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; }; } }; }; };
|
|
285
|
-
'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 }]; };
|
|
286
|
-
'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 }]; };
|
|
287
|
-
'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; }; }; }; } }; }; };
|
|
288
|
-
'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; }; }; }; } }; }; };
|
|
289
|
-
'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; }; } }; }; };
|
|
290
|
-
'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; }; } }; 'devCdnPath': { name: 'devCdnPath'; 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; }; } }; 'platformId': { name: 'platformId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'platformTemplateId': { name: 'platformTemplateId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'prodCdnPath': { name: 'prodCdnPath'; type: { kind: 'SCALAR'; name: 'String'; 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; }; } }; }; };
|
|
291
|
-
'PlatformCdnFileConfigs': { kind: 'OBJECT'; name: 'PlatformCdnFileConfigs'; fields: { 'pageConfig': { name: 'pageConfig'; type: { kind: 'OBJECT'; name: 'PlatformCdnFilePageConfig'; ofType: null; } }; }; };
|
|
292
|
-
'PlatformCdnFileConfigsInput': { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; isOneOf: false; inputFields: [{ name: 'pageConfig'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFilePageConfigInput'; ofType: null; }; defaultValue: null }]; };
|
|
293
|
-
'PlatformCdnFileCreateInput': { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileCreateInput'; isOneOf: false; inputFields: [{ name: 'config'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; 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 }]; };
|
|
294
|
-
'PlatformCdnFilePageConfig': { kind: 'OBJECT'; name: 'PlatformCdnFilePageConfig'; fields: { 'path': { name: 'path'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
295
|
-
'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 }]; };
|
|
296
|
-
'PlatformCdnFileType': { name: 'PlatformCdnFileType'; enumValues: 'COMPONENT' | 'IMAGE' | 'PAGE' | 'TEXT'; };
|
|
297
|
-
'PlatformConfiguration': { kind: 'OBJECT'; name: 'PlatformConfiguration'; fields: { 'whitelabel': { name: 'whitelabel'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
|
|
298
|
-
'PlatformConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'PlatformConfigurationInput'; isOneOf: false; inputFields: [{ name: 'whitelabel'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
299
|
-
'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; }; } }; }; };
|
|
300
|
-
'PlatformFileUpdateInput': { kind: 'INPUT_OBJECT'; name: 'PlatformFileUpdateInput'; isOneOf: false; inputFields: [{ name: 'config'; type: { kind: 'INPUT_OBJECT'; name: 'PlatformCdnFileConfigsInput'; ofType: null; }; defaultValue: null }]; };
|
|
301
|
-
'PlatformTemplate': { kind: 'OBJECT'; name: 'PlatformTemplate'; 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; }; } }; 'public': { name: 'public'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'screenshotUrl': { name: 'screenshotUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
302
|
-
'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; }; } }; }; };
|
|
303
|
-
'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; } }; }; };
|
|
304
|
-
'PlayerConditionDataSource': { name: 'PlayerConditionDataSource'; enumValues: 'IDENTITY_PROVIDER' | 'PLAYER'; };
|
|
305
|
-
'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 }]; };
|
|
306
|
-
'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 }]; };
|
|
307
|
-
'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; }; }; }; } }; }; };
|
|
308
|
-
'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; }; } }; }; };
|
|
309
|
-
'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; } }; }; };
|
|
310
|
-
'Position': { kind: 'OBJECT'; name: 'Position'; fields: { 'x': { name: 'x'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; 'y': { name: 'y'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; } }; }; };
|
|
311
|
-
'PositionInput': { kind: 'INPUT_OBJECT'; name: 'PositionInput'; isOneOf: false; inputFields: [{ name: 'x'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }, { name: 'y'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; defaultValue: null }]; };
|
|
312
|
-
'PositiveInt': unknown;
|
|
313
|
-
'PresenceAnalytics': { kind: 'OBJECT'; name: 'PresenceAnalytics'; fields: { 'anonymousSessions': { name: 'anonymousSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'authenticatedSessions': { name: 'authenticatedSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'totalSessions': { name: 'totalSessions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
|
|
314
|
-
'PresignedUrl': { kind: 'OBJECT'; name: 'PresignedUrl'; fields: { 'fields': { name: 'fields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PresignedUrlField'; ofType: null; }; }; }; } }; 'url': { name: 'url'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; } }; }; };
|
|
315
|
-
'PresignedUrlField': { kind: 'OBJECT'; name: 'PresignedUrlField'; fields: { 'key': { name: 'key'; 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; }; } }; }; };
|
|
316
|
-
'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; } }; }; };
|
|
317
|
-
'PropertyCondition': { name: 'PropertyCondition'; enumValues: 'DONT_EXIST' | 'EXISTS'; };
|
|
318
|
-
'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; } }; }; };
|
|
319
|
-
'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 }]; };
|
|
320
|
-
'PropertyType': { name: 'PropertyType'; enumValues: 'BOOLEAN' | 'COUNTRY' | 'DATE' | 'PHONE' | 'STRING'; };
|
|
321
|
-
'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 }]; };
|
|
322
|
-
'PropertyVisibility': { name: 'PropertyVisibility'; enumValues: 'OWNER' | 'OWNER_OR_PERMISSION' | 'PUBLIC' | 'WITH_PERMISSION'; };
|
|
323
|
-
'ProperyEditability': { name: 'ProperyEditability'; enumValues: 'ALWAYS' | 'ONE_TIME' | 'WITH_PERMISSION'; };
|
|
324
|
-
'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; }; } }; }; };
|
|
325
|
-
'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; }; } }; }; };
|
|
326
|
-
'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; }; } }; 'event': { name: 'event'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventWithUserReservation'; ofType: null; }; } }; 'eventReservation': { name: 'eventReservation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservation'; ofType: null; }; } }; 'eventReservations': { name: 'eventReservations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventReservations'; ofType: null; }; } }; 'eventSeats': { name: 'eventSeats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventSeats'; ofType: null; }; } }; 'eventTicketConfiguration': { name: 'eventTicketConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventTicketConfiguration'; ofType: null; }; } }; 'eventTicketConfigurations': { name: 'eventTicketConfigurations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventTicketConfiguration'; ofType: null; }; }; }; } }; 'eventVenue': { name: 'eventVenue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenue'; ofType: null; }; } }; 'eventVenueSeatTypes': { name: 'eventVenueSeatTypes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeatTypes'; ofType: null; }; } }; 'eventVenueSeats': { name: 'eventVenueSeats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenueSeats'; ofType: null; }; } }; 'eventVenues': { name: 'eventVenues'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventVenues'; ofType: null; }; } }; 'events': { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Events'; 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; }; } }; 'leaderboardSeasonBucketScores': { name: 'leaderboardSeasonBucketScores'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LeaderboardSeasonBucketScores'; 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; }; } }; 'organizationPaymentCollectionConfiguration': { name: 'organizationPaymentCollectionConfiguration'; type: { kind: 'OBJECT'; name: 'OrganizationPaymentCollectionConfiguration'; 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; }; } }; 'platformTemplate': { name: 'platformTemplate'; type: { kind: 'OBJECT'; name: 'PlatformTemplate'; ofType: null; } }; 'platformTemplates': { name: 'platformTemplates'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformTemplate'; ofType: null; }; }; }; } }; 'platformTemplatesPublic': { name: 'platformTemplatesPublic'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PlatformTemplate'; 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; }; } }; 'presenceAnalytics': { name: 'presenceAnalytics'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PresenceAnalytics'; 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; }; } }; 'userGroups': { name: 'userGroups'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserGroups'; 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; }; }; }; } }; }; };
|
|
327
|
-
'QueryPlayersInput': { kind: 'INPUT_OBJECT'; name: 'QueryPlayersInput'; isOneOf: false; inputFields: [{ name: 'anonymous'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
328
|
-
'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 }]; };
|
|
329
|
-
'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 }]; };
|
|
330
|
-
'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 }]; };
|
|
331
|
-
'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; }; }; }; } }; }; };
|
|
332
|
-
'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 }]; };
|
|
333
|
-
'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; } }; }; };
|
|
334
|
-
'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; }; } }; }; };
|
|
335
|
-
'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 }]; };
|
|
336
|
-
'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 }]; };
|
|
337
|
-
'SeedingMechanism': { name: 'SeedingMechanism'; enumValues: 'HALF_SHIFT' | 'NONE' | 'PAIR_FLIP' | 'REVERSE' | 'REVERSE_HALF_SHIFT'; };
|
|
338
|
-
'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 }]; };
|
|
339
|
-
'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 }]; };
|
|
340
|
-
'SkillRatingConfiguration': { kind: 'OBJECT'; name: 'SkillRatingConfiguration'; fields: { 'updateLeaderboardId': { name: 'updateLeaderboardId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; }; };
|
|
341
|
-
'SkillRatingConfigurationInput': { kind: 'INPUT_OBJECT'; name: 'SkillRatingConfigurationInput'; isOneOf: false; inputFields: [{ name: 'updateLeaderboardId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }]; };
|
|
342
|
-
'SkillRatingType': { name: 'SkillRatingType'; enumValues: 'BRADLEY_TERRY_PART' | 'BREDLEY_TERRY_FULL' | 'PLACKETT_LUCE' | 'THURSTONE_MOSTELLER_FULL' | 'THURSTONE_MOSTELLER_PART'; };
|
|
343
|
-
'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; }; } }; }; };
|
|
344
|
-
'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" }]; };
|
|
345
|
-
'StepStatus': { name: 'StepStatus'; enumValues: 'CONFIGURED' | 'ENDED' | 'GENERATED' | 'GENERATING' | 'SEEDED' | 'SEEDING' | 'STARTED'; };
|
|
346
|
-
'StepType': { name: 'StepType'; enumValues: 'CUSTOM' | 'DOUBLE_ELIM' | 'ROUND_ROBIN' | 'SCORE' | 'SINGLE_ELIM'; };
|
|
347
|
-
'String': unknown;
|
|
348
|
-
'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; }; } }; }; };
|
|
349
|
-
'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 }]; };
|
|
350
|
-
'StringConditionType': { name: 'StringConditionType'; enumValues: 'EQ' | 'NEQ'; };
|
|
351
|
-
'StripeUiMode': { name: 'StripeUiMode'; enumValues: 'EMBEDDED' | 'HOSTED'; };
|
|
352
|
-
'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { 'presenceUserConnected': { name: 'presenceUserConnected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UsersConnectedEvent'; ofType: null; }; } }; 'presenceUserDisconnected': { name: 'presenceUserDisconnected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UsersDisconnectedEvent'; ofType: null; }; } }; }; };
|
|
353
|
-
'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; }; } }; }; };
|
|
354
|
-
'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; } }; }; };
|
|
355
|
-
'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 }]; };
|
|
356
|
-
'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; } }; }; };
|
|
357
|
-
'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; }; } }; }; };
|
|
358
|
-
'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 }]; };
|
|
359
|
-
'TeamStatusAfterRegistration': { name: 'TeamStatusAfterRegistration'; enumValues: 'AWAITING_FOR_PAYMENT' | 'AWAITING_FOR_PRESENCE_CONFIRMATION' | 'REGISTERED'; };
|
|
360
|
-
'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; } }; }; };
|
|
361
|
-
'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; }; } }; }; };
|
|
362
|
-
'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 }]; };
|
|
363
|
-
'TournamentAdminPermissions': { name: 'TournamentAdminPermissions'; enumValues: 'MANAGE_PERMISSIONS' | 'MANAGE_SCORES' | 'MANAGE_TEAMS' | 'MANAGE_TOURNAMENT'; };
|
|
364
|
-
'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 }]; };
|
|
365
|
-
'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; }; } }; }; };
|
|
366
|
-
'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" }]; };
|
|
367
|
-
'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; }; }; }; } }; }; };
|
|
368
|
-
'TournamentGameStatus': { name: 'TournamentGameStatus'; enumValues: 'ENDED' | 'STARTED' | 'WAITING'; };
|
|
369
|
-
'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; }; } }; }; };
|
|
370
|
-
'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; }; } }; }; };
|
|
371
|
-
'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; }; } }; }; };
|
|
372
|
-
'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; } }; }; };
|
|
373
|
-
'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; }; } }; }; };
|
|
374
|
-
'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; }; }; }; } }; }; };
|
|
375
|
-
'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; }; } }; }; };
|
|
376
|
-
'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; }; }; }; } }; }; };
|
|
377
|
-
'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; } }; }; };
|
|
378
|
-
'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; } }; }; };
|
|
379
|
-
'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; }; } }; }; };
|
|
380
|
-
'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; }; }; }; } }; }; };
|
|
381
|
-
'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; }; } }; }; };
|
|
382
|
-
'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; }; }; }; } }; }; };
|
|
383
|
-
'TournamentTeamMemberStatus': { name: 'TournamentTeamMemberStatus'; enumValues: 'ACCEPTED' | 'AWAITING' | 'DENIED'; };
|
|
384
|
-
'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; }; } }; }; };
|
|
385
|
-
'TournamentTeamStatus': { name: 'TournamentTeamStatus'; enumValues: 'AWAITING_FOR_PAYMENT' | 'AWAITING_FOR_PRESENCE_CONFIRMATION' | 'CONFIRMED' | 'DENIED' | 'NOT_ATTENDING' | 'NOT_VALID' | 'REGISTERED'; };
|
|
386
|
-
'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; } }; }; };
|
|
387
|
-
'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; } }; }; };
|
|
388
|
-
'TournamentsQuery': { kind: 'INPUT_OBJECT'; name: 'TournamentsQuery'; isOneOf: false; inputFields: [{ name: 'filterByPlayers'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TournamentsQueryPlayerIdWithTeamStatus'; ofType: null; }; }; }; defaultValue: null }, { 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" }]; };
|
|
389
|
-
'TournamentsQueryOrderBy': { name: 'TournamentsQueryOrderBy'; enumValues: 'END_AT' | 'REGISTRATIONS_END_AT' | 'REGISTRATIONS_START_AT' | 'START_AT'; };
|
|
390
|
-
'TournamentsQueryPlayerIdWithTeamStatus': { kind: 'INPUT_OBJECT'; name: 'TournamentsQueryPlayerIdWithTeamStatus'; isOneOf: false; inputFields: [{ name: 'memberStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentTeamMemberStatus'; ofType: null; }; }; defaultValue: null }, { name: 'playerId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; defaultValue: null }, { name: 'teamStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TournamentTeamStatus'; ofType: null; }; }; defaultValue: null }]; };
|
|
391
|
-
'TournamentsQueryStatus': { name: 'TournamentsQueryStatus'; enumValues: 'ALL' | 'ENDED' | 'REGISTRATIONS_CLOSED' | 'REGISTRATIONS_ENDED' | 'REGISTRATIONS_OPEN' | 'STARTED'; };
|
|
392
|
-
'URL': unknown;
|
|
393
|
-
'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 }]; };
|
|
394
|
-
'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 }]; };
|
|
395
|
-
'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 }]; };
|
|
396
|
-
'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 }]; };
|
|
397
|
-
'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 }]; };
|
|
398
|
-
'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 }]; };
|
|
399
|
-
'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 }]; };
|
|
400
|
-
'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 }]; };
|
|
401
|
-
'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 }]; };
|
|
402
|
-
'UpdatePlatformTemplateInput': { kind: 'INPUT_OBJECT'; name: 'UpdatePlatformTemplateInput'; 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 }, { name: 'public'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'screenshotUrl'; type: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; defaultValue: null }]; };
|
|
403
|
-
'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 }]; };
|
|
404
|
-
'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" }]; };
|
|
405
|
-
'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 }]; };
|
|
406
|
-
'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 }]; };
|
|
407
|
-
'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 }]; };
|
|
408
|
-
'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 }]; };
|
|
409
|
-
'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 }]; };
|
|
410
|
-
'UserConnectionEvent': { kind: 'OBJECT'; name: 'UserConnectionEvent'; fields: { 'accountId': { name: 'accountId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'playerId': { name: 'playerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'serverId': { name: 'serverId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; };
|
|
411
|
-
'UserDisconnectEvent': { kind: 'OBJECT'; name: 'UserDisconnectEvent'; fields: { 'accountId': { name: 'accountId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'organizationId': { name: 'organizationId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'playerId': { name: 'playerId'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; } }; 'serverId': { name: 'serverId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sessionId': { name: 'sessionId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; };
|
|
412
|
-
'UserGroup': { kind: 'OBJECT'; name: 'UserGroup'; 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; }; } }; 'managerId': { name: 'managerId'; type: { kind: 'NON_NULL'; name: never; ofType: { 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: 'UserGroupMember'; 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; }; } }; }; };
|
|
413
|
-
'UserGroupEdge': { kind: 'OBJECT'; name: 'UserGroupEdge'; 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: 'UserGroup'; ofType: null; }; }; }; } }; }; };
|
|
414
|
-
'UserGroupMember': { kind: 'OBJECT'; name: 'UserGroupMember'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'groupId': { name: 'groupId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; 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: 'UserGroupMemberStatus'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; }; };
|
|
415
|
-
'UserGroupMemberStatus': { name: 'UserGroupMemberStatus'; enumValues: 'ACCEPTED' | 'DENIED' | 'PENDING'; };
|
|
416
|
-
'UserGroups': { kind: 'OBJECT'; name: 'UserGroups'; 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: 'UserGroupEdge'; 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: 'UserGroup'; 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; } }; }; };
|
|
417
|
-
'UserGroupsQueryInput': { kind: 'INPUT_OBJECT'; name: 'UserGroupsQueryInput'; isOneOf: false; inputFields: [{ name: 'ids'; 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 }]; };
|
|
418
|
-
'UsersConnectedEvent': { kind: 'OBJECT'; name: 'UsersConnectedEvent'; fields: { 'usersConnected': { name: 'usersConnected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserConnectionEvent'; ofType: null; }; }; }; } }; }; };
|
|
419
|
-
'UsersDisconnectedEvent': { kind: 'OBJECT'; name: 'UsersDisconnectedEvent'; fields: { 'usersDisconnected': { name: 'usersDisconnected'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserDisconnectEvent'; ofType: null; }; }; }; } }; }; };
|
|
420
|
-
'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; }; } }; }; };
|
|
421
|
-
'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 }]; };
|
|
422
|
-
'Void': unknown;
|
|
423
|
-
'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; }; } }; }; };
|
|
424
|
-
'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; }; } }; }; };
|
|
425
|
-
'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; }; } }; }; };
|
|
426
|
-
'WebhookEventType': { name: 'WebhookEventType'; enumValues: 'TOURNAMENT_TEAM_ATTENDANCE_UPDATED' | 'TOURNAMENT_TEAM_CONFIRMATION_UPDATED' | 'TOURNAMENT_TEAM_DELETED' | 'TOURNAMENT_TEAM_DELETED_ADMIN' | 'TOURNAMENT_TEAM_STATUS_UPDATED'; };
|
|
427
|
-
};
|
|
428
|
-
|
|
429
34
|
declare type MatchWithTeams = BaseMatch & {
|
|
430
35
|
teamScores: TeamScore[];
|
|
431
36
|
};
|
|
432
37
|
|
|
433
|
-
export { readFragment }
|
|
434
|
-
|
|
435
|
-
export { ResultOf }
|
|
436
|
-
|
|
437
38
|
export declare const RichTextEditorContent: ({ content, style, }: {
|
|
438
39
|
content: string;
|
|
439
40
|
style?: React.CSSProperties;
|
|
@@ -634,8 +235,6 @@ export declare const useWellPlayed: () => {
|
|
|
634
235
|
apiClient: ApolloClient<NormalizedCacheObject>;
|
|
635
236
|
};
|
|
636
237
|
|
|
637
|
-
export { VariablesOf }
|
|
638
|
-
|
|
639
238
|
export declare const WellPlayedProvider: ({ children, oidcConfig, wpAppConfig, ...configs }: PropsWithChildren<WPConfigProps>) => JSX.Element;
|
|
640
239
|
|
|
641
240
|
declare type WPConfigProps = {
|
|
@@ -679,11 +278,3 @@ declare type WPConfigProps = {
|
|
|
679
278
|
};
|
|
680
279
|
|
|
681
280
|
export { }
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
declare module 'gql.tada' {
|
|
686
|
-
interface setupSchema {
|
|
687
|
-
introspection: introspection
|
|
688
|
-
}
|
|
689
|
-
}
|