-
-
-
+
);
}
diff --git a/libs/features/unlock/shopify/src/lib/OffKeyGate/examples.tsx b/libs/features/unlock/shopify/src/lib/OffKeyGate/examples.tsx
index e4f6af12d..37da2da97 100644
--- a/libs/features/unlock/shopify/src/lib/OffKeyGate/examples.tsx
+++ b/libs/features/unlock/shopify/src/lib/OffKeyGate/examples.tsx
@@ -1,20 +1,22 @@
-import { ConnectStatus } from '@next/iframe';
+import * as iframeApi from '@next/iframe';
+import { IFrameProvider, useIframeOffKey, ConnectStatus } from '@next/iframe';
import React from 'react';
import { createMock } from 'storybook-addon-module-mock';
import { OffKeyHeaderConnectedExamples } from '../OffKeyHeaderConnected/examples';
import { OffKeyLayout } from '../OffKeyLayout/OffKeyLayout';
-import { authMocks } from '../OffKeyProfile/examples';
-import * as gate from '../actions/getGateStateForAddress';
-import { OffKeyState, OffKeyViewHeaderConnected } from '../types';
+import { OffKeyViewHeaderConnected } from '../types';
import { OffKeyGate, OffKeyGateProps } from './OffKeyGate';
+import { authMocks } from '../CardConnected/examples';
export const address = '0xB98bD7C7f656290071E52D1aA617D9cB4467Fd6D';
-export function offKeyGateMocks({ gateState }: { gateState: OffKeyState }) {
- const mockgetGateStateForAddress = createMock(gate, 'getGateStateForAddress');
- mockgetGateStateForAddress.mockReturnValue(Promise.resolve(gateState));
+export function offKeyGateMocks(
+ useIframeMocks: ReturnType
,
+) {
+ const mockIframeOffKey = createMock(iframeApi, 'useIframeOffKey');
+ mockIframeOffKey.mockReturnValue(useIframeMocks);
return [
- mockgetGateStateForAddress,
+ mockIframeOffKey,
...authMocks({
walletAuthMocks: {
connect: () => Promise.resolve(),
@@ -42,14 +44,16 @@ export function offKeyGateMocks({ gateState }: { gateState: OffKeyState }) {
export function OffKeyGateDemo(props: OffKeyGateProps) {
return (
-
- }
- >
-
-
+
+
+ }
+ >
+
+
+
);
}
diff --git a/libs/features/unlock/shopify/src/lib/OffKeyHowToGet/OffKeyHowToGet.tsx b/libs/features/unlock/shopify/src/lib/OffKeyHowToGet/OffKeyHowToGet.tsx
index 88ad49e11..406cd6589 100644
--- a/libs/features/unlock/shopify/src/lib/OffKeyHowToGet/OffKeyHowToGet.tsx
+++ b/libs/features/unlock/shopify/src/lib/OffKeyHowToGet/OffKeyHowToGet.tsx
@@ -4,7 +4,7 @@ import { Button } from '@ui/components';
import { useTranslations } from 'next-intl';
import type { LinkProps } from 'next/link';
-export interface OffKeyHowToGetProps extends LinkProps {}
+export type OffKeyHowToGetProps = LinkProps;
export const OffKeyHowToGet: React.FC = ({ href }) => {
const t = useTranslations('Shopify.OffKeyHowToGet');
diff --git a/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.stories.tsx b/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.stories.tsx
index 771c9a245..0fc599395 100644
--- a/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.stories.tsx
+++ b/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.stories.tsx
@@ -1,6 +1,6 @@
+import { OffKeyState } from '@next/iframe';
import { StoryObj, type Meta } from '@storybook/react';
import React from 'react';
-import { OffKeyState } from '../types';
import { OffKeyInfo, OffKeyInfoSkeleton } from './OffKeyInfo';
const meta = {
diff --git a/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.tsx b/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.tsx
index ed689d45d..e2cc98135 100644
--- a/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.tsx
+++ b/libs/features/unlock/shopify/src/lib/OffKeyInfo/OffKeyInfo.tsx
@@ -1,8 +1,8 @@
import { OffKeyLogo } from '@features/unlock/app-nav';
+import { OffKeyState } from '@next/iframe';
import { Text, TextSkeleton } from '@ui/components';
import { Key } from '@ui/icons';
import { useTranslations } from 'next-intl';
-import { OffKeyState } from '../types';
export interface OffKeyInfoProps {
state: OffKeyState;
diff --git a/libs/features/unlock/shopify/src/lib/YourKeys/YourKeys.tsx b/libs/features/unlock/shopify/src/lib/YourKeys/YourKeys.tsx
deleted file mode 100644
index a83ad48a8..000000000
--- a/libs/features/unlock/shopify/src/lib/YourKeys/YourKeys.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import { KeyRequiredProps } from '../KeyRequired/KeyRequired';
-
-interface OwnedKeysProps extends Omit {}
-
-export interface YourKeysProps {}
-
-export function YourKeys(props: YourKeysProps) {
- return (
-
-
Welcome to YourKeys!
-
- );
-}
diff --git a/libs/features/unlock/shopify/src/lib/actions/getGateStateForAddress.ts b/libs/features/unlock/shopify/src/lib/actions/getGateStateForAddress.ts
deleted file mode 100644
index f7b7ba4f9..000000000
--- a/libs/features/unlock/shopify/src/lib/actions/getGateStateForAddress.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-'use server';
-
-import { OffKeyState } from '../types';
-
-interface GetGateStateForAddressProps {
- gateId: string;
- address: string;
-}
-export async function getGateStateForAddress({
- gateId,
- address,
-}: GetGateStateForAddressProps) {
- // TODO implement
- // return __awaiter(this, void 0, void 0, function* () {
- // return {
- // status: 'locked',
- // gateId,
- // address,
- // };
- // });
- return OffKeyState.Locked;
-}
diff --git a/libs/features/unlock/shopify/src/lib/types.ts b/libs/features/unlock/shopify/src/lib/types.ts
index 55b62f5a5..2dd3052bd 100644
--- a/libs/features/unlock/shopify/src/lib/types.ts
+++ b/libs/features/unlock/shopify/src/lib/types.ts
@@ -1,10 +1,3 @@
-export enum OffKeyState {
- Unlocked = 'Unlocked',
- Locked = 'Locked',
- Unlocking = 'Unlocking',
- Used = 'Used',
-}
-
export enum OffKeyViewHeaderConnected {
Default = 'Default',
HowToGet = 'HowToGet',
diff --git a/libs/features/unlock/shopify/tsconfig.spec.json b/libs/features/unlock/shopify/tsconfig.spec.json
index 103368636..a18f2c33d 100644
--- a/libs/features/unlock/shopify/tsconfig.spec.json
+++ b/libs/features/unlock/shopify/tsconfig.spec.json
@@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../../dist/out-tsc",
- "module": "commonjs",
+ "module": "nodenext",
"types": ["jest", "node"]
},
"include": [
diff --git a/libs/file-upload/admin/.swcrc b/libs/file-upload/admin/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/file-upload/admin/.swcrc
+++ b/libs/file-upload/admin/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/file-upload/admin/src/lib/index.spec.ts b/libs/file-upload/admin/src/lib/index.spec.ts
index 58d544479..3266aa36e 100644
--- a/libs/file-upload/admin/src/lib/index.spec.ts
+++ b/libs/file-upload/admin/src/lib/index.spec.ts
@@ -93,7 +93,7 @@ jest.mock('@bytescale/sdk', () => ({
describe('executeJobWithRetry', () => {
beforeEach(() => {
jobWrapper = new JobWrapper();
- retry.mockClear();
+ (retry as jest.Mock).mockClear();
});
it('should not retry if the job has completed', async () => {
diff --git a/libs/file-upload/admin/src/lib/index.ts b/libs/file-upload/admin/src/lib/index.ts
index 5a0e587d2..af43e7b8a 100644
--- a/libs/file-upload/admin/src/lib/index.ts
+++ b/libs/file-upload/admin/src/lib/index.ts
@@ -1,5 +1,6 @@
import * as Upload from '@bytescale/sdk';
import env from '@env/server';
+import { getErrorMessage } from '@utils';
import retry from 'async-retry';
export const enum FileCopyStatusEnum {
@@ -40,16 +41,17 @@ export async function executeJobWithRetry(
try {
await retry(checkJobStatus, {
+ // @ts-ignore
retries: 10, // the number of retries
minTimeout: 2000, // the number of milliseconds before starting the first retry
onRetry: (error) =>
- console.log(`Retrying due to error: ${error.message}`), // called when a retry is happening
- errorFilter: (error) =>
- error.message.startsWith('Job still running') ||
- error.message.startsWith('Job failed'),
+ console.log(`Retrying due to error: ${getErrorMessage(error)}`), // called when a retry is happening
+ errorFilter: (error: unknown) =>
+ getErrorMessage(error).startsWith('Job still running') ||
+ getErrorMessage(error).startsWith('Job failed'),
});
} catch (error) {
- if (error.message.startsWith('Job still running')) {
+ if (getErrorMessage(error).startsWith('Job still running')) {
throw new Error('Job did not finish correctly after retries');
}
throw error;
@@ -72,7 +74,7 @@ export class UploadWrapper {
try {
return await this.uploadManager.upload(uploadOptions);
} catch (error) {
- console.error(`Upload failed: ${error.message}`, error);
+ console.error(`Upload failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -98,7 +100,7 @@ export class FileWrapper {
try {
return await this.fileApi.downloadFile(downloadFileOptions);
} catch (error) {
- console.error(`File download failed: ${error.message}`, error);
+ console.error(`File download failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -109,7 +111,10 @@ export class FileWrapper {
try {
return await this.fileApi.getFileDetails(getFileDetailsOptions);
} catch (error) {
- console.error(`Fetching file details failed: ${error.message}`, error);
+ console.error(
+ `Fetching file details failed: ${getErrorMessage(error)}`,
+ error,
+ );
throw error;
}
}
@@ -120,7 +125,7 @@ export class FileWrapper {
try {
return await this.fileApi.copyFile(copyFileOptions);
} catch (error) {
- console.error(`File copy failed: ${error.message}`, error);
+ console.error(`File copy failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -131,7 +136,7 @@ export class FileWrapper {
try {
return await this.fileApi.copyFileBatch(copyFileBatchOptions);
} catch (error) {
- console.error(`Batch file copy failed: ${error.message}`, error);
+ console.error(`Batch file copy failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -158,7 +163,7 @@ export class FileWrapper {
try {
await this.fileApi.deleteFile(deleteOptions);
} catch (error) {
- console.error(`File delete failed: ${error.message}`, error);
+ console.error(`File delete failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -169,7 +174,10 @@ export class FileWrapper {
try {
return await this.fileApi.deleteFileBatch(deleteBatchOptions);
} catch (error) {
- console.error(`Batch file delete failed: ${error.message}`, error);
+ console.error(
+ `Batch file delete failed: ${getErrorMessage(error)}`,
+ error,
+ );
throw error;
}
}
@@ -206,7 +214,7 @@ export class FolderWrapper {
try {
return await this.folderApi.putFolder(folderOptions);
} catch (error) {
- console.error(`Folder creation failed: ${error.message}`, error);
+ console.error(`Folder creation failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -217,7 +225,7 @@ export class FolderWrapper {
try {
return await this.folderApi.listFolder(listFolderOptions);
} catch (error) {
- console.error(`Folder listing failed: ${error.message}`, error);
+ console.error(`Folder listing failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -239,7 +247,7 @@ export class JobWrapper {
try {
return await this.jobApi.getJob(jobOptions);
} catch (error) {
- console.error(`Get job failed: ${error.message}`, error);
+ console.error(`Get job failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
@@ -250,7 +258,10 @@ export class JobWrapper {
try {
return await this.jobApi.listRecentJobs(jobOptions);
} catch (error) {
- console.error(`List recent jobs failed: ${error.message}`, error);
+ console.error(
+ `List recent jobs failed: ${getErrorMessage(error)}`,
+ error,
+ );
throw error;
}
}
@@ -259,7 +270,7 @@ export class JobWrapper {
try {
return await this.jobApi.cancelJob(jobOptions);
} catch (error) {
- console.error(`Cancel job failed: ${error.message}`, error);
+ console.error(`Cancel job failed: ${getErrorMessage(error)}`, error);
throw error;
}
}
diff --git a/libs/file-upload/admin/tsconfig.json b/libs/file-upload/admin/tsconfig.json
index 25f7201d8..817c7862a 100644
--- a/libs/file-upload/admin/tsconfig.json
+++ b/libs/file-upload/admin/tsconfig.json
@@ -1,7 +1,15 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs"
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": false,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
diff --git a/libs/file-upload/admin/tsconfig.lib.json b/libs/file-upload/admin/tsconfig.lib.json
index 6aeae58ef..47ddecd98 100644
--- a/libs/file-upload/admin/tsconfig.lib.json
+++ b/libs/file-upload/admin/tsconfig.lib.json
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "nodenext",
"outDir": "../../../dist/out-tsc",
"declaration": true,
"types": ["node"]
diff --git a/libs/file-upload/admin/tsconfig.spec.json b/libs/file-upload/admin/tsconfig.spec.json
index 69a251f32..686c68671 100644
--- a/libs/file-upload/admin/tsconfig.spec.json
+++ b/libs/file-upload/admin/tsconfig.spec.json
@@ -2,10 +2,12 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../dist/out-tsc",
- "module": "commonjs",
+ "module": "nodenext",
+ "strict": false,
"types": ["jest", "node"]
},
"include": [
+ "../../../types/**/*.d.ts",
"jest.config.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
diff --git a/libs/file-upload/user/.swcrc b/libs/file-upload/user/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/file-upload/user/.swcrc
+++ b/libs/file-upload/user/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/file-upload/user/tsconfig.json b/libs/file-upload/user/tsconfig.json
index 25f7201d8..817c7862a 100644
--- a/libs/file-upload/user/tsconfig.json
+++ b/libs/file-upload/user/tsconfig.json
@@ -1,7 +1,15 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs"
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": false,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
diff --git a/libs/file-upload/user/tsconfig.lib.json b/libs/file-upload/user/tsconfig.lib.json
index e583571ea..ced0072ae 100644
--- a/libs/file-upload/user/tsconfig.lib.json
+++ b/libs/file-upload/user/tsconfig.lib.json
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "nodenext",
"outDir": "../../../dist/out-tsc",
"declaration": true,
"types": ["node"]
diff --git a/libs/file-upload/user/tsconfig.spec.json b/libs/file-upload/user/tsconfig.spec.json
index 69a251f32..428475e34 100644
--- a/libs/file-upload/user/tsconfig.spec.json
+++ b/libs/file-upload/user/tsconfig.spec.json
@@ -2,7 +2,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../dist/out-tsc",
- "module": "commonjs",
+ "module": "nodenext",
+ "strict": false,
"types": ["jest", "node"]
},
"include": [
diff --git a/libs/gql/admin/api/.swcrc b/libs/gql/admin/api/.swcrc
index 206feac18..f6e9af12b 100644
--- a/libs/gql/admin/api/.swcrc
+++ b/libs/gql/admin/api/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -27,4 +25,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/admin/api/package.json b/libs/gql/admin/api/package.json
index 364b38cd1..8223b9c4b 100644
--- a/libs/gql/admin/api/package.json
+++ b/libs/gql/admin/api/package.json
@@ -1,7 +1,7 @@
{
"name": "@gql/admin/api",
"version": "0.0.1",
- "type": "commonjs",
+ "type": "nodenext",
"dependencies": {
"@swc/helpers": "~0.5.0"
},
diff --git a/libs/gql/admin/api/project.json b/libs/gql/admin/api/project.json
index 457f1577d..97bde295a 100644
--- a/libs/gql/admin/api/project.json
+++ b/libs/gql/admin/api/project.json
@@ -3,6 +3,7 @@
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/gql/admin/api/src",
"projectType": "library",
+ "tags": [],
"targets": {
"build": {
"executor": "@nx/js:swc",
@@ -16,12 +17,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
- "outputs": ["{options.outputFile}"],
"options": {
- "lintFilePatterns": [
- "libs/gql/admin/api",
- "libs/gql/user/api/**/*.{ts, gql, graphql}"
- ]
+ "lintFilePatterns": ["libs/gql/user/api/**/*.{ts, gql, graphql}"]
}
},
"test-integration": {
@@ -31,6 +28,5 @@
"jestConfig": "libs/gql/admin/api/jest.config.ts"
}
}
- },
- "tags": []
+ }
}
diff --git a/libs/gql/admin/api/src/generated/index.ts b/libs/gql/admin/api/src/generated/index.ts
index 668136354..90bdcde97 100644
--- a/libs/gql/admin/api/src/generated/index.ts
+++ b/libs/gql/admin/api/src/generated/index.ts
@@ -670,7 +670,9 @@ ${PassPricingFieldsFragmentDoc}`;
query GetAlchemyInfosFromEventId($eventId: String) {
eventParameters(where: {eventId: {_eq: $eventId}}) {
activityWebhookId
- signingKey
+ activityWebhookSigningKey
+ metadataUpdateWebhookId
+ metadataUpdateWebhookSigningKey
}
}
`;
@@ -913,12 +915,12 @@ ${EventParametersFieldsFragmentDoc}`;
}
}
`;
- const GetEventPassNftContractNftsDocument = `
- query GetEventPassNftContractNfts($eventPassId: String) @cached {
+ const GetEventPassNftContractNftsLazyMintedDocument = `
+ query GetEventPassNftContractNftsLazyMinted($eventPassId: String) @cached {
eventPassNftContract(where: {eventPassId: {_eq: $eventPassId}}) {
contractAddress
eventPassId
- eventPassNfts {
+ eventPassNfts(where: {status: {_eq: LAZY_MINTED}}) {
id
packId
currentOwnerAddress
@@ -926,6 +928,7 @@ ${EventParametersFieldsFragmentDoc}`;
eventId
tokenId
eventPassId
+ status
}
}
}
@@ -935,24 +938,6 @@ ${EventParametersFieldsFragmentDoc}`;
eventPassOrderSums_by_pk(eventPassId: $eventPassId) {
totalReserved
}
-}
- `;
- const InsertMinterTemporaryWalletDocument = `
- mutation InsertMinterTemporaryWallet($object: minterTemporaryWallet_insert_input!) {
- insert_minterTemporaryWallet_one(object: $object) {
- address
- eventPassId
- packId
- }
-}
- `;
- const GetMinterTemporaryWalletByEventPassIdDocument = `
- query GetMinterTemporaryWalletByEventPassId($eventPassId: String!) {
- minterTemporaryWallet(where: {eventPassId: {_eq: $eventPassId}}) {
- address
- privateKey
- eventPassId
- }
}
`;
const CreatePackNftContractDocument = `
@@ -1060,6 +1045,254 @@ ${EventParametersFieldsFragmentDoc}`;
accountId
organizerSlug
}
+}
+ `;
+ const InsertLoyaltyCardNftContractDocument = `
+ mutation InsertLoyaltyCardNftContract($object: loyaltyCardNftContract_insert_input!) {
+ insert_loyaltyCardNftContract_one(object: $object) {
+ id
+ }
+}
+ `;
+ const CreateLoyaltyCardParametersDocument = `
+ mutation CreateLoyaltyCardParameters($object: loyaltyCardParameters_insert_input!) {
+ insert_loyaltyCardParameters_one(object: $object) {
+ id
+ }
+}
+ `;
+ const UpdateLoyaltyCardParametersDocument = `
+ mutation UpdateLoyaltyCardParameters($id: uuid!, $object: loyaltyCardParameters_set_input!) {
+ update_loyaltyCardParameters_by_pk(pk_columns: {id: $id}, _set: $object) {
+ id
+ }
+}
+ `;
+ const InsertLoyaltyCardNftDocument = `
+ mutation InsertLoyaltyCardNft($object: loyaltyCardNft_insert_input!) {
+ insert_loyaltyCardNft_one(object: $object) {
+ id
+ }
+}
+ `;
+ const UpdateLoyaltyCardNftDocument = `
+ mutation UpdateLoyaltyCardNft($id: uuid!, $object: loyaltyCardNft_set_input!) {
+ update_loyaltyCardNft_by_pk(pk_columns: {id: $id}, _set: $object) {
+ id
+ }
+}
+ `;
+ const UpdateLoyaltyCardNftsDocument = `
+ mutation UpdateLoyaltyCardNfts($updates: [loyaltyCardNft_updates!]!) {
+ update_loyaltyCardNft_many(updates: $updates) {
+ affected_rows
+ }
+}
+ `;
+ const GetLoyaltyCardOrganizerDocument = `
+ query GetLoyaltyCardOrganizer($organizerId: ID!, $stage: Stage!) @cached {
+ organizer(where: {id: $organizerId}, locales: [en], stage: $stage) {
+ loyaltyCard {
+ id
+ nftName
+ nftImage {
+ url
+ }
+ loyaltyCardParameters {
+ status
+ }
+ loyaltyCardNftContract {
+ contractAddress
+ chainId
+ }
+ }
+ }
+}
+ `;
+ const GetLoyaltyCardNftContractByLoyaltyCardIdDocument = `
+ query GetLoyaltyCardNftContractByLoyaltyCardId($loyaltyCardId: String!) {
+ loyaltyCardNftContract(where: {loyaltyCardId: {_eq: $loyaltyCardId}}, limit: 1) {
+ contractAddress
+ chainId
+ }
+}
+ `;
+ const GetAlchemyInfosFromLoyaltyCardIdDocument = `
+ query GetAlchemyInfosFromLoyaltyCardId($loyaltyCardId: String!) {
+ loyaltyCardParameters(where: {loyaltyCardId: {_eq: $loyaltyCardId}}, limit: 1) {
+ id
+ activityWebhookId
+ activityWebhookSigningKey
+ metadataUpdateWebhookId
+ metadataUpdateWebhookSigningKey
+ }
+}
+ `;
+ const GetLoyaltyCardOwnedByAddressDocument = `
+ query GetLoyaltyCardOwnedByAddress($contractAddress: String!, $chainId: String!, $ownerAddress: String!, $organizerId: String!) @cached {
+ loyaltyCardNft(
+ where: {contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}, ownerAddress: {_eq: $ownerAddress}, organizerId: {_eq: $organizerId}}
+ limit: 1
+ ) {
+ id
+ status
+ burnedTransferId
+ organizerId
+ }
+}
+ `;
+ const GetLoyaltyCardAlchemyEventDocument = `
+ query GetLoyaltyCardAlchemyEvent($contractAddress: String!, $chainId: String!, $tokenId: bigint!) {
+ loyaltyCardNft(
+ where: {contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}, tokenId: {_eq: $tokenId}}
+ limit: 1
+ ) {
+ id
+ status
+ }
+}
+ `;
+ const GetLoyaltyCardNftContractByContractAddressDocument = `
+ query GetLoyaltyCardNftContractByContractAddress($contractAddress: String!, $chainId: String!, $organizerId: String!) @cached {
+ loyaltyCardNftContract(
+ where: {contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}, organizerId: {_eq: $organizerId}}
+ limit: 1
+ ) {
+ loyaltyCardId
+ }
+}
+ `;
+ const GetLoyaltyCardByContractAddressForProcessDocument = `
+ query GetLoyaltyCardByContractAddressForProcess {
+ loyaltyCardNft(
+ where: {status: {_in: [CONFIRMED, ERROR]}}
+ order_by: {updated_at: desc}
+ ) {
+ id
+ status
+ updated_at
+ contractAddress
+ ownerAddress
+ loyaltyCardId
+ metadata
+ tokenId
+ }
+}
+ `;
+ const InsertMinterTemporaryWalletDocument = `
+ mutation InsertMinterTemporaryWallet($object: minterTemporaryWallet_insert_input!) {
+ insert_minterTemporaryWallet_one(object: $object) {
+ address
+ eventPassId
+ packId
+ loyaltyCardId
+ campaignId
+ }
+}
+ `;
+ const InsertMinterTemporaryWalletsDocument = `
+ mutation InsertMinterTemporaryWallets($objects: [minterTemporaryWallet_insert_input!]!) {
+ insert_minterTemporaryWallet(objects: $objects) {
+ affected_rows
+ returning {
+ address
+ eventPassId
+ packId
+ loyaltyCardId
+ campaignId
+ }
+ }
+}
+ `;
+ const GetMinterTemporaryWalletByEventPassIdDocument = `
+ query GetMinterTemporaryWalletByEventPassId($eventPassId: String!) {
+ minterTemporaryWallet(where: {eventPassId: {_eq: $eventPassId}}) {
+ address
+ privateKey
+ eventPassId
+ }
+}
+ `;
+ const GetMinterTemporaryWalletByLoyaltyCardIdDocument = `
+ query GetMinterTemporaryWalletByLoyaltyCardId($loyaltyCardId: String!) {
+ minterTemporaryWallet(where: {loyaltyCardId: {_eq: $loyaltyCardId}}) {
+ address
+ privateKey
+ loyaltyCardId
+ }
+}
+ `;
+ const GetMinterTemporaryWalletByCampaignIdDocument = `
+ query GetMinterTemporaryWalletByCampaignId($campaignId: String!) {
+ minterTemporaryWallet(where: {campaignId: {_eq: $campaignId}}) {
+ address
+ privateKey
+ campaignId
+ }
+}
+ `;
+ const InsertNftMintPasswordDocument = `
+ mutation InsertNftMintPassword($object: nftMintPassword_insert_input!) {
+ insert_nftMintPassword_one(object: $object) {
+ id
+ }
+}
+ `;
+ const InsertNftMintPasswordsDocument = `
+ mutation InsertNftMintPasswords($objects: [nftMintPassword_insert_input!]!) {
+ insert_nftMintPassword(objects: $objects) {
+ affected_rows
+ returning {
+ id
+ password
+ tokenId
+ minterAddress
+ }
+ }
+}
+ `;
+ const UpdateNftMintPasswordMinterDocument = `
+ mutation UpdateNftMintPasswordMinter($id: uuid!, $minterAddress: String!) {
+ update_nftMintPassword_by_pk(
+ pk_columns: {id: $id}
+ _set: {minterAddress: $minterAddress}
+ ) {
+ id
+ }
+}
+ `;
+ const UpdateNftMintPasswordTokenIdDocument = `
+ mutation UpdateNftMintPasswordTokenId($tokenId: bigint!, $minterAddress: String!, $contractAddress: String!, $chainId: String!) {
+ update_nftMintPassword(
+ where: {minterAddress: {_eq: $minterAddress}, contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}}
+ _set: {tokenId: $tokenId}
+ ) {
+ returning {
+ id
+ }
+ }
+}
+ `;
+ const GetNftMintPasswordsForContractDocument = `
+ query GetNftMintPasswordsForContract($contractAddress: String!, $chainId: String!) @cached {
+ nftMintPassword(
+ where: {contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}}
+ ) {
+ password
+ minterAddress
+ created_at
+ updated_at
+ }
+}
+ `;
+ const GetNftMintPasswordsForContractAvailableDocument = `
+ query GetNftMintPasswordsForContractAvailable($contractAddress: String!, $chainId: String!, $organizerId: String!) @cached {
+ nftMintPassword(
+ where: {contractAddress: {_eq: $contractAddress}, chainId: {_eq: $chainId}, minterAddress: {_is_null: true}, organizerId: {_eq: $organizerId}}
+ ) {
+ id
+ password
+ }
}
`;
const GetOrganizerDocument = `
@@ -1122,6 +1355,30 @@ ${EventParametersFieldsFragmentDoc}`;
heroImageClasses
}
}
+}
+ `;
+ const GetShopifyCustomerDocument = `
+ query GetShopifyCustomer($organizerId: String!, $customerId: String!) @cached {
+ shopifyCustomer(
+ where: {organizerId: {_eq: $organizerId}, customerId: {_eq: $customerId}}
+ limit: 1
+ ) {
+ address
+ }
+}
+ `;
+ const InsertShopifyCustomerDocument = `
+ mutation InsertShopifyCustomer($object: shopifyCustomer_insert_input!) {
+ insert_shopifyCustomer_one(object: $object) {
+ id
+ }
+}
+ `;
+ const GetShopifyDomainDocument = `
+ query GetShopifyDomain($domain: String!) @cached {
+ shopifyDomain_by_pk(domain: $domain) {
+ organizerId
+ }
}
`;
const GetEventPassNftByIdDocument = `
@@ -1153,6 +1410,91 @@ ${EventPassFieldsFragmentDoc}`;
}
}
${EventPassNftFieldsFragmentDoc}`;
+ const CreatePublishableApiKeyDocument = `
+ mutation CreatePublishableApiKey($object: publishableApiKey_insert_input!) {
+ insert_publishableApiKey_one(object: $object) {
+ id
+ name
+ apiKey
+ allowlist
+ organizerId
+ expiresAt
+ type
+ }
+}
+ `;
+ const UpdatePublishableApiKeyDocument = `
+ mutation UpdatePublishableApiKey($id: uuid!, $allowlist: String, $expiresAt: timestamptz, $status: apiKeyStatus_enum) {
+ update_publishableApiKey_by_pk(
+ pk_columns: {id: $id}
+ _set: {allowlist: $allowlist, expiresAt: $expiresAt, status: $status}
+ ) {
+ name
+ allowlist
+ organizerId
+ expiresAt
+ }
+}
+ `;
+ const GetPublishableApiKeyDocument = `
+ query GetPublishableApiKey($apiKey: String!) {
+ publishableApiKey(where: {apiKey: {_eq: $apiKey}}) {
+ id
+ allowlist
+ organizerId
+ expiresAt
+ status
+ type
+ }
+}
+ `;
+ const CreateSecretApiKeyDocument = `
+ mutation CreateSecretApiKey($object: secretApiKey_insert_input!) {
+ insert_secretApiKey_one(object: $object) {
+ id
+ name
+ apiKey
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ type
+ }
+}
+ `;
+ const UpdateSecretApiKeyDocument = `
+ mutation UpdateSecretApiKey($id: uuid!, $allowlist: String, $expiresAt: timestamptz, $status: apiKeyStatus_enum) {
+ update_secretApiKey_by_pk(
+ pk_columns: {id: $id}
+ _set: {allowlist: $allowlist, expiresAt: $expiresAt, status: $status}
+ ) {
+ name
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ }
+}
+ `;
+ const GetSecretApiKeyDocument = `
+ query GetSecretApiKey($apiKey: String!) {
+ secretApiKey(where: {apiKey: {_eq: $apiKey}}) {
+ id
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ status
+ type
+ }
+}
+ `;
const CreateRoleAssignmentDocument = `
mutation CreateRoleAssignment($input: roleAssignment_insert_input!) {
insert_roleAssignment_one(object: $input) {
@@ -1352,18 +1694,12 @@ export function getSdk(requester: Requester) {
GetEventPassNftContractDelayedRevealPassword(variables?: Types.GetEventPassNftContractDelayedRevealPasswordQueryVariables, options?: C): Promise {
return requester(GetEventPassNftContractDelayedRevealPasswordDocument, variables, options) as Promise;
},
- GetEventPassNftContractNfts(variables?: Types.GetEventPassNftContractNftsQueryVariables, options?: C): Promise {
- return requester(GetEventPassNftContractNftsDocument, variables, options) as Promise;
+ GetEventPassNftContractNftsLazyMinted(variables?: Types.GetEventPassNftContractNftsLazyMintedQueryVariables, options?: C): Promise {
+ return requester(GetEventPassNftContractNftsLazyMintedDocument, variables, options) as Promise;
},
GetEventPassOrderSums(variables: Types.GetEventPassOrderSumsQueryVariables, options?: C): Promise {
return requester(GetEventPassOrderSumsDocument, variables, options) as Promise;
},
- InsertMinterTemporaryWallet(variables: Types.InsertMinterTemporaryWalletMutationVariables, options?: C): Promise {
- return requester(InsertMinterTemporaryWalletDocument, variables, options) as Promise;
- },
- GetMinterTemporaryWalletByEventPassId(variables: Types.GetMinterTemporaryWalletByEventPassIdQueryVariables, options?: C): Promise {
- return requester(GetMinterTemporaryWalletByEventPassIdDocument, variables, options) as Promise;
- },
CreatePackNftContract(variables: Types.CreatePackNftContractMutationVariables, options?: C): Promise {
return requester(CreatePackNftContractDocument, variables, options) as Promise;
},
@@ -1391,6 +1727,78 @@ export function getSdk(requester: Requester) {
CheckFollowingOrganizer(variables: Types.CheckFollowingOrganizerQueryVariables, options?: C): Promise {
return requester(CheckFollowingOrganizerDocument, variables, options) as Promise;
},
+ InsertLoyaltyCardNftContract(variables: Types.InsertLoyaltyCardNftContractMutationVariables, options?: C): Promise {
+ return requester(InsertLoyaltyCardNftContractDocument, variables, options) as Promise;
+ },
+ CreateLoyaltyCardParameters(variables: Types.CreateLoyaltyCardParametersMutationVariables, options?: C): Promise {
+ return requester(CreateLoyaltyCardParametersDocument, variables, options) as Promise;
+ },
+ UpdateLoyaltyCardParameters(variables: Types.UpdateLoyaltyCardParametersMutationVariables, options?: C): Promise {
+ return requester(UpdateLoyaltyCardParametersDocument, variables, options) as Promise;
+ },
+ InsertLoyaltyCardNft(variables: Types.InsertLoyaltyCardNftMutationVariables, options?: C): Promise {
+ return requester(InsertLoyaltyCardNftDocument, variables, options) as Promise;
+ },
+ UpdateLoyaltyCardNft(variables: Types.UpdateLoyaltyCardNftMutationVariables, options?: C): Promise {
+ return requester(UpdateLoyaltyCardNftDocument, variables, options) as Promise;
+ },
+ UpdateLoyaltyCardNfts(variables: Types.UpdateLoyaltyCardNftsMutationVariables, options?: C): Promise {
+ return requester(UpdateLoyaltyCardNftsDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardOrganizer(variables: Types.GetLoyaltyCardOrganizerQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardOrganizerDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardNftContractByLoyaltyCardId(variables: Types.GetLoyaltyCardNftContractByLoyaltyCardIdQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardNftContractByLoyaltyCardIdDocument, variables, options) as Promise;
+ },
+ GetAlchemyInfosFromLoyaltyCardId(variables: Types.GetAlchemyInfosFromLoyaltyCardIdQueryVariables, options?: C): Promise {
+ return requester(GetAlchemyInfosFromLoyaltyCardIdDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardOwnedByAddress(variables: Types.GetLoyaltyCardOwnedByAddressQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardOwnedByAddressDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardAlchemyEvent(variables: Types.GetLoyaltyCardAlchemyEventQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardAlchemyEventDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardNftContractByContractAddress(variables: Types.GetLoyaltyCardNftContractByContractAddressQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardNftContractByContractAddressDocument, variables, options) as Promise;
+ },
+ GetLoyaltyCardByContractAddressForProcess(variables?: Types.GetLoyaltyCardByContractAddressForProcessQueryVariables, options?: C): Promise {
+ return requester(GetLoyaltyCardByContractAddressForProcessDocument, variables, options) as Promise;
+ },
+ InsertMinterTemporaryWallet(variables: Types.InsertMinterTemporaryWalletMutationVariables, options?: C): Promise {
+ return requester(InsertMinterTemporaryWalletDocument, variables, options) as Promise;
+ },
+ InsertMinterTemporaryWallets(variables: Types.InsertMinterTemporaryWalletsMutationVariables, options?: C): Promise {
+ return requester(InsertMinterTemporaryWalletsDocument, variables, options) as Promise;
+ },
+ GetMinterTemporaryWalletByEventPassId(variables: Types.GetMinterTemporaryWalletByEventPassIdQueryVariables, options?: C): Promise {
+ return requester(GetMinterTemporaryWalletByEventPassIdDocument, variables, options) as Promise;
+ },
+ GetMinterTemporaryWalletByLoyaltyCardId(variables: Types.GetMinterTemporaryWalletByLoyaltyCardIdQueryVariables, options?: C): Promise {
+ return requester(GetMinterTemporaryWalletByLoyaltyCardIdDocument, variables, options) as Promise;
+ },
+ GetMinterTemporaryWalletByCampaignId(variables: Types.GetMinterTemporaryWalletByCampaignIdQueryVariables, options?: C): Promise {
+ return requester(GetMinterTemporaryWalletByCampaignIdDocument, variables, options) as Promise;
+ },
+ InsertNftMintPassword(variables: Types.InsertNftMintPasswordMutationVariables, options?: C): Promise {
+ return requester(InsertNftMintPasswordDocument, variables, options) as Promise;
+ },
+ InsertNftMintPasswords(variables: Types.InsertNftMintPasswordsMutationVariables, options?: C): Promise {
+ return requester(InsertNftMintPasswordsDocument, variables, options) as Promise;
+ },
+ UpdateNftMintPasswordMinter(variables: Types.UpdateNftMintPasswordMinterMutationVariables, options?: C): Promise {
+ return requester(UpdateNftMintPasswordMinterDocument, variables, options) as Promise;
+ },
+ UpdateNftMintPasswordTokenId(variables: Types.UpdateNftMintPasswordTokenIdMutationVariables, options?: C): Promise {
+ return requester(UpdateNftMintPasswordTokenIdDocument, variables, options) as Promise;
+ },
+ GetNftMintPasswordsForContract(variables: Types.GetNftMintPasswordsForContractQueryVariables, options?: C): Promise {
+ return requester(GetNftMintPasswordsForContractDocument, variables, options) as Promise;
+ },
+ GetNftMintPasswordsForContractAvailable(variables: Types.GetNftMintPasswordsForContractAvailableQueryVariables, options?: C): Promise {
+ return requester(GetNftMintPasswordsForContractAvailableDocument, variables, options) as Promise;
+ },
GetOrganizer(variables: Types.GetOrganizerQueryVariables, options?: C): Promise {
return requester(GetOrganizerDocument, variables, options) as Promise;
},
@@ -1400,6 +1808,15 @@ export function getSdk(requester: Requester) {
GetOrganizerLatestEvents(variables: Types.GetOrganizerLatestEventsQueryVariables, options?: C): Promise {
return requester(GetOrganizerLatestEventsDocument, variables, options) as Promise;
},
+ GetShopifyCustomer(variables: Types.GetShopifyCustomerQueryVariables, options?: C): Promise {
+ return requester(GetShopifyCustomerDocument, variables, options) as Promise;
+ },
+ InsertShopifyCustomer(variables: Types.InsertShopifyCustomerMutationVariables, options?: C): Promise {
+ return requester(InsertShopifyCustomerDocument, variables, options) as Promise;
+ },
+ GetShopifyDomain(variables: Types.GetShopifyDomainQueryVariables, options?: C): Promise {
+ return requester(GetShopifyDomainDocument, variables, options) as Promise;
+ },
GetEventPassNftById(variables: Types.GetEventPassNftByIdQueryVariables, options?: C): Promise {
return requester(GetEventPassNftByIdDocument, variables, options) as Promise;
},
@@ -1409,6 +1826,24 @@ export function getSdk(requester: Requester) {
GetEventPassNftByIdWithEventPassNftContract(variables: Types.GetEventPassNftByIdWithEventPassNftContractQueryVariables, options?: C): Promise {
return requester(GetEventPassNftByIdWithEventPassNftContractDocument, variables, options) as Promise;
},
+ CreatePublishableApiKey(variables: Types.CreatePublishableApiKeyMutationVariables, options?: C): Promise {
+ return requester(CreatePublishableApiKeyDocument, variables, options) as Promise;
+ },
+ UpdatePublishableApiKey(variables: Types.UpdatePublishableApiKeyMutationVariables, options?: C): Promise {
+ return requester(UpdatePublishableApiKeyDocument, variables, options) as Promise;
+ },
+ GetPublishableApiKey(variables: Types.GetPublishableApiKeyQueryVariables, options?: C): Promise {
+ return requester(GetPublishableApiKeyDocument, variables, options) as Promise;
+ },
+ CreateSecretApiKey(variables: Types.CreateSecretApiKeyMutationVariables, options?: C): Promise {
+ return requester(CreateSecretApiKeyDocument, variables, options) as Promise;
+ },
+ UpdateSecretApiKey(variables: Types.UpdateSecretApiKeyMutationVariables, options?: C): Promise {
+ return requester(UpdateSecretApiKeyDocument, variables, options) as Promise;
+ },
+ GetSecretApiKey(variables: Types.GetSecretApiKeyQueryVariables, options?: C): Promise {
+ return requester(GetSecretApiKeyDocument, variables, options) as Promise;
+ },
CreateRoleAssignment(variables: Types.CreateRoleAssignmentMutationVariables, options?: C): Promise {
return requester(CreateRoleAssignmentDocument, variables, options) as Promise;
},
diff --git a/libs/gql/admin/api/src/generated/schema.graphql b/libs/gql/admin/api/src/generated/schema.graphql
index e7c302f82..df7732e0d 100644
--- a/libs/gql/admin/api/src/generated/schema.graphql
+++ b/libs/gql/admin/api/src/generated/schema.graphql
@@ -285,6 +285,35 @@ type Asset implements Entity & Node {
skip: Int
where: EventPassDelayedRevealedWhereInput
): [EventPassDelayedRevealed!]!
+ nftImageLoyaltyCard(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ where: LoyaltyCardWhereInput
+ ): [LoyaltyCard!]!
nftImagePack(
after: String
before: String
@@ -446,6 +475,7 @@ input AssetCreateInput {
mimeType: String
nftImageEventPass: EventPassCreateManyInlineInput
nftImageEventPassDelayedRevealed: EventPassDelayedRevealedCreateManyInlineInput
+ nftImageLoyaltyCard: LoyaltyCardCreateManyInlineInput
nftImagePack: PackCreateManyInlineInput
size: Float
updatedAt: DateTime
@@ -576,6 +606,9 @@ input AssetManyWhereInput {
nftImageEventPass_every: EventPassWhereInput
nftImageEventPass_none: EventPassWhereInput
nftImageEventPass_some: EventPassWhereInput
+ nftImageLoyaltyCard_every: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_none: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_some: LoyaltyCardWhereInput
nftImagePack_every: PackWhereInput
nftImagePack_none: PackWhereInput
nftImagePack_some: PackWhereInput
@@ -676,6 +709,7 @@ input AssetUpdateInput {
mimeType: String
nftImageEventPass: EventPassUpdateManyInlineInput
nftImageEventPassDelayedRevealed: EventPassDelayedRevealedUpdateManyInlineInput
+ nftImageLoyaltyCard: LoyaltyCardUpdateManyInlineInput
nftImagePack: PackUpdateManyInlineInput
size: Float
width: Float
@@ -987,6 +1021,9 @@ input AssetWhereInput {
nftImageEventPass_every: EventPassWhereInput
nftImageEventPass_none: EventPassWhereInput
nftImageEventPass_some: EventPassWhereInput
+ nftImageLoyaltyCard_every: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_none: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_some: LoyaltyCardWhereInput
nftImagePack_every: PackWhereInput
nftImagePack_none: PackWhereInput
nftImagePack_some: PackWhereInput
@@ -2191,6 +2228,9 @@ enum EntityTypeName {
"""
LocationAddress
+ """Root loyalty card model"""
+ LoyaltyCard
+
"""
An organizer is an entity that launch events and handle the pass benefits.
"""
@@ -5955,56 +5995,10 @@ The Long scalar type represents non-fractional signed whole numeric values. Long
"""
scalar Long
-"""An object with an ID"""
-interface Node {
- """The id of the object."""
- id: ID!
-
- """The Stage of an object"""
- stage: Stage!
-}
-
-"""
-An organizer is an entity that launch events and handle the pass benefits.
-"""
-type Organizer implements Entity & Node {
- contentSpaces(
- after: String
- before: String
- first: Int
-
- """
- Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
-
- Note that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
- last: Int
-
- """
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- """
- locales: [Locale!]
- orderBy: ContentSpaceOrderByInput
- skip: Int
- where: ContentSpaceWhereInput
- ): [ContentSpace!]!
-
+"""Root loyalty card model"""
+type LoyaltyCard implements Entity & Node {
"""The time the document was created"""
- createdAt(
- """
- Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
- """
- variation: SystemDateTimeFieldVariation! = COMBINED
- ): DateTime!
+ createdAt: DateTime!
"""User that created this document"""
createdBy(
@@ -6028,12 +6022,6 @@ type Organizer implements Entity & Node {
"""
locales: [Locale!]
): User
- description: OrganizerDescriptionRichText
-
- """
- The discord widge id of the organizer. You need to enable the widget in your discord server and copy the value in `server id`. For details instruction of how to enable and find the id, refer to this section https://dev.fandom.com/wiki/DiscordIntegrator#Enabling_the_widget
- """
- discordWidgetId: String
"""Get the document in other stages"""
documentInStages(
@@ -6047,50 +6035,30 @@ type Organizer implements Entity & Node {
"""Potential stages that should be returned"""
stages: [Stage!]! = [DRAFT, PUBLISHED]
- ): [Organizer!]!
- events(
- after: String
- before: String
- first: Int
+ ): [LoyaltyCard!]!
- """
- Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
-
- Note that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
- last: Int
+ """List of LoyaltyCard versions"""
+ history(
+ limit: Int! = 10
+ skip: Int! = 0
"""
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ This is optional and can be used to fetch the document version history for a specific stage instead of the current one
"""
- locales: [Locale!]
- orderBy: EventOrderByInput
- skip: Int
- where: EventWhereInput
- ): [Event!]!
+ stageOverride: Stage
+ ): [Version!]!
- """
- The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.
- """
- facebookHandle: String
+ """The unique identifier"""
+ id: ID!
+ loyaltyCardNftContract: loyaltyCardNftContract
+ loyaltyCardParameters: loyaltyCardParameters
- """
- An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels
- """
- heroImage(
+ """Image representing the NFT. Advised resolution is 800 x 800 pixels."""
+ nftImage(
"""
Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
@@ -6100,7 +6068,7 @@ type Organizer implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
@@ -6108,33 +6076,13 @@ type Organizer implements Entity & Node {
locales: [Locale!]
): Asset!
- """
- Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)
- """
- heroImageClasses: String
-
- """List of Organizer versions"""
- history(
- limit: Int! = 10
- skip: Int! = 0
-
- """
- This is optional and can be used to fetch the document version history for a specific stage instead of the current one
- """
- stageOverride: Stage
- ): [Version!]!
-
- """The unique identifier"""
- id: ID!
-
- """
- Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.
- """
- image(
+ """Name associated with the NFT. Cannot be localized."""
+ nftName: String!
+ organizer(
"""
Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
@@ -6144,56 +6092,16 @@ type Organizer implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- ): Asset!
-
- """
- Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)
- """
- imageClasses: String
-
- """
- The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.
- """
- instagramHandle: String
-
- """System Locale field"""
- locale: Locale!
-
- """Get the other localizations for this document"""
- localizations(
- """Decides if the current locale should be included or not"""
- includeCurrent: Boolean! = false
-
- """
- Potential locales that should be returned.
-
- The order of locales will also override locale fall-backing behaviour in the query's subtree.
-
- Note any related model with localized fields in the query's subtree will be affected.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
-
- Consider using this in conjunction with forceParentLocale on the children relation fields.
- """
- locales: [Locale!]! = [en, fr]
- ): [Organizer!]!
-
- """Name of the organizer"""
- name: String!
+ ): Organizer
"""The time the document was published. Null on documents in draft stage."""
- publishedAt(
- """
- Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
- """
- variation: SystemDateTimeFieldVariation! = COMBINED
- ): DateTime
+ publishedAt: DateTime
"""User that last published this document"""
publishedBy(
@@ -6246,34 +6154,11 @@ type Organizer implements Entity & Node {
where: ScheduledOperationWhereInput
): [ScheduledOperation!]!
- """Used in URL"""
- slug: String!
-
"""System stage field"""
stage: Stage!
- """
- The telegram handle (username) of the organizer. You can just copy the text on your telegram profile page in parameters after the @, like 'johndoe' for '@johndoe'.
- """
- telegramHandle: String
-
- """
- The tiktok handle (username) of the organizer. You can just copy the name on your tiktok landing page.
- """
- tiktokHandle: String
-
- """
- The twitter (X) handle (username) of the organizer. You can just copy the text on your twitter landing page after the @, like 'johndoe' for '@johndoe'.
- """
- twitterHandle: String
-
"""The time the document was updated"""
- updatedAt(
- """
- Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
- """
- variation: SystemDateTimeFieldVariation! = COMBINED
- ): DateTime!
+ updatedAt: DateTime!
"""User that last updated this document"""
updatedBy(
@@ -6297,137 +6182,76 @@ type Organizer implements Entity & Node {
"""
locales: [Locale!]
): User
-
- """
- The youtube handle (username) of the organizer. YYou can just copy the text on your youtube landing page after the @, like 'johndoe' for '@johndoe'.
- """
- youtubeHandle: String
}
-input OrganizerConnectInput {
+input LoyaltyCardConnectInput {
"""
Allow to specify document position in list of connected documents, will default to appending at end of list
"""
position: ConnectPositionInput
"""Document to connect"""
- where: OrganizerWhereUniqueInput!
+ where: LoyaltyCardWhereUniqueInput!
}
"""A connection to a list of items."""
-type OrganizerConnection {
+type LoyaltyCardConnection {
aggregate: Aggregate!
"""A list of edges."""
- edges: [OrganizerEdge!]!
+ edges: [LoyaltyCardEdge!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
-input OrganizerCreateInput {
- clr7j9mmt0q2j01uo9zrs2fm7: PackCreateManyInlineInput
- contentSpaces: ContentSpaceCreateManyInlineInput
+input LoyaltyCardCreateInput {
+ cltzsfm12094507ul1er1czw6: OrganizerCreateManyInlineInput
createdAt: DateTime
-
- """description input for default locale (en)"""
- description: RichTextAST
- discordWidgetId: String
- events: EventCreateManyInlineInput
- facebookHandle: String
- heroImage: AssetCreateOneInlineInput!
- heroImageClasses: String
- image: AssetCreateOneInlineInput!
- imageClasses: String
- instagramHandle: String
-
- """
- Inline mutations for managing document localizations excluding the default locale
- """
- localizations: OrganizerCreateLocalizationsInput
- name: String!
- slug: String!
- telegramHandle: String
- tiktokHandle: String
- twitterHandle: String
- updatedAt: DateTime
- youtubeHandle: String
-}
-
-input OrganizerCreateLocalizationDataInput {
- createdAt: DateTime
- description: RichTextAST
+ nftImage: AssetCreateOneInlineInput!
+ nftName: String!
+ organizer: OrganizerCreateOneInlineInput
updatedAt: DateTime
}
-input OrganizerCreateLocalizationInput {
- """Localization input"""
- data: OrganizerCreateLocalizationDataInput!
- locale: Locale!
-}
-
-input OrganizerCreateLocalizationsInput {
- """Create localizations for the newly-created document"""
- create: [OrganizerCreateLocalizationInput!]
-}
-
-input OrganizerCreateManyInlineInput {
- """Connect multiple existing Organizer documents"""
- connect: [OrganizerWhereUniqueInput!]
+input LoyaltyCardCreateManyInlineInput {
+ """Connect multiple existing LoyaltyCard documents"""
+ connect: [LoyaltyCardWhereUniqueInput!]
- """Create and connect multiple existing Organizer documents"""
- create: [OrganizerCreateInput!]
+ """Create and connect multiple existing LoyaltyCard documents"""
+ create: [LoyaltyCardCreateInput!]
}
-input OrganizerCreateOneInlineInput {
- """Connect one existing Organizer document"""
- connect: OrganizerWhereUniqueInput
+input LoyaltyCardCreateOneInlineInput {
+ """Connect one existing LoyaltyCard document"""
+ connect: LoyaltyCardWhereUniqueInput
- """Create and connect one Organizer document"""
- create: OrganizerCreateInput
+ """Create and connect one LoyaltyCard document"""
+ create: LoyaltyCardCreateInput
}
-type OrganizerDescriptionRichText {
- """Returns HTMl representation"""
- html: String!
- json: RichTextAST!
-
- """Returns Markdown representation"""
- markdown: String!
- raw: RichTextAST!
- references(after: String, before: String, first: Int, last: Int, skip: Int): [OrganizerDescriptionRichTextEmbeddedTypes!]!
-
- """Returns plain-text contents of RichText"""
- text: String!
-}
-
-union OrganizerDescriptionRichTextEmbeddedTypes = Asset
-
"""An edge in a connection."""
-type OrganizerEdge {
+type LoyaltyCardEdge {
"""A cursor for use in pagination."""
cursor: String!
"""The item at the end of the edge."""
- node: Organizer!
+ node: LoyaltyCard!
}
"""Identifies documents"""
-input OrganizerManyWhereInput {
+input LoyaltyCardManyWhereInput {
"""Logical AND on all given filters."""
- AND: [OrganizerWhereInput!]
+ AND: [LoyaltyCardWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [OrganizerWhereInput!]
+ NOT: [LoyaltyCardWhereInput!]
"""Logical OR on all given filters."""
- OR: [OrganizerWhereInput!]
+ OR: [LoyaltyCardWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
- contentSpaces_every: ContentSpaceWhereInput
- contentSpaces_none: ContentSpaceWhereInput
- contentSpaces_some: ContentSpaceWhereInput
createdAt: DateTime
"""All values greater than the given value."""
@@ -6451,97 +6275,9 @@ input OrganizerManyWhereInput {
"""All values that are not contained in given list."""
createdAt_not_in: [DateTime]
createdBy: UserWhereInput
- discordWidgetId: String
-
- """All values containing the given string."""
- discordWidgetId_contains: String
-
- """All values ending with the given string."""
- discordWidgetId_ends_with: String
-
- """All values that are contained in given list."""
- discordWidgetId_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- discordWidgetId_not: String
-
- """All values not containing the given string."""
- discordWidgetId_not_contains: String
-
- """All values not ending with the given string"""
- discordWidgetId_not_ends_with: String
-
- """All values that are not contained in given list."""
- discordWidgetId_not_in: [String]
-
- """All values not starting with the given string."""
- discordWidgetId_not_starts_with: String
-
- """All values starting with the given string."""
- discordWidgetId_starts_with: String
- documentInStages_every: OrganizerWhereStageInput
- documentInStages_none: OrganizerWhereStageInput
- documentInStages_some: OrganizerWhereStageInput
- events_every: EventWhereInput
- events_none: EventWhereInput
- events_some: EventWhereInput
- facebookHandle: String
-
- """All values containing the given string."""
- facebookHandle_contains: String
-
- """All values ending with the given string."""
- facebookHandle_ends_with: String
-
- """All values that are contained in given list."""
- facebookHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- facebookHandle_not: String
-
- """All values not containing the given string."""
- facebookHandle_not_contains: String
-
- """All values not ending with the given string"""
- facebookHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- facebookHandle_not_in: [String]
-
- """All values not starting with the given string."""
- facebookHandle_not_starts_with: String
-
- """All values starting with the given string."""
- facebookHandle_starts_with: String
- heroImage: AssetWhereInput
- heroImageClasses: String
-
- """All values containing the given string."""
- heroImageClasses_contains: String
-
- """All values ending with the given string."""
- heroImageClasses_ends_with: String
-
- """All values that are contained in given list."""
- heroImageClasses_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- heroImageClasses_not: String
-
- """All values not containing the given string."""
- heroImageClasses_not_contains: String
-
- """All values not ending with the given string"""
- heroImageClasses_not_ends_with: String
-
- """All values that are not contained in given list."""
- heroImageClasses_not_in: [String]
-
- """All values not starting with the given string."""
- heroImageClasses_not_starts_with: String
-
- """All values starting with the given string."""
- heroImageClasses_starts_with: String
+ documentInStages_every: LoyaltyCardWhereStageInput
+ documentInStages_none: LoyaltyCardWhereStageInput
+ documentInStages_some: LoyaltyCardWhereStageInput
id: ID
"""All values containing the given string."""
@@ -6570,91 +6306,36 @@ input OrganizerManyWhereInput {
"""All values starting with the given string."""
id_starts_with: ID
- image: AssetWhereInput
- imageClasses: String
-
- """All values containing the given string."""
- imageClasses_contains: String
-
- """All values ending with the given string."""
- imageClasses_ends_with: String
-
- """All values that are contained in given list."""
- imageClasses_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- imageClasses_not: String
-
- """All values not containing the given string."""
- imageClasses_not_contains: String
-
- """All values not ending with the given string"""
- imageClasses_not_ends_with: String
-
- """All values that are not contained in given list."""
- imageClasses_not_in: [String]
-
- """All values not starting with the given string."""
- imageClasses_not_starts_with: String
-
- """All values starting with the given string."""
- imageClasses_starts_with: String
- instagramHandle: String
-
- """All values containing the given string."""
- instagramHandle_contains: String
-
- """All values ending with the given string."""
- instagramHandle_ends_with: String
-
- """All values that are contained in given list."""
- instagramHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- instagramHandle_not: String
-
- """All values not containing the given string."""
- instagramHandle_not_contains: String
-
- """All values not ending with the given string"""
- instagramHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- instagramHandle_not_in: [String]
-
- """All values not starting with the given string."""
- instagramHandle_not_starts_with: String
-
- """All values starting with the given string."""
- instagramHandle_starts_with: String
- name: String
+ nftImage: AssetWhereInput
+ nftName: String
"""All values containing the given string."""
- name_contains: String
+ nftName_contains: String
"""All values ending with the given string."""
- name_ends_with: String
+ nftName_ends_with: String
"""All values that are contained in given list."""
- name_in: [String]
+ nftName_in: [String]
"""Any other value that exists and is not equal to the given value."""
- name_not: String
+ nftName_not: String
"""All values not containing the given string."""
- name_not_contains: String
+ nftName_not_contains: String
"""All values not ending with the given string"""
- name_not_ends_with: String
+ nftName_not_ends_with: String
"""All values that are not contained in given list."""
- name_not_in: [String]
+ nftName_not_in: [String]
"""All values not starting with the given string."""
- name_not_starts_with: String
+ nftName_not_starts_with: String
"""All values starting with the given string."""
- name_starts_with: String
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
publishedAt: DateTime
"""All values greater than the given value."""
@@ -6681,118 +6362,6 @@ input OrganizerManyWhereInput {
scheduledIn_every: ScheduledOperationWhereInput
scheduledIn_none: ScheduledOperationWhereInput
scheduledIn_some: ScheduledOperationWhereInput
- slug: String
-
- """All values containing the given string."""
- slug_contains: String
-
- """All values ending with the given string."""
- slug_ends_with: String
-
- """All values that are contained in given list."""
- slug_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- slug_not: String
-
- """All values not containing the given string."""
- slug_not_contains: String
-
- """All values not ending with the given string"""
- slug_not_ends_with: String
-
- """All values that are not contained in given list."""
- slug_not_in: [String]
-
- """All values not starting with the given string."""
- slug_not_starts_with: String
-
- """All values starting with the given string."""
- slug_starts_with: String
- telegramHandle: String
-
- """All values containing the given string."""
- telegramHandle_contains: String
-
- """All values ending with the given string."""
- telegramHandle_ends_with: String
-
- """All values that are contained in given list."""
- telegramHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- telegramHandle_not: String
-
- """All values not containing the given string."""
- telegramHandle_not_contains: String
-
- """All values not ending with the given string"""
- telegramHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- telegramHandle_not_in: [String]
-
- """All values not starting with the given string."""
- telegramHandle_not_starts_with: String
-
- """All values starting with the given string."""
- telegramHandle_starts_with: String
- tiktokHandle: String
-
- """All values containing the given string."""
- tiktokHandle_contains: String
-
- """All values ending with the given string."""
- tiktokHandle_ends_with: String
-
- """All values that are contained in given list."""
- tiktokHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- tiktokHandle_not: String
-
- """All values not containing the given string."""
- tiktokHandle_not_contains: String
-
- """All values not ending with the given string"""
- tiktokHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- tiktokHandle_not_in: [String]
-
- """All values not starting with the given string."""
- tiktokHandle_not_starts_with: String
-
- """All values starting with the given string."""
- tiktokHandle_starts_with: String
- twitterHandle: String
-
- """All values containing the given string."""
- twitterHandle_contains: String
-
- """All values ending with the given string."""
- twitterHandle_ends_with: String
-
- """All values that are contained in given list."""
- twitterHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- twitterHandle_not: String
-
- """All values not containing the given string."""
- twitterHandle_not_contains: String
-
- """All values not ending with the given string"""
- twitterHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- twitterHandle_not_in: [String]
-
- """All values not starting with the given string."""
- twitterHandle_not_starts_with: String
-
- """All values starting with the given string."""
- twitterHandle_starts_with: String
updatedAt: DateTime
"""All values greater than the given value."""
@@ -6816,225 +6385,105 @@ input OrganizerManyWhereInput {
"""All values that are not contained in given list."""
updatedAt_not_in: [DateTime]
updatedBy: UserWhereInput
- youtubeHandle: String
-
- """All values containing the given string."""
- youtubeHandle_contains: String
-
- """All values ending with the given string."""
- youtubeHandle_ends_with: String
-
- """All values that are contained in given list."""
- youtubeHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- youtubeHandle_not: String
-
- """All values not containing the given string."""
- youtubeHandle_not_contains: String
-
- """All values not ending with the given string"""
- youtubeHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- youtubeHandle_not_in: [String]
-
- """All values not starting with the given string."""
- youtubeHandle_not_starts_with: String
-
- """All values starting with the given string."""
- youtubeHandle_starts_with: String
}
-enum OrganizerOrderByInput {
+enum LoyaltyCardOrderByInput {
createdAt_ASC
createdAt_DESC
- discordWidgetId_ASC
- discordWidgetId_DESC
- facebookHandle_ASC
- facebookHandle_DESC
- heroImageClasses_ASC
- heroImageClasses_DESC
id_ASC
id_DESC
- imageClasses_ASC
- imageClasses_DESC
- instagramHandle_ASC
- instagramHandle_DESC
- name_ASC
- name_DESC
+ nftName_ASC
+ nftName_DESC
publishedAt_ASC
publishedAt_DESC
- slug_ASC
- slug_DESC
- telegramHandle_ASC
- telegramHandle_DESC
- tiktokHandle_ASC
- tiktokHandle_DESC
- twitterHandle_ASC
- twitterHandle_DESC
updatedAt_ASC
updatedAt_DESC
- youtubeHandle_ASC
- youtubeHandle_DESC
-}
-
-input OrganizerUpdateInput {
- clr7j9mmt0q2j01uo9zrs2fm7: PackUpdateManyInlineInput
- contentSpaces: ContentSpaceUpdateManyInlineInput
-
- """description input for default locale (en)"""
- description: RichTextAST
- discordWidgetId: String
- events: EventUpdateManyInlineInput
- facebookHandle: String
- heroImage: AssetUpdateOneInlineInput
- heroImageClasses: String
- image: AssetUpdateOneInlineInput
- imageClasses: String
- instagramHandle: String
-
- """Manage document localizations"""
- localizations: OrganizerUpdateLocalizationsInput
- name: String
- slug: String
- telegramHandle: String
- tiktokHandle: String
- twitterHandle: String
- youtubeHandle: String
-}
-
-input OrganizerUpdateLocalizationDataInput {
- description: RichTextAST
-}
-
-input OrganizerUpdateLocalizationInput {
- data: OrganizerUpdateLocalizationDataInput!
- locale: Locale!
}
-input OrganizerUpdateLocalizationsInput {
- """Localizations to create"""
- create: [OrganizerCreateLocalizationInput!]
-
- """Localizations to delete"""
- delete: [Locale!]
-
- """Localizations to update"""
- update: [OrganizerUpdateLocalizationInput!]
- upsert: [OrganizerUpsertLocalizationInput!]
+input LoyaltyCardUpdateInput {
+ cltzsfm12094507ul1er1czw6: OrganizerUpdateManyInlineInput
+ nftImage: AssetUpdateOneInlineInput
+ nftName: String
+ organizer: OrganizerUpdateOneInlineInput
}
-input OrganizerUpdateManyInlineInput {
- """Connect multiple existing Organizer documents"""
- connect: [OrganizerConnectInput!]
+input LoyaltyCardUpdateManyInlineInput {
+ """Connect multiple existing LoyaltyCard documents"""
+ connect: [LoyaltyCardConnectInput!]
- """Create and connect multiple Organizer documents"""
- create: [OrganizerCreateInput!]
+ """Create and connect multiple LoyaltyCard documents"""
+ create: [LoyaltyCardCreateInput!]
- """Delete multiple Organizer documents"""
- delete: [OrganizerWhereUniqueInput!]
+ """Delete multiple LoyaltyCard documents"""
+ delete: [LoyaltyCardWhereUniqueInput!]
- """Disconnect multiple Organizer documents"""
- disconnect: [OrganizerWhereUniqueInput!]
+ """Disconnect multiple LoyaltyCard documents"""
+ disconnect: [LoyaltyCardWhereUniqueInput!]
"""
- Override currently-connected documents with multiple existing Organizer documents
+ Override currently-connected documents with multiple existing LoyaltyCard documents
"""
- set: [OrganizerWhereUniqueInput!]
-
- """Update multiple Organizer documents"""
- update: [OrganizerUpdateWithNestedWhereUniqueInput!]
-
- """Upsert multiple Organizer documents"""
- upsert: [OrganizerUpsertWithNestedWhereUniqueInput!]
-}
-
-input OrganizerUpdateManyInput {
- """description input for default locale (en)"""
- description: RichTextAST
- discordWidgetId: String
- facebookHandle: String
- heroImageClasses: String
- imageClasses: String
- instagramHandle: String
-
- """Optional updates to localizations"""
- localizations: OrganizerUpdateManyLocalizationsInput
- telegramHandle: String
- tiktokHandle: String
- twitterHandle: String
- youtubeHandle: String
-}
+ set: [LoyaltyCardWhereUniqueInput!]
-input OrganizerUpdateManyLocalizationDataInput {
- description: RichTextAST
-}
+ """Update multiple LoyaltyCard documents"""
+ update: [LoyaltyCardUpdateWithNestedWhereUniqueInput!]
-input OrganizerUpdateManyLocalizationInput {
- data: OrganizerUpdateManyLocalizationDataInput!
- locale: Locale!
+ """Upsert multiple LoyaltyCard documents"""
+ upsert: [LoyaltyCardUpsertWithNestedWhereUniqueInput!]
}
-input OrganizerUpdateManyLocalizationsInput {
- """Localizations to update"""
- update: [OrganizerUpdateManyLocalizationInput!]
+input LoyaltyCardUpdateManyInput {
+ nftName: String
}
-input OrganizerUpdateOneInlineInput {
- """Connect existing Organizer document"""
- connect: OrganizerWhereUniqueInput
+input LoyaltyCardUpdateOneInlineInput {
+ """Connect existing LoyaltyCard document"""
+ connect: LoyaltyCardWhereUniqueInput
- """Create and connect one Organizer document"""
- create: OrganizerCreateInput
+ """Create and connect one LoyaltyCard document"""
+ create: LoyaltyCardCreateInput
- """Delete currently connected Organizer document"""
+ """Delete currently connected LoyaltyCard document"""
delete: Boolean
- """Disconnect currently connected Organizer document"""
+ """Disconnect currently connected LoyaltyCard document"""
disconnect: Boolean
- """Update single Organizer document"""
- update: OrganizerUpdateWithNestedWhereUniqueInput
+ """Update single LoyaltyCard document"""
+ update: LoyaltyCardUpdateWithNestedWhereUniqueInput
- """Upsert single Organizer document"""
- upsert: OrganizerUpsertWithNestedWhereUniqueInput
+ """Upsert single LoyaltyCard document"""
+ upsert: LoyaltyCardUpsertWithNestedWhereUniqueInput
}
-input OrganizerUpdateWithNestedWhereUniqueInput {
+input LoyaltyCardUpdateWithNestedWhereUniqueInput {
"""Document to update"""
- data: OrganizerUpdateInput!
+ data: LoyaltyCardUpdateInput!
"""Unique document search"""
- where: OrganizerWhereUniqueInput!
+ where: LoyaltyCardWhereUniqueInput!
}
-input OrganizerUpsertInput {
+input LoyaltyCardUpsertInput {
"""Create document if it didn't exist"""
- create: OrganizerCreateInput!
+ create: LoyaltyCardCreateInput!
"""Update document if it exists"""
- update: OrganizerUpdateInput!
-}
-
-input OrganizerUpsertLocalizationInput {
- create: OrganizerCreateLocalizationDataInput!
- locale: Locale!
- update: OrganizerUpdateLocalizationDataInput!
+ update: LoyaltyCardUpdateInput!
}
-input OrganizerUpsertWithNestedWhereUniqueInput {
+input LoyaltyCardUpsertWithNestedWhereUniqueInput {
"""Upsert data"""
- data: OrganizerUpsertInput!
+ data: LoyaltyCardUpsertInput!
"""Unique document search"""
- where: OrganizerWhereUniqueInput!
+ where: LoyaltyCardWhereUniqueInput!
}
"""
This contains a set of filters that can be used to compare values internally
"""
-input OrganizerWhereComparatorInput {
+input LoyaltyCardWhereComparatorInput {
"""
This field can be used to request to check if the entry is outdated by internal comparison
"""
@@ -7042,21 +6491,18 @@ input OrganizerWhereComparatorInput {
}
"""Identifies documents"""
-input OrganizerWhereInput {
+input LoyaltyCardWhereInput {
"""Logical AND on all given filters."""
- AND: [OrganizerWhereInput!]
+ AND: [LoyaltyCardWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [OrganizerWhereInput!]
+ NOT: [LoyaltyCardWhereInput!]
"""Logical OR on all given filters."""
- OR: [OrganizerWhereInput!]
+ OR: [LoyaltyCardWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
- contentSpaces_every: ContentSpaceWhereInput
- contentSpaces_none: ContentSpaceWhereInput
- contentSpaces_some: ContentSpaceWhereInput
createdAt: DateTime
"""All values greater than the given value."""
@@ -7080,211 +6526,68 @@ input OrganizerWhereInput {
"""All values that are not contained in given list."""
createdAt_not_in: [DateTime]
createdBy: UserWhereInput
- discordWidgetId: String
+ documentInStages_every: LoyaltyCardWhereStageInput
+ documentInStages_none: LoyaltyCardWhereStageInput
+ documentInStages_some: LoyaltyCardWhereStageInput
+ id: ID
"""All values containing the given string."""
- discordWidgetId_contains: String
+ id_contains: ID
"""All values ending with the given string."""
- discordWidgetId_ends_with: String
+ id_ends_with: ID
"""All values that are contained in given list."""
- discordWidgetId_in: [String]
+ id_in: [ID]
"""Any other value that exists and is not equal to the given value."""
- discordWidgetId_not: String
+ id_not: ID
"""All values not containing the given string."""
- discordWidgetId_not_contains: String
+ id_not_contains: ID
"""All values not ending with the given string"""
- discordWidgetId_not_ends_with: String
+ id_not_ends_with: ID
"""All values that are not contained in given list."""
- discordWidgetId_not_in: [String]
+ id_not_in: [ID]
"""All values not starting with the given string."""
- discordWidgetId_not_starts_with: String
+ id_not_starts_with: ID
"""All values starting with the given string."""
- discordWidgetId_starts_with: String
- documentInStages_every: OrganizerWhereStageInput
- documentInStages_none: OrganizerWhereStageInput
- documentInStages_some: OrganizerWhereStageInput
- events_every: EventWhereInput
- events_none: EventWhereInput
- events_some: EventWhereInput
- facebookHandle: String
+ id_starts_with: ID
+ nftImage: AssetWhereInput
+ nftName: String
"""All values containing the given string."""
- facebookHandle_contains: String
+ nftName_contains: String
"""All values ending with the given string."""
- facebookHandle_ends_with: String
+ nftName_ends_with: String
"""All values that are contained in given list."""
- facebookHandle_in: [String]
+ nftName_in: [String]
"""Any other value that exists and is not equal to the given value."""
- facebookHandle_not: String
+ nftName_not: String
"""All values not containing the given string."""
- facebookHandle_not_contains: String
+ nftName_not_contains: String
"""All values not ending with the given string"""
- facebookHandle_not_ends_with: String
+ nftName_not_ends_with: String
"""All values that are not contained in given list."""
- facebookHandle_not_in: [String]
+ nftName_not_in: [String]
"""All values not starting with the given string."""
- facebookHandle_not_starts_with: String
+ nftName_not_starts_with: String
"""All values starting with the given string."""
- facebookHandle_starts_with: String
- heroImage: AssetWhereInput
- heroImageClasses: String
-
- """All values containing the given string."""
- heroImageClasses_contains: String
-
- """All values ending with the given string."""
- heroImageClasses_ends_with: String
-
- """All values that are contained in given list."""
- heroImageClasses_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- heroImageClasses_not: String
-
- """All values not containing the given string."""
- heroImageClasses_not_contains: String
-
- """All values not ending with the given string"""
- heroImageClasses_not_ends_with: String
-
- """All values that are not contained in given list."""
- heroImageClasses_not_in: [String]
-
- """All values not starting with the given string."""
- heroImageClasses_not_starts_with: String
-
- """All values starting with the given string."""
- heroImageClasses_starts_with: String
- id: ID
-
- """All values containing the given string."""
- id_contains: ID
-
- """All values ending with the given string."""
- id_ends_with: ID
-
- """All values that are contained in given list."""
- id_in: [ID]
-
- """Any other value that exists and is not equal to the given value."""
- id_not: ID
-
- """All values not containing the given string."""
- id_not_contains: ID
-
- """All values not ending with the given string"""
- id_not_ends_with: ID
-
- """All values that are not contained in given list."""
- id_not_in: [ID]
-
- """All values not starting with the given string."""
- id_not_starts_with: ID
-
- """All values starting with the given string."""
- id_starts_with: ID
- image: AssetWhereInput
- imageClasses: String
-
- """All values containing the given string."""
- imageClasses_contains: String
-
- """All values ending with the given string."""
- imageClasses_ends_with: String
-
- """All values that are contained in given list."""
- imageClasses_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- imageClasses_not: String
-
- """All values not containing the given string."""
- imageClasses_not_contains: String
-
- """All values not ending with the given string"""
- imageClasses_not_ends_with: String
-
- """All values that are not contained in given list."""
- imageClasses_not_in: [String]
-
- """All values not starting with the given string."""
- imageClasses_not_starts_with: String
-
- """All values starting with the given string."""
- imageClasses_starts_with: String
- instagramHandle: String
-
- """All values containing the given string."""
- instagramHandle_contains: String
-
- """All values ending with the given string."""
- instagramHandle_ends_with: String
-
- """All values that are contained in given list."""
- instagramHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- instagramHandle_not: String
-
- """All values not containing the given string."""
- instagramHandle_not_contains: String
-
- """All values not ending with the given string"""
- instagramHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- instagramHandle_not_in: [String]
-
- """All values not starting with the given string."""
- instagramHandle_not_starts_with: String
-
- """All values starting with the given string."""
- instagramHandle_starts_with: String
- name: String
-
- """All values containing the given string."""
- name_contains: String
-
- """All values ending with the given string."""
- name_ends_with: String
-
- """All values that are contained in given list."""
- name_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- name_not: String
-
- """All values not containing the given string."""
- name_not_contains: String
-
- """All values not ending with the given string"""
- name_not_ends_with: String
-
- """All values that are not contained in given list."""
- name_not_in: [String]
-
- """All values not starting with the given string."""
- name_not_starts_with: String
-
- """All values starting with the given string."""
- name_starts_with: String
- publishedAt: DateTime
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
+ publishedAt: DateTime
"""All values greater than the given value."""
publishedAt_gt: DateTime
@@ -7310,118 +6613,6 @@ input OrganizerWhereInput {
scheduledIn_every: ScheduledOperationWhereInput
scheduledIn_none: ScheduledOperationWhereInput
scheduledIn_some: ScheduledOperationWhereInput
- slug: String
-
- """All values containing the given string."""
- slug_contains: String
-
- """All values ending with the given string."""
- slug_ends_with: String
-
- """All values that are contained in given list."""
- slug_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- slug_not: String
-
- """All values not containing the given string."""
- slug_not_contains: String
-
- """All values not ending with the given string"""
- slug_not_ends_with: String
-
- """All values that are not contained in given list."""
- slug_not_in: [String]
-
- """All values not starting with the given string."""
- slug_not_starts_with: String
-
- """All values starting with the given string."""
- slug_starts_with: String
- telegramHandle: String
-
- """All values containing the given string."""
- telegramHandle_contains: String
-
- """All values ending with the given string."""
- telegramHandle_ends_with: String
-
- """All values that are contained in given list."""
- telegramHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- telegramHandle_not: String
-
- """All values not containing the given string."""
- telegramHandle_not_contains: String
-
- """All values not ending with the given string"""
- telegramHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- telegramHandle_not_in: [String]
-
- """All values not starting with the given string."""
- telegramHandle_not_starts_with: String
-
- """All values starting with the given string."""
- telegramHandle_starts_with: String
- tiktokHandle: String
-
- """All values containing the given string."""
- tiktokHandle_contains: String
-
- """All values ending with the given string."""
- tiktokHandle_ends_with: String
-
- """All values that are contained in given list."""
- tiktokHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- tiktokHandle_not: String
-
- """All values not containing the given string."""
- tiktokHandle_not_contains: String
-
- """All values not ending with the given string"""
- tiktokHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- tiktokHandle_not_in: [String]
-
- """All values not starting with the given string."""
- tiktokHandle_not_starts_with: String
-
- """All values starting with the given string."""
- tiktokHandle_starts_with: String
- twitterHandle: String
-
- """All values containing the given string."""
- twitterHandle_contains: String
-
- """All values ending with the given string."""
- twitterHandle_ends_with: String
-
- """All values that are contained in given list."""
- twitterHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- twitterHandle_not: String
-
- """All values not containing the given string."""
- twitterHandle_not_contains: String
-
- """All values not ending with the given string"""
- twitterHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- twitterHandle_not_in: [String]
-
- """All values not starting with the given string."""
- twitterHandle_not_starts_with: String
-
- """All values starting with the given string."""
- twitterHandle_starts_with: String
updatedAt: DateTime
"""All values greater than the given value."""
@@ -7445,85 +6636,78 @@ input OrganizerWhereInput {
"""All values that are not contained in given list."""
updatedAt_not_in: [DateTime]
updatedBy: UserWhereInput
- youtubeHandle: String
-
- """All values containing the given string."""
- youtubeHandle_contains: String
-
- """All values ending with the given string."""
- youtubeHandle_ends_with: String
-
- """All values that are contained in given list."""
- youtubeHandle_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- youtubeHandle_not: String
-
- """All values not containing the given string."""
- youtubeHandle_not_contains: String
-
- """All values not ending with the given string"""
- youtubeHandle_not_ends_with: String
-
- """All values that are not contained in given list."""
- youtubeHandle_not_in: [String]
-
- """All values not starting with the given string."""
- youtubeHandle_not_starts_with: String
-
- """All values starting with the given string."""
- youtubeHandle_starts_with: String
}
"""
The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
"""
-input OrganizerWhereStageInput {
+input LoyaltyCardWhereStageInput {
"""Logical AND on all given filters."""
- AND: [OrganizerWhereStageInput!]
+ AND: [LoyaltyCardWhereStageInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [OrganizerWhereStageInput!]
+ NOT: [LoyaltyCardWhereStageInput!]
"""Logical OR on all given filters."""
- OR: [OrganizerWhereStageInput!]
+ OR: [LoyaltyCardWhereStageInput!]
"""
This field contains fields which can be set as true or false to specify an internal comparison
"""
- compareWithParent: OrganizerWhereComparatorInput
+ compareWithParent: LoyaltyCardWhereComparatorInput
"""Specify the stage to compare with"""
stage: Stage
}
-"""References Organizer record uniquely"""
-input OrganizerWhereUniqueInput {
+"""References LoyaltyCard record uniquely"""
+input LoyaltyCardWhereUniqueInput {
id: ID
- name: String
- slug: String
}
-"""References Organizer record uniquely"""
-input OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer {
- name: String
- slug: String
-}
+"""An object with an ID"""
+interface Node {
+ """The id of the object."""
+ id: ID!
-"""References Organizer record uniquely"""
-input OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer {
- name: String
- slug: String
+ """The Stage of an object"""
+ stage: Stage!
}
-"""References Organizer record uniquely"""
-input OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer {
- name: String
- slug: String
-}
+"""
+An organizer is an entity that launch events and handle the pass benefits.
+"""
+type Organizer implements Entity & Node {
+ contentSpaces(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
+
+ Note that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ orderBy: ContentSpaceOrderByInput
+ skip: Int
+ where: ContentSpaceWhereInput
+ ): [ContentSpace!]!
-"The 'Pack' model represents a collection of unique NFTs (eventPasses) bundled together. It serves as a loot system for users, offering them a chance to receive one or more NFTs related to specific events. Each pack contains details about its contents and the associated event, fostering a more engaging and rewarding experience for users.\n"
-type Pack implements Entity & Node {
"""The time the document was created"""
createdAt(
"""
@@ -7554,9 +6738,12 @@ type Pack implements Entity & Node {
"""
locales: [Locale!]
): User
+ description: OrganizerDescriptionRichText
- """A brief overview detailing the contents and purpose of the Pack."""
- description: String!
+ """
+ The discord widge id of the organizer. You need to enable the widget in your discord server and copy the value in `server id`. For details instruction of how to enable and find the id, refer to this section https://dev.fandom.com/wiki/DiscordIntegrator#Enabling_the_widget
+ """
+ discordWidgetId: String
"""Get the document in other stages"""
documentInStages(
@@ -7570,21 +6757,17 @@ type Pack implements Entity & Node {
"""Potential stages that should be returned"""
stages: [Stage!]! = [DRAFT, PUBLISHED]
- ): [Pack!]!
-
- """
- This section allows you to select or create the event passes that will be included in your Pack. Think of it as curating a collection of exclusive access tickets, each offering unique experiences for the events. Here, you can assemble a variety of event passes that together form the enticing bundle that is your Pack.
- """
- eventPasses(
+ ): [Organizer!]!
+ events(
after: String
before: String
first: Int
"""
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
@@ -7594,69 +6777,74 @@ type Pack implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
+ orderBy: EventOrderByInput
skip: Int
- ): [PackEventPasses!]!
+ where: EventWhereInput
+ ): [Event!]!
- """List of Pack versions"""
- history(
- limit: Int! = 10
- skip: Int! = 0
+ """
+ The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.
+ """
+ facebookHandle: String
+ """
+ An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels
+ """
+ heroImage(
"""
- This is optional and can be used to fetch the document version history for a specific stage instead of the current one
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
+
+ Note that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
- stageOverride: Stage
- ): [Version!]!
-
- """The unique identifier"""
- id: ID!
-
- """System Locale field"""
- locale: Locale!
-
- """Get the other localizations for this document"""
- localizations(
- """Decides if the current locale should be included or not"""
- includeCurrent: Boolean! = false
+ forceParentLocale: Boolean
"""
- Potential locales that should be returned.
-
- The order of locales will also override locale fall-backing behaviour in the query's subtree.
+ Allows to optionally override locale filtering behaviour in the query's subtree.
- Note any related model with localized fields in the query's subtree will be affected.
+ Note that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- Consider using this in conjunction with forceParentLocale on the children relation fields.
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
- locales: [Locale!]! = [en, fr]
- ): [Pack!]!
+ locales: [Locale!]
+ ): Asset!
"""
- User-friendly name of the the Pack, like "Lottery for VIP 3-Day Pass"
+ Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)
"""
- name: String!
+ heroImageClasses: String
- """
- Fixed description pertaining to the NFT Pack. This content is static and non-localizable.
- """
- nftDescription: String!
+ """List of Organizer versions"""
+ history(
+ limit: Int! = 10
+ skip: Int! = 0
+
+ """
+ This is optional and can be used to fetch the document version history for a specific stage instead of the current one
+ """
+ stageOverride: Stage
+ ): [Version!]!
+
+ """The unique identifier"""
+ id: ID!
"""
- Permanent image representing the NFT Pack. Advised resolution is 800 x 800 pixels. Image content is non-changeable and cannot be localized.
+ Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.
"""
- nftImage(
+ image(
"""
Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
@@ -7666,7 +6854,7 @@ type Pack implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
@@ -7675,15 +6863,42 @@ type Pack implements Entity & Node {
): Asset!
"""
- Permanent name associated with the NFT. Cannot be changed or localized.
+ Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)
"""
- nftName: String!
- organizer(
+ imageClasses: String
+
+ """
+ The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.
+ """
+ instagramHandle: String
+
+ """System Locale field"""
+ locale: Locale!
+
+ """Get the other localizations for this document"""
+ localizations(
+ """Decides if the current locale should be included or not"""
+ includeCurrent: Boolean! = false
+
"""
- Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
+ Potential locales that should be returned.
- Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The order of locales will also override locale fall-backing behaviour in the query's subtree.
+
+ Note any related model with localized fields in the query's subtree will be affected.
The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+
+ Consider using this in conjunction with forceParentLocale on the children relation fields.
+ """
+ locales: [Locale!]! = [en, fr]
+ ): [Organizer!]!
+ loyaltyCard(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
@@ -7692,13 +6907,16 @@ type Pack implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+ Note that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- ): Organizer
+ ): LoyaltyCard
+
+ """Name of the organizer"""
+ name: String!
"""The time the document was published. Null on documents in draft stage."""
publishedAt(
@@ -7759,9 +6977,27 @@ type Pack implements Entity & Node {
where: ScheduledOperationWhereInput
): [ScheduledOperation!]!
+ """Used in URL"""
+ slug: String!
+
"""System stage field"""
stage: Stage!
+ """
+ The telegram handle (username) of the organizer. You can just copy the text on your telegram profile page in parameters after the @, like 'johndoe' for '@johndoe'.
+ """
+ telegramHandle: String
+
+ """
+ The tiktok handle (username) of the organizer. You can just copy the name on your tiktok landing page.
+ """
+ tiktokHandle: String
+
+ """
+ The twitter (X) handle (username) of the organizer. You can just copy the text on your twitter landing page after the @, like 'johndoe' for '@johndoe'.
+ """
+ twitterHandle: String
+
"""The time the document was updated"""
updatedAt(
"""
@@ -7792,165 +7028,139 @@ type Pack implements Entity & Node {
"""
locales: [Locale!]
): User
-}
-input PackConnectInput {
"""
- Allow to specify document position in list of connected documents, will default to appending at end of list
+ The youtube handle (username) of the organizer. YYou can just copy the text on your youtube landing page after the @, like 'johndoe' for '@johndoe'.
+ """
+ youtubeHandle: String
+}
+
+input OrganizerConnectInput {
+ """
+ Allow to specify document position in list of connected documents, will default to appending at end of list
"""
position: ConnectPositionInput
"""Document to connect"""
- where: PackWhereUniqueInput!
+ where: OrganizerWhereUniqueInput!
}
"""A connection to a list of items."""
-type PackConnection {
+type OrganizerConnection {
aggregate: Aggregate!
"""A list of edges."""
- edges: [PackEdge!]!
+ edges: [OrganizerEdge!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
-input PackCreateInput {
+input OrganizerCreateInput {
+ clr7j9mmt0q2j01uo9zrs2fm7: PackCreateManyInlineInput
+ cltzsen11092507ul9qlg4ywb: LoyaltyCardCreateManyInlineInput
+ contentSpaces: ContentSpaceCreateManyInlineInput
createdAt: DateTime
"""description input for default locale (en)"""
- description: String!
- eventPasses: PackEventPassesCreateManyInlineInput
+ description: RichTextAST
+ discordWidgetId: String
+ events: EventCreateManyInlineInput
+ facebookHandle: String
+ heroImage: AssetCreateOneInlineInput!
+ heroImageClasses: String
+ image: AssetCreateOneInlineInput!
+ imageClasses: String
+ instagramHandle: String
"""
Inline mutations for managing document localizations excluding the default locale
"""
- localizations: PackCreateLocalizationsInput
-
- """name input for default locale (en)"""
+ localizations: OrganizerCreateLocalizationsInput
+ loyaltyCard: LoyaltyCardCreateOneInlineInput
name: String!
- nftDescription: String!
- nftImage: AssetCreateOneInlineInput!
- nftName: String!
- organizer: OrganizerCreateOneInlineInput
+ slug: String!
+ telegramHandle: String
+ tiktokHandle: String
+ twitterHandle: String
updatedAt: DateTime
+ youtubeHandle: String
}
-input PackCreateLocalizationDataInput {
+input OrganizerCreateLocalizationDataInput {
createdAt: DateTime
- description: String!
- name: String!
+ description: RichTextAST
updatedAt: DateTime
}
-input PackCreateLocalizationInput {
+input OrganizerCreateLocalizationInput {
"""Localization input"""
- data: PackCreateLocalizationDataInput!
+ data: OrganizerCreateLocalizationDataInput!
locale: Locale!
}
-input PackCreateLocalizationsInput {
+input OrganizerCreateLocalizationsInput {
"""Create localizations for the newly-created document"""
- create: [PackCreateLocalizationInput!]
-}
-
-input PackCreateManyInlineInput {
- """Connect multiple existing Pack documents"""
- connect: [PackWhereUniqueInput!]
-
- """Create and connect multiple existing Pack documents"""
- create: [PackCreateInput!]
-}
-
-input PackCreateOneInlineInput {
- """Connect one existing Pack document"""
- connect: PackWhereUniqueInput
-
- """Create and connect one Pack document"""
- create: PackCreateInput
-}
-
-"""An edge in a connection."""
-type PackEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: Pack!
+ create: [OrganizerCreateLocalizationInput!]
}
-union PackEventPasses = EventPass
-
-input PackEventPassesConnectInput {
- EventPass: EventPassConnectInput
-}
+input OrganizerCreateManyInlineInput {
+ """Connect multiple existing Organizer documents"""
+ connect: [OrganizerWhereUniqueInput!]
-input PackEventPassesCreateInput {
- EventPass: EventPassCreateInput
+ """Create and connect multiple existing Organizer documents"""
+ create: [OrganizerCreateInput!]
}
-input PackEventPassesCreateManyInlineInput {
- """Connect multiple existing PackEventPasses documents"""
- connect: [PackEventPassesWhereUniqueInput!]
+input OrganizerCreateOneInlineInput {
+ """Connect one existing Organizer document"""
+ connect: OrganizerWhereUniqueInput
- """Create and connect multiple existing PackEventPasses documents"""
- create: [PackEventPassesCreateInput!]
+ """Create and connect one Organizer document"""
+ create: OrganizerCreateInput
}
-input PackEventPassesUpdateManyInlineInput {
- """Connect multiple existing PackEventPasses documents"""
- connect: [PackEventPassesConnectInput!]
-
- """Create and connect multiple PackEventPasses documents"""
- create: [PackEventPassesCreateInput!]
-
- """Delete multiple PackEventPasses documents"""
- delete: [PackEventPassesWhereUniqueInput!]
-
- """Disconnect multiple PackEventPasses documents"""
- disconnect: [PackEventPassesWhereUniqueInput!]
-
- """
- Override currently-connected documents with multiple existing PackEventPasses documents
- """
- set: [PackEventPassesWhereUniqueInput!]
-
- """Update multiple PackEventPasses documents"""
- update: [PackEventPassesUpdateWithNestedWhereUniqueInput!]
+type OrganizerDescriptionRichText {
+ """Returns HTMl representation"""
+ html: String!
+ json: RichTextAST!
- """Upsert multiple PackEventPasses documents"""
- upsert: [PackEventPassesUpsertWithNestedWhereUniqueInput!]
-}
+ """Returns Markdown representation"""
+ markdown: String!
+ raw: RichTextAST!
+ references(after: String, before: String, first: Int, last: Int, skip: Int): [OrganizerDescriptionRichTextEmbeddedTypes!]!
-input PackEventPassesUpdateWithNestedWhereUniqueInput {
- EventPass: EventPassUpdateWithNestedWhereUniqueInput
+ """Returns plain-text contents of RichText"""
+ text: String!
}
-input PackEventPassesUpsertWithNestedWhereUniqueInput {
- EventPass: EventPassUpsertWithNestedWhereUniqueInput
-}
+union OrganizerDescriptionRichTextEmbeddedTypes = Asset
-input PackEventPassesWhereInput {
- EventPass: EventPassWhereInput
-}
+"""An edge in a connection."""
+type OrganizerEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
-input PackEventPassesWhereUniqueInput {
- EventPass: EventPassWhereUniqueInput
+ """The item at the end of the edge."""
+ node: Organizer!
}
"""Identifies documents"""
-input PackManyWhereInput {
+input OrganizerManyWhereInput {
"""Logical AND on all given filters."""
- AND: [PackWhereInput!]
+ AND: [OrganizerWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [PackWhereInput!]
+ NOT: [OrganizerWhereInput!]
"""Logical OR on all given filters."""
- OR: [PackWhereInput!]
+ OR: [OrganizerWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
+ contentSpaces_every: ContentSpaceWhereInput
+ contentSpaces_none: ContentSpaceWhereInput
+ contentSpaces_some: ContentSpaceWhereInput
createdAt: DateTime
"""All values greater than the given value."""
@@ -7974,17 +7184,97 @@ input PackManyWhereInput {
"""All values that are not contained in given list."""
createdAt_not_in: [DateTime]
createdBy: UserWhereInput
- documentInStages_every: PackWhereStageInput
- documentInStages_none: PackWhereStageInput
- documentInStages_some: PackWhereStageInput
+ discordWidgetId: String
- """All values in which the union is empty"""
- eventPasses_empty: Boolean
+ """All values containing the given string."""
+ discordWidgetId_contains: String
- """
- Matches if the union contains at least one connection to the provided item to the filter
- """
- eventPasses_some: PackEventPassesWhereInput
+ """All values ending with the given string."""
+ discordWidgetId_ends_with: String
+
+ """All values that are contained in given list."""
+ discordWidgetId_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ discordWidgetId_not: String
+
+ """All values not containing the given string."""
+ discordWidgetId_not_contains: String
+
+ """All values not ending with the given string"""
+ discordWidgetId_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ discordWidgetId_not_in: [String]
+
+ """All values not starting with the given string."""
+ discordWidgetId_not_starts_with: String
+
+ """All values starting with the given string."""
+ discordWidgetId_starts_with: String
+ documentInStages_every: OrganizerWhereStageInput
+ documentInStages_none: OrganizerWhereStageInput
+ documentInStages_some: OrganizerWhereStageInput
+ events_every: EventWhereInput
+ events_none: EventWhereInput
+ events_some: EventWhereInput
+ facebookHandle: String
+
+ """All values containing the given string."""
+ facebookHandle_contains: String
+
+ """All values ending with the given string."""
+ facebookHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ facebookHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ facebookHandle_not: String
+
+ """All values not containing the given string."""
+ facebookHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ facebookHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ facebookHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ facebookHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ facebookHandle_starts_with: String
+ heroImage: AssetWhereInput
+ heroImageClasses: String
+
+ """All values containing the given string."""
+ heroImageClasses_contains: String
+
+ """All values ending with the given string."""
+ heroImageClasses_ends_with: String
+
+ """All values that are contained in given list."""
+ heroImageClasses_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ heroImageClasses_not: String
+
+ """All values not containing the given string."""
+ heroImageClasses_not_contains: String
+
+ """All values not ending with the given string"""
+ heroImageClasses_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ heroImageClasses_not_in: [String]
+
+ """All values not starting with the given string."""
+ heroImageClasses_not_starts_with: String
+
+ """All values starting with the given string."""
+ heroImageClasses_starts_with: String
id: ID
"""All values containing the given string."""
@@ -8013,64 +7303,92 @@ input PackManyWhereInput {
"""All values starting with the given string."""
id_starts_with: ID
- nftDescription: String
+ image: AssetWhereInput
+ imageClasses: String
"""All values containing the given string."""
- nftDescription_contains: String
+ imageClasses_contains: String
"""All values ending with the given string."""
- nftDescription_ends_with: String
+ imageClasses_ends_with: String
"""All values that are contained in given list."""
- nftDescription_in: [String]
+ imageClasses_in: [String]
"""Any other value that exists and is not equal to the given value."""
- nftDescription_not: String
+ imageClasses_not: String
"""All values not containing the given string."""
- nftDescription_not_contains: String
+ imageClasses_not_contains: String
"""All values not ending with the given string"""
- nftDescription_not_ends_with: String
+ imageClasses_not_ends_with: String
"""All values that are not contained in given list."""
- nftDescription_not_in: [String]
+ imageClasses_not_in: [String]
"""All values not starting with the given string."""
- nftDescription_not_starts_with: String
+ imageClasses_not_starts_with: String
"""All values starting with the given string."""
- nftDescription_starts_with: String
- nftImage: AssetWhereInput
- nftName: String
+ imageClasses_starts_with: String
+ instagramHandle: String
"""All values containing the given string."""
- nftName_contains: String
+ instagramHandle_contains: String
"""All values ending with the given string."""
- nftName_ends_with: String
+ instagramHandle_ends_with: String
"""All values that are contained in given list."""
- nftName_in: [String]
+ instagramHandle_in: [String]
"""Any other value that exists and is not equal to the given value."""
- nftName_not: String
+ instagramHandle_not: String
"""All values not containing the given string."""
- nftName_not_contains: String
+ instagramHandle_not_contains: String
"""All values not ending with the given string"""
- nftName_not_ends_with: String
+ instagramHandle_not_ends_with: String
"""All values that are not contained in given list."""
- nftName_not_in: [String]
+ instagramHandle_not_in: [String]
"""All values not starting with the given string."""
- nftName_not_starts_with: String
+ instagramHandle_not_starts_with: String
"""All values starting with the given string."""
- nftName_starts_with: String
- organizer: OrganizerWhereInput
+ instagramHandle_starts_with: String
+ loyaltyCard: LoyaltyCardWhereInput
+ name: String
+
+ """All values containing the given string."""
+ name_contains: String
+
+ """All values ending with the given string."""
+ name_ends_with: String
+
+ """All values that are contained in given list."""
+ name_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ name_not: String
+
+ """All values not containing the given string."""
+ name_not_contains: String
+
+ """All values not ending with the given string"""
+ name_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ name_not_in: [String]
+
+ """All values not starting with the given string."""
+ name_not_starts_with: String
+
+ """All values starting with the given string."""
+ name_starts_with: String
publishedAt: DateTime
"""All values greater than the given value."""
@@ -8097,6 +7415,118 @@ input PackManyWhereInput {
scheduledIn_every: ScheduledOperationWhereInput
scheduledIn_none: ScheduledOperationWhereInput
scheduledIn_some: ScheduledOperationWhereInput
+ slug: String
+
+ """All values containing the given string."""
+ slug_contains: String
+
+ """All values ending with the given string."""
+ slug_ends_with: String
+
+ """All values that are contained in given list."""
+ slug_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ slug_not: String
+
+ """All values not containing the given string."""
+ slug_not_contains: String
+
+ """All values not ending with the given string"""
+ slug_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ slug_not_in: [String]
+
+ """All values not starting with the given string."""
+ slug_not_starts_with: String
+
+ """All values starting with the given string."""
+ slug_starts_with: String
+ telegramHandle: String
+
+ """All values containing the given string."""
+ telegramHandle_contains: String
+
+ """All values ending with the given string."""
+ telegramHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ telegramHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ telegramHandle_not: String
+
+ """All values not containing the given string."""
+ telegramHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ telegramHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ telegramHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ telegramHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ telegramHandle_starts_with: String
+ tiktokHandle: String
+
+ """All values containing the given string."""
+ tiktokHandle_contains: String
+
+ """All values ending with the given string."""
+ tiktokHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ tiktokHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ tiktokHandle_not: String
+
+ """All values not containing the given string."""
+ tiktokHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ tiktokHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ tiktokHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ tiktokHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ tiktokHandle_starts_with: String
+ twitterHandle: String
+
+ """All values containing the given string."""
+ twitterHandle_contains: String
+
+ """All values ending with the given string."""
+ twitterHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ twitterHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ twitterHandle_not: String
+
+ """All values not containing the given string."""
+ twitterHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ twitterHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ twitterHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ twitterHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ twitterHandle_starts_with: String
updatedAt: DateTime
"""All values greater than the given value."""
@@ -8120,172 +7550,227 @@ input PackManyWhereInput {
"""All values that are not contained in given list."""
updatedAt_not_in: [DateTime]
updatedBy: UserWhereInput
+ youtubeHandle: String
+
+ """All values containing the given string."""
+ youtubeHandle_contains: String
+
+ """All values ending with the given string."""
+ youtubeHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ youtubeHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ youtubeHandle_not: String
+
+ """All values not containing the given string."""
+ youtubeHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ youtubeHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ youtubeHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ youtubeHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ youtubeHandle_starts_with: String
}
-enum PackOrderByInput {
+enum OrganizerOrderByInput {
createdAt_ASC
createdAt_DESC
- description_ASC
- description_DESC
+ discordWidgetId_ASC
+ discordWidgetId_DESC
+ facebookHandle_ASC
+ facebookHandle_DESC
+ heroImageClasses_ASC
+ heroImageClasses_DESC
id_ASC
id_DESC
+ imageClasses_ASC
+ imageClasses_DESC
+ instagramHandle_ASC
+ instagramHandle_DESC
name_ASC
name_DESC
- nftDescription_ASC
- nftDescription_DESC
- nftName_ASC
- nftName_DESC
publishedAt_ASC
publishedAt_DESC
+ slug_ASC
+ slug_DESC
+ telegramHandle_ASC
+ telegramHandle_DESC
+ tiktokHandle_ASC
+ tiktokHandle_DESC
+ twitterHandle_ASC
+ twitterHandle_DESC
updatedAt_ASC
updatedAt_DESC
+ youtubeHandle_ASC
+ youtubeHandle_DESC
}
-input PackUpdateInput {
- """description input for default locale (en)"""
- description: String
- eventPasses: PackEventPassesUpdateManyInlineInput
-
- """Manage document localizations"""
- localizations: PackUpdateLocalizationsInput
+input OrganizerUpdateInput {
+ clr7j9mmt0q2j01uo9zrs2fm7: PackUpdateManyInlineInput
+ cltzsen11092507ul9qlg4ywb: LoyaltyCardUpdateManyInlineInput
+ contentSpaces: ContentSpaceUpdateManyInlineInput
- """name input for default locale (en)"""
- name: String
- nftDescription: String
- nftImage: AssetUpdateOneInlineInput
- nftName: String
- organizer: OrganizerUpdateOneInlineInput
-}
+ """description input for default locale (en)"""
+ description: RichTextAST
+ discordWidgetId: String
+ events: EventUpdateManyInlineInput
+ facebookHandle: String
+ heroImage: AssetUpdateOneInlineInput
+ heroImageClasses: String
+ image: AssetUpdateOneInlineInput
+ imageClasses: String
+ instagramHandle: String
-input PackUpdateLocalizationDataInput {
- description: String
+ """Manage document localizations"""
+ localizations: OrganizerUpdateLocalizationsInput
+ loyaltyCard: LoyaltyCardUpdateOneInlineInput
name: String
+ slug: String
+ telegramHandle: String
+ tiktokHandle: String
+ twitterHandle: String
+ youtubeHandle: String
}
-input PackUpdateLocalizationInput {
- data: PackUpdateLocalizationDataInput!
+input OrganizerUpdateLocalizationDataInput {
+ description: RichTextAST
+}
+
+input OrganizerUpdateLocalizationInput {
+ data: OrganizerUpdateLocalizationDataInput!
locale: Locale!
}
-input PackUpdateLocalizationsInput {
+input OrganizerUpdateLocalizationsInput {
"""Localizations to create"""
- create: [PackCreateLocalizationInput!]
+ create: [OrganizerCreateLocalizationInput!]
"""Localizations to delete"""
delete: [Locale!]
"""Localizations to update"""
- update: [PackUpdateLocalizationInput!]
- upsert: [PackUpsertLocalizationInput!]
+ update: [OrganizerUpdateLocalizationInput!]
+ upsert: [OrganizerUpsertLocalizationInput!]
}
-input PackUpdateManyInlineInput {
- """Connect multiple existing Pack documents"""
- connect: [PackConnectInput!]
+input OrganizerUpdateManyInlineInput {
+ """Connect multiple existing Organizer documents"""
+ connect: [OrganizerConnectInput!]
- """Create and connect multiple Pack documents"""
- create: [PackCreateInput!]
+ """Create and connect multiple Organizer documents"""
+ create: [OrganizerCreateInput!]
- """Delete multiple Pack documents"""
- delete: [PackWhereUniqueInput!]
+ """Delete multiple Organizer documents"""
+ delete: [OrganizerWhereUniqueInput!]
- """Disconnect multiple Pack documents"""
- disconnect: [PackWhereUniqueInput!]
+ """Disconnect multiple Organizer documents"""
+ disconnect: [OrganizerWhereUniqueInput!]
"""
- Override currently-connected documents with multiple existing Pack documents
+ Override currently-connected documents with multiple existing Organizer documents
"""
- set: [PackWhereUniqueInput!]
+ set: [OrganizerWhereUniqueInput!]
- """Update multiple Pack documents"""
- update: [PackUpdateWithNestedWhereUniqueInput!]
+ """Update multiple Organizer documents"""
+ update: [OrganizerUpdateWithNestedWhereUniqueInput!]
- """Upsert multiple Pack documents"""
- upsert: [PackUpsertWithNestedWhereUniqueInput!]
+ """Upsert multiple Organizer documents"""
+ upsert: [OrganizerUpsertWithNestedWhereUniqueInput!]
}
-input PackUpdateManyInput {
+input OrganizerUpdateManyInput {
"""description input for default locale (en)"""
- description: String
+ description: RichTextAST
+ discordWidgetId: String
+ facebookHandle: String
+ heroImageClasses: String
+ imageClasses: String
+ instagramHandle: String
"""Optional updates to localizations"""
- localizations: PackUpdateManyLocalizationsInput
-
- """name input for default locale (en)"""
- name: String
- nftDescription: String
- nftName: String
+ localizations: OrganizerUpdateManyLocalizationsInput
+ telegramHandle: String
+ tiktokHandle: String
+ twitterHandle: String
+ youtubeHandle: String
}
-input PackUpdateManyLocalizationDataInput {
- description: String
- name: String
+input OrganizerUpdateManyLocalizationDataInput {
+ description: RichTextAST
}
-input PackUpdateManyLocalizationInput {
- data: PackUpdateManyLocalizationDataInput!
+input OrganizerUpdateManyLocalizationInput {
+ data: OrganizerUpdateManyLocalizationDataInput!
locale: Locale!
}
-input PackUpdateManyLocalizationsInput {
+input OrganizerUpdateManyLocalizationsInput {
"""Localizations to update"""
- update: [PackUpdateManyLocalizationInput!]
+ update: [OrganizerUpdateManyLocalizationInput!]
}
-input PackUpdateOneInlineInput {
- """Connect existing Pack document"""
- connect: PackWhereUniqueInput
+input OrganizerUpdateOneInlineInput {
+ """Connect existing Organizer document"""
+ connect: OrganizerWhereUniqueInput
- """Create and connect one Pack document"""
- create: PackCreateInput
+ """Create and connect one Organizer document"""
+ create: OrganizerCreateInput
- """Delete currently connected Pack document"""
+ """Delete currently connected Organizer document"""
delete: Boolean
- """Disconnect currently connected Pack document"""
+ """Disconnect currently connected Organizer document"""
disconnect: Boolean
- """Update single Pack document"""
- update: PackUpdateWithNestedWhereUniqueInput
+ """Update single Organizer document"""
+ update: OrganizerUpdateWithNestedWhereUniqueInput
- """Upsert single Pack document"""
- upsert: PackUpsertWithNestedWhereUniqueInput
+ """Upsert single Organizer document"""
+ upsert: OrganizerUpsertWithNestedWhereUniqueInput
}
-input PackUpdateWithNestedWhereUniqueInput {
+input OrganizerUpdateWithNestedWhereUniqueInput {
"""Document to update"""
- data: PackUpdateInput!
+ data: OrganizerUpdateInput!
"""Unique document search"""
- where: PackWhereUniqueInput!
+ where: OrganizerWhereUniqueInput!
}
-input PackUpsertInput {
+input OrganizerUpsertInput {
"""Create document if it didn't exist"""
- create: PackCreateInput!
+ create: OrganizerCreateInput!
"""Update document if it exists"""
- update: PackUpdateInput!
+ update: OrganizerUpdateInput!
}
-input PackUpsertLocalizationInput {
- create: PackCreateLocalizationDataInput!
+input OrganizerUpsertLocalizationInput {
+ create: OrganizerCreateLocalizationDataInput!
locale: Locale!
- update: PackUpdateLocalizationDataInput!
+ update: OrganizerUpdateLocalizationDataInput!
}
-input PackUpsertWithNestedWhereUniqueInput {
+input OrganizerUpsertWithNestedWhereUniqueInput {
"""Upsert data"""
- data: PackUpsertInput!
+ data: OrganizerUpsertInput!
"""Unique document search"""
- where: PackWhereUniqueInput!
+ where: OrganizerWhereUniqueInput!
}
"""
This contains a set of filters that can be used to compare values internally
"""
-input PackWhereComparatorInput {
+input OrganizerWhereComparatorInput {
"""
This field can be used to request to check if the entry is outdated by internal comparison
"""
@@ -8293,18 +7778,21 @@ input PackWhereComparatorInput {
}
"""Identifies documents"""
-input PackWhereInput {
+input OrganizerWhereInput {
"""Logical AND on all given filters."""
- AND: [PackWhereInput!]
+ AND: [OrganizerWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [PackWhereInput!]
+ NOT: [OrganizerWhereInput!]
"""Logical OR on all given filters."""
- OR: [PackWhereInput!]
+ OR: [OrganizerWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
+ contentSpaces_every: ContentSpaceWhereInput
+ contentSpaces_none: ContentSpaceWhereInput
+ contentSpaces_some: ContentSpaceWhereInput
createdAt: DateTime
"""All values greater than the given value."""
@@ -8328,45 +7816,97 @@ input PackWhereInput {
"""All values that are not contained in given list."""
createdAt_not_in: [DateTime]
createdBy: UserWhereInput
- description: String
+ discordWidgetId: String
"""All values containing the given string."""
- description_contains: String
+ discordWidgetId_contains: String
"""All values ending with the given string."""
- description_ends_with: String
+ discordWidgetId_ends_with: String
"""All values that are contained in given list."""
- description_in: [String]
+ discordWidgetId_in: [String]
"""Any other value that exists and is not equal to the given value."""
- description_not: String
+ discordWidgetId_not: String
"""All values not containing the given string."""
- description_not_contains: String
+ discordWidgetId_not_contains: String
"""All values not ending with the given string"""
- description_not_ends_with: String
+ discordWidgetId_not_ends_with: String
"""All values that are not contained in given list."""
- description_not_in: [String]
+ discordWidgetId_not_in: [String]
"""All values not starting with the given string."""
- description_not_starts_with: String
+ discordWidgetId_not_starts_with: String
"""All values starting with the given string."""
- description_starts_with: String
- documentInStages_every: PackWhereStageInput
- documentInStages_none: PackWhereStageInput
- documentInStages_some: PackWhereStageInput
+ discordWidgetId_starts_with: String
+ documentInStages_every: OrganizerWhereStageInput
+ documentInStages_none: OrganizerWhereStageInput
+ documentInStages_some: OrganizerWhereStageInput
+ events_every: EventWhereInput
+ events_none: EventWhereInput
+ events_some: EventWhereInput
+ facebookHandle: String
- """All values in which the union is empty"""
- eventPasses_empty: Boolean
+ """All values containing the given string."""
+ facebookHandle_contains: String
- """
- Matches if the union contains at least one connection to the provided item to the filter
- """
- eventPasses_some: PackEventPassesWhereInput
+ """All values ending with the given string."""
+ facebookHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ facebookHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ facebookHandle_not: String
+
+ """All values not containing the given string."""
+ facebookHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ facebookHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ facebookHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ facebookHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ facebookHandle_starts_with: String
+ heroImage: AssetWhereInput
+ heroImageClasses: String
+
+ """All values containing the given string."""
+ heroImageClasses_contains: String
+
+ """All values ending with the given string."""
+ heroImageClasses_ends_with: String
+
+ """All values that are contained in given list."""
+ heroImageClasses_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ heroImageClasses_not: String
+
+ """All values not containing the given string."""
+ heroImageClasses_not_contains: String
+
+ """All values not ending with the given string"""
+ heroImageClasses_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ heroImageClasses_not_in: [String]
+
+ """All values not starting with the given string."""
+ heroImageClasses_not_starts_with: String
+
+ """All values starting with the given string."""
+ heroImageClasses_starts_with: String
id: ID
"""All values containing the given string."""
@@ -8395,92 +7935,92 @@ input PackWhereInput {
"""All values starting with the given string."""
id_starts_with: ID
- name: String
+ image: AssetWhereInput
+ imageClasses: String
"""All values containing the given string."""
- name_contains: String
+ imageClasses_contains: String
"""All values ending with the given string."""
- name_ends_with: String
+ imageClasses_ends_with: String
"""All values that are contained in given list."""
- name_in: [String]
+ imageClasses_in: [String]
"""Any other value that exists and is not equal to the given value."""
- name_not: String
+ imageClasses_not: String
"""All values not containing the given string."""
- name_not_contains: String
+ imageClasses_not_contains: String
"""All values not ending with the given string"""
- name_not_ends_with: String
+ imageClasses_not_ends_with: String
"""All values that are not contained in given list."""
- name_not_in: [String]
+ imageClasses_not_in: [String]
"""All values not starting with the given string."""
- name_not_starts_with: String
+ imageClasses_not_starts_with: String
"""All values starting with the given string."""
- name_starts_with: String
- nftDescription: String
+ imageClasses_starts_with: String
+ instagramHandle: String
"""All values containing the given string."""
- nftDescription_contains: String
+ instagramHandle_contains: String
"""All values ending with the given string."""
- nftDescription_ends_with: String
+ instagramHandle_ends_with: String
"""All values that are contained in given list."""
- nftDescription_in: [String]
+ instagramHandle_in: [String]
"""Any other value that exists and is not equal to the given value."""
- nftDescription_not: String
+ instagramHandle_not: String
"""All values not containing the given string."""
- nftDescription_not_contains: String
+ instagramHandle_not_contains: String
"""All values not ending with the given string"""
- nftDescription_not_ends_with: String
+ instagramHandle_not_ends_with: String
"""All values that are not contained in given list."""
- nftDescription_not_in: [String]
+ instagramHandle_not_in: [String]
"""All values not starting with the given string."""
- nftDescription_not_starts_with: String
+ instagramHandle_not_starts_with: String
"""All values starting with the given string."""
- nftDescription_starts_with: String
- nftImage: AssetWhereInput
- nftName: String
+ instagramHandle_starts_with: String
+ loyaltyCard: LoyaltyCardWhereInput
+ name: String
"""All values containing the given string."""
- nftName_contains: String
+ name_contains: String
"""All values ending with the given string."""
- nftName_ends_with: String
+ name_ends_with: String
"""All values that are contained in given list."""
- nftName_in: [String]
+ name_in: [String]
"""Any other value that exists and is not equal to the given value."""
- nftName_not: String
+ name_not: String
"""All values not containing the given string."""
- nftName_not_contains: String
+ name_not_contains: String
"""All values not ending with the given string"""
- nftName_not_ends_with: String
+ name_not_ends_with: String
"""All values that are not contained in given list."""
- nftName_not_in: [String]
+ name_not_in: [String]
"""All values not starting with the given string."""
- nftName_not_starts_with: String
+ name_not_starts_with: String
"""All values starting with the given string."""
- nftName_starts_with: String
- organizer: OrganizerWhereInput
+ name_starts_with: String
publishedAt: DateTime
"""All values greater than the given value."""
@@ -8507,6 +8047,118 @@ input PackWhereInput {
scheduledIn_every: ScheduledOperationWhereInput
scheduledIn_none: ScheduledOperationWhereInput
scheduledIn_some: ScheduledOperationWhereInput
+ slug: String
+
+ """All values containing the given string."""
+ slug_contains: String
+
+ """All values ending with the given string."""
+ slug_ends_with: String
+
+ """All values that are contained in given list."""
+ slug_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ slug_not: String
+
+ """All values not containing the given string."""
+ slug_not_contains: String
+
+ """All values not ending with the given string"""
+ slug_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ slug_not_in: [String]
+
+ """All values not starting with the given string."""
+ slug_not_starts_with: String
+
+ """All values starting with the given string."""
+ slug_starts_with: String
+ telegramHandle: String
+
+ """All values containing the given string."""
+ telegramHandle_contains: String
+
+ """All values ending with the given string."""
+ telegramHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ telegramHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ telegramHandle_not: String
+
+ """All values not containing the given string."""
+ telegramHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ telegramHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ telegramHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ telegramHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ telegramHandle_starts_with: String
+ tiktokHandle: String
+
+ """All values containing the given string."""
+ tiktokHandle_contains: String
+
+ """All values ending with the given string."""
+ tiktokHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ tiktokHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ tiktokHandle_not: String
+
+ """All values not containing the given string."""
+ tiktokHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ tiktokHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ tiktokHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ tiktokHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ tiktokHandle_starts_with: String
+ twitterHandle: String
+
+ """All values containing the given string."""
+ twitterHandle_contains: String
+
+ """All values ending with the given string."""
+ twitterHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ twitterHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ twitterHandle_not: String
+
+ """All values not containing the given string."""
+ twitterHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ twitterHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ twitterHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ twitterHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ twitterHandle_starts_with: String
updatedAt: DateTime
"""All values greater than the given value."""
@@ -8530,68 +8182,111 @@ input PackWhereInput {
"""All values that are not contained in given list."""
updatedAt_not_in: [DateTime]
updatedBy: UserWhereInput
+ youtubeHandle: String
+
+ """All values containing the given string."""
+ youtubeHandle_contains: String
+
+ """All values ending with the given string."""
+ youtubeHandle_ends_with: String
+
+ """All values that are contained in given list."""
+ youtubeHandle_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ youtubeHandle_not: String
+
+ """All values not containing the given string."""
+ youtubeHandle_not_contains: String
+
+ """All values not ending with the given string"""
+ youtubeHandle_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ youtubeHandle_not_in: [String]
+
+ """All values not starting with the given string."""
+ youtubeHandle_not_starts_with: String
+
+ """All values starting with the given string."""
+ youtubeHandle_starts_with: String
}
"""
The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
"""
-input PackWhereStageInput {
+input OrganizerWhereStageInput {
"""Logical AND on all given filters."""
- AND: [PackWhereStageInput!]
+ AND: [OrganizerWhereStageInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [PackWhereStageInput!]
+ NOT: [OrganizerWhereStageInput!]
"""Logical OR on all given filters."""
- OR: [PackWhereStageInput!]
+ OR: [OrganizerWhereStageInput!]
"""
This field contains fields which can be set as true or false to specify an internal comparison
"""
- compareWithParent: PackWhereComparatorInput
+ compareWithParent: OrganizerWhereComparatorInput
"""Specify the stage to compare with"""
stage: Stage
}
-"""References Pack record uniquely"""
-input PackWhereUniqueInput {
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput {
id: ID
+ name: String
+ slug: String
}
-"""Information about pagination in a connection."""
-type PageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer {
+ name: String
+ slug: String
+}
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer {
+ name: String
+ slug: String
+}
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftContractorganizer {
+ name: String
+ slug: String
+}
- """Number of items in the current page."""
- pageSize: Int
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftorganizer {
+ name: String
+ slug: String
+}
- """When paginating backwards, the cursor to continue."""
- startCursor: String
+"""References Organizer record uniquely"""
+input OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer {
+ name: String
+ slug: String
}
-"""
-Define the options of an 'Event Pass' on an 'Event Date Location'. You can define severals if the event have multiple locations.
-"""
-type PassOption implements Entity {
- """
- Description of the option, like "Access to the event on Day 1"
- """
- description: String
+"The 'Pack' model represents a collection of unique NFTs (eventPasses) bundled together. It serves as a loot system for users, offering them a chance to receive one or more NFTs related to specific events. Each pack contains details about its contents and the associated event, fostering a more engaging and rewarding experience for users.\n"
+type Pack implements Entity & Node {
+ """The time the document was created"""
+ createdAt(
+ """
+ Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
+ """
+ variation: SystemDateTimeFieldVariation! = COMBINED
+ ): DateTime!
- """Define the location and date for this option."""
- eventDateLocation(
+ """User that created this document"""
+ createdBy(
"""
Sets the locale of the resolved parent document as the only locale in the query's subtree.
- Note that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
@@ -8601,13 +8296,72 @@ type PassOption implements Entity {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- ): EventDateLocation
+ ): User
+
+ """A brief overview detailing the contents and purpose of the Pack."""
+ description: String!
+
+ """Get the document in other stages"""
+ documentInStages(
+ """Decides if the current stage should be included or not"""
+ includeCurrent: Boolean! = false
+
+ """
+ Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ """
+ inheritLocale: Boolean! = false
+
+ """Potential stages that should be returned"""
+ stages: [Stage!]! = [DRAFT, PUBLISHED]
+ ): [Pack!]!
+
+ """
+ This section allows you to select or create the event passes that will be included in your Pack. Think of it as curating a collection of exclusive access tickets, each offering unique experiences for the events. Here, you can assemble a variety of event passes that together form the enticing bundle that is your Pack.
+ """
+ eventPasses(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ skip: Int
+ ): [PackEventPasses!]!
+
+ """List of Pack versions"""
+ history(
+ limit: Int! = 10
+ skip: Int! = 0
+
+ """
+ This is optional and can be used to fetch the document version history for a specific stage instead of the current one
+ """
+ stageOverride: Stage
+ ): [Version!]!
"""The unique identifier"""
id: ID!
@@ -8632,307 +8386,53 @@ type PassOption implements Entity {
Consider using this in conjunction with forceParentLocale on the children relation fields.
"""
locales: [Locale!]! = [en, fr]
- ): [PassOption!]!
-
- """
- Name of the options, like "Day 1 Access" or "VIP Room Access"
- """
- name: String!
-
- """System stage field"""
- stage: Stage!
-}
-
-input PassOptionCreateInput {
- """description input for default locale (en)"""
- description: String
- eventDateLocation: EventDateLocationCreateOneInlineInput
+ ): [Pack!]!
"""
- Inline mutations for managing document localizations excluding the default locale
+ User-friendly name of the the Pack, like "Lottery for VIP 3-Day Pass"
"""
- localizations: PassOptionCreateLocalizationsInput
-
- """name input for default locale (en)"""
- name: String!
-}
-
-input PassOptionCreateLocalizationDataInput {
- description: String
name: String!
-}
-
-input PassOptionCreateLocalizationInput {
- """Localization input"""
- data: PassOptionCreateLocalizationDataInput!
- locale: Locale!
-}
-
-input PassOptionCreateLocalizationsInput {
- """Create localizations for the newly-created document"""
- create: [PassOptionCreateLocalizationInput!]
-}
-
-input PassOptionCreateManyInlineInput {
- """Create and connect multiple existing PassOption documents"""
- create: [PassOptionCreateInput!]
-}
-
-input PassOptionCreateWithPositionInput {
- """Document to create"""
- data: PassOptionCreateInput!
-
- """
- Position in the list of existing component instances, will default to appending at the end of list
- """
- position: ConnectPositionInput
-}
-
-enum PassOptionOrderByInput {
- description_ASC
- description_DESC
- id_ASC
- id_DESC
- name_ASC
- name_DESC
-}
-
-input PassOptionUpdateInput {
- """description input for default locale (en)"""
- description: String
- eventDateLocation: EventDateLocationUpdateOneInlineInput
-
- """Manage document localizations"""
- localizations: PassOptionUpdateLocalizationsInput
-
- """name input for default locale (en)"""
- name: String
-}
-
-input PassOptionUpdateLocalizationDataInput {
- description: String
- name: String
-}
-
-input PassOptionUpdateLocalizationInput {
- data: PassOptionUpdateLocalizationDataInput!
- locale: Locale!
-}
-
-input PassOptionUpdateLocalizationsInput {
- """Localizations to create"""
- create: [PassOptionCreateLocalizationInput!]
-
- """Localizations to delete"""
- delete: [Locale!]
-
- """Localizations to update"""
- update: [PassOptionUpdateLocalizationInput!]
- upsert: [PassOptionUpsertLocalizationInput!]
-}
-
-input PassOptionUpdateManyInlineInput {
- """Create and connect multiple PassOption component instances"""
- create: [PassOptionCreateWithPositionInput!]
-
- """Delete multiple PassOption documents"""
- delete: [PassOptionWhereUniqueInput!]
-
- """Update multiple PassOption component instances"""
- update: [PassOptionUpdateWithNestedWhereUniqueAndPositionInput!]
-
- """Upsert multiple PassOption component instances"""
- upsert: [PassOptionUpsertWithNestedWhereUniqueAndPositionInput!]
-}
-
-input PassOptionUpdateWithNestedWhereUniqueAndPositionInput {
- """Document to update"""
- data: PassOptionUpdateInput
"""
- Position in the list of existing component instances, will default to appending at the end of list
+ Fixed description pertaining to the NFT Pack. This content is static and non-localizable.
"""
- position: ConnectPositionInput
-
- """Unique component instance search"""
- where: PassOptionWhereUniqueInput!
-}
-
-input PassOptionUpsertInput {
- """Create document if it didn't exist"""
- create: PassOptionCreateInput!
-
- """Update document if it exists"""
- update: PassOptionUpdateInput!
-}
-
-input PassOptionUpsertLocalizationInput {
- create: PassOptionCreateLocalizationDataInput!
- locale: Locale!
- update: PassOptionUpdateLocalizationDataInput!
-}
-
-input PassOptionUpsertWithNestedWhereUniqueAndPositionInput {
- """Document to upsert"""
- data: PassOptionUpsertInput
+ nftDescription: String!
"""
- Position in the list of existing component instances, will default to appending at the end of list
+ Permanent image representing the NFT Pack. Advised resolution is 800 x 800 pixels. Image content is non-changeable and cannot be localized.
"""
- position: ConnectPositionInput
-
- """Unique component instance search"""
- where: PassOptionWhereUniqueInput!
-}
-
-"""Identifies documents"""
-input PassOptionWhereInput {
- """Logical AND on all given filters."""
- AND: [PassOptionWhereInput!]
-
- """Logical NOT on all given filters combined by AND."""
- NOT: [PassOptionWhereInput!]
-
- """Logical OR on all given filters."""
- OR: [PassOptionWhereInput!]
-
- """Contains search across all appropriate fields."""
- _search: String
- description: String
-
- """All values containing the given string."""
- description_contains: String
-
- """All values ending with the given string."""
- description_ends_with: String
-
- """All values that are contained in given list."""
- description_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- description_not: String
-
- """All values not containing the given string."""
- description_not_contains: String
-
- """All values not ending with the given string"""
- description_not_ends_with: String
-
- """All values that are not contained in given list."""
- description_not_in: [String]
-
- """All values not starting with the given string."""
- description_not_starts_with: String
-
- """All values starting with the given string."""
- description_starts_with: String
- eventDateLocation: EventDateLocationWhereInput
- id: ID
-
- """All values containing the given string."""
- id_contains: ID
-
- """All values ending with the given string."""
- id_ends_with: ID
-
- """All values that are contained in given list."""
- id_in: [ID]
-
- """Any other value that exists and is not equal to the given value."""
- id_not: ID
-
- """All values not containing the given string."""
- id_not_contains: ID
-
- """All values not ending with the given string"""
- id_not_ends_with: ID
-
- """All values that are not contained in given list."""
- id_not_in: [ID]
-
- """All values not starting with the given string."""
- id_not_starts_with: ID
-
- """All values starting with the given string."""
- id_starts_with: ID
- name: String
-
- """All values containing the given string."""
- name_contains: String
-
- """All values ending with the given string."""
- name_ends_with: String
-
- """All values that are contained in given list."""
- name_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- name_not: String
-
- """All values not containing the given string."""
- name_not_contains: String
-
- """All values not ending with the given string"""
- name_not_ends_with: String
-
- """All values that are not contained in given list."""
- name_not_in: [String]
-
- """All values not starting with the given string."""
- name_not_starts_with: String
-
- """All values starting with the given string."""
- name_starts_with: String
-}
-
-"""References PassOption record uniquely"""
-input PassOptionWhereUniqueInput {
- id: ID
-}
-
-"""Slate-compatible RichText AST"""
-scalar RichTextAST
-
-"""Scheduled Operation system model"""
-type ScheduledOperation implements Entity & Node {
- affectedDocuments(
- after: String
- before: String
- first: Int
-
+ nftImage(
"""
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
forceParentLocale: Boolean
- last: Int
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- skip: Int
- ): [ScheduledOperationAffectedDocument!]!
-
- """The time the document was created"""
- createdAt: DateTime!
+ ): Asset!
- """User that created this document"""
- createdBy(
+ """
+ Permanent name associated with the NFT. Cannot be changed or localized.
+ """
+ nftName: String!
+ organizer(
"""
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
- Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
@@ -8941,39 +8441,21 @@ type ScheduledOperation implements Entity & Node {
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- ): User
-
- """Operation description"""
- description: String
-
- """Get the document in other stages"""
- documentInStages(
- """Decides if the current stage should be included or not"""
- includeCurrent: Boolean! = false
+ ): Organizer
+ """The time the document was published. Null on documents in draft stage."""
+ publishedAt(
"""
- Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
"""
- inheritLocale: Boolean! = false
-
- """Potential stages that should be returned"""
- stages: [Stage!]! = [DRAFT, PUBLISHED]
- ): [ScheduledOperation!]!
-
- """Operation error message"""
- errorMessage: String
-
- """The unique identifier"""
- id: ID!
-
- """The time the document was published. Null on documents in draft stage."""
- publishedAt: DateTime
+ variation: SystemDateTimeFieldVariation! = COMBINED
+ ): DateTime
"""User that last published this document"""
publishedBy(
@@ -8997,43 +8479,45 @@ type ScheduledOperation implements Entity & Node {
"""
locales: [Locale!]
): User
+ scheduledIn(
+ after: String
+ before: String
+ first: Int
- """
- Raw operation payload including all details, this field is subject to change
- """
- rawPayload: Json!
-
- """The release this operation is scheduled for"""
- release(
"""
Sets the locale of the resolved parent document as the only locale in the query's subtree.
- Note that `release` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ Note that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will affect any existing locale filtering defined in the query's tree for the subtree.
"""
forceParentLocale: Boolean
+ last: Int
"""
Allows to optionally override locale filtering behaviour in the query's subtree.
- Note that `release` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ Note that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
"""
locales: [Locale!]
- ): ScheduledRelease
+ skip: Int
+ where: ScheduledOperationWhereInput
+ ): [ScheduledOperation!]!
"""System stage field"""
stage: Stage!
- """operation Status"""
- status: ScheduledOperationStatus!
-
"""The time the document was updated"""
- updatedAt: DateTime!
+ updatedAt(
+ """
+ Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both
+ """
+ variation: SystemDateTimeFieldVariation! = COMBINED
+ ): DateTime!
"""User that last updated this document"""
updatedBy(
@@ -9059,64 +8543,160 @@ type ScheduledOperation implements Entity & Node {
): User
}
-union ScheduledOperationAffectedDocument = Asset | ContentSpace | Event | EventPass | EventPassDelayedRevealed | Organizer | Pack
+input PackConnectInput {
+ """
+ Allow to specify document position in list of connected documents, will default to appending at end of list
+ """
+ position: ConnectPositionInput
+
+ """Document to connect"""
+ where: PackWhereUniqueInput!
+}
"""A connection to a list of items."""
-type ScheduledOperationConnection {
+type PackConnection {
aggregate: Aggregate!
"""A list of edges."""
- edges: [ScheduledOperationEdge!]!
+ edges: [PackEdge!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
-"""An edge in a connection."""
-type ScheduledOperationEdge {
- """A cursor for use in pagination."""
- cursor: String!
+input PackCreateInput {
+ createdAt: DateTime
- """The item at the end of the edge."""
- node: ScheduledOperation!
-}
+ """description input for default locale (en)"""
+ description: String!
+ eventPasses: PackEventPassesCreateManyInlineInput
-enum ScheduledOperationOrderByInput {
- createdAt_ASC
- createdAt_DESC
- description_ASC
- description_DESC
- errorMessage_ASC
- errorMessage_DESC
- id_ASC
- id_DESC
- publishedAt_ASC
- publishedAt_DESC
- status_ASC
- status_DESC
- updatedAt_ASC
- updatedAt_DESC
+ """
+ Inline mutations for managing document localizations excluding the default locale
+ """
+ localizations: PackCreateLocalizationsInput
+
+ """name input for default locale (en)"""
+ name: String!
+ nftDescription: String!
+ nftImage: AssetCreateOneInlineInput!
+ nftName: String!
+ organizer: OrganizerCreateOneInlineInput
+ updatedAt: DateTime
}
-"""System Scheduled Operation Status"""
-enum ScheduledOperationStatus {
- CANCELED
- COMPLETED
- FAILED
- IN_PROGRESS
- PENDING
+input PackCreateLocalizationDataInput {
+ createdAt: DateTime
+ description: String!
+ name: String!
+ updatedAt: DateTime
}
-"""Identifies documents"""
-input ScheduledOperationWhereInput {
- """Logical AND on all given filters."""
- AND: [ScheduledOperationWhereInput!]
+input PackCreateLocalizationInput {
+ """Localization input"""
+ data: PackCreateLocalizationDataInput!
+ locale: Locale!
+}
- """Logical NOT on all given filters combined by AND."""
- NOT: [ScheduledOperationWhereInput!]
+input PackCreateLocalizationsInput {
+ """Create localizations for the newly-created document"""
+ create: [PackCreateLocalizationInput!]
+}
+
+input PackCreateManyInlineInput {
+ """Connect multiple existing Pack documents"""
+ connect: [PackWhereUniqueInput!]
+
+ """Create and connect multiple existing Pack documents"""
+ create: [PackCreateInput!]
+}
+
+input PackCreateOneInlineInput {
+ """Connect one existing Pack document"""
+ connect: PackWhereUniqueInput
+
+ """Create and connect one Pack document"""
+ create: PackCreateInput
+}
+
+"""An edge in a connection."""
+type PackEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
+
+ """The item at the end of the edge."""
+ node: Pack!
+}
+
+union PackEventPasses = EventPass
+
+input PackEventPassesConnectInput {
+ EventPass: EventPassConnectInput
+}
+
+input PackEventPassesCreateInput {
+ EventPass: EventPassCreateInput
+}
+
+input PackEventPassesCreateManyInlineInput {
+ """Connect multiple existing PackEventPasses documents"""
+ connect: [PackEventPassesWhereUniqueInput!]
+
+ """Create and connect multiple existing PackEventPasses documents"""
+ create: [PackEventPassesCreateInput!]
+}
+
+input PackEventPassesUpdateManyInlineInput {
+ """Connect multiple existing PackEventPasses documents"""
+ connect: [PackEventPassesConnectInput!]
+
+ """Create and connect multiple PackEventPasses documents"""
+ create: [PackEventPassesCreateInput!]
+
+ """Delete multiple PackEventPasses documents"""
+ delete: [PackEventPassesWhereUniqueInput!]
+
+ """Disconnect multiple PackEventPasses documents"""
+ disconnect: [PackEventPassesWhereUniqueInput!]
+
+ """
+ Override currently-connected documents with multiple existing PackEventPasses documents
+ """
+ set: [PackEventPassesWhereUniqueInput!]
+
+ """Update multiple PackEventPasses documents"""
+ update: [PackEventPassesUpdateWithNestedWhereUniqueInput!]
+
+ """Upsert multiple PackEventPasses documents"""
+ upsert: [PackEventPassesUpsertWithNestedWhereUniqueInput!]
+}
+
+input PackEventPassesUpdateWithNestedWhereUniqueInput {
+ EventPass: EventPassUpdateWithNestedWhereUniqueInput
+}
+
+input PackEventPassesUpsertWithNestedWhereUniqueInput {
+ EventPass: EventPassUpsertWithNestedWhereUniqueInput
+}
+
+input PackEventPassesWhereInput {
+ EventPass: EventPassWhereInput
+}
+
+input PackEventPassesWhereUniqueInput {
+ EventPass: EventPassWhereUniqueInput
+}
+
+"""Identifies documents"""
+input PackManyWhereInput {
+ """Logical AND on all given filters."""
+ AND: [PackWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [PackWhereInput!]
"""Logical OR on all given filters."""
- OR: [ScheduledOperationWhereInput!]
+ OR: [PackWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
@@ -9143,90 +8723,103 @@ input ScheduledOperationWhereInput {
"""All values that are not contained in given list."""
createdAt_not_in: [DateTime]
createdBy: UserWhereInput
- description: String
+ documentInStages_every: PackWhereStageInput
+ documentInStages_none: PackWhereStageInput
+ documentInStages_some: PackWhereStageInput
+
+ """All values in which the union is empty"""
+ eventPasses_empty: Boolean
+
+ """
+ Matches if the union contains at least one connection to the provided item to the filter
+ """
+ eventPasses_some: PackEventPassesWhereInput
+ id: ID
"""All values containing the given string."""
- description_contains: String
+ id_contains: ID
"""All values ending with the given string."""
- description_ends_with: String
+ id_ends_with: ID
"""All values that are contained in given list."""
- description_in: [String]
+ id_in: [ID]
"""Any other value that exists and is not equal to the given value."""
- description_not: String
+ id_not: ID
"""All values not containing the given string."""
- description_not_contains: String
+ id_not_contains: ID
"""All values not ending with the given string"""
- description_not_ends_with: String
+ id_not_ends_with: ID
"""All values that are not contained in given list."""
- description_not_in: [String]
+ id_not_in: [ID]
"""All values not starting with the given string."""
- description_not_starts_with: String
+ id_not_starts_with: ID
"""All values starting with the given string."""
- description_starts_with: String
- errorMessage: String
+ id_starts_with: ID
+ nftDescription: String
"""All values containing the given string."""
- errorMessage_contains: String
+ nftDescription_contains: String
"""All values ending with the given string."""
- errorMessage_ends_with: String
+ nftDescription_ends_with: String
"""All values that are contained in given list."""
- errorMessage_in: [String]
+ nftDescription_in: [String]
"""Any other value that exists and is not equal to the given value."""
- errorMessage_not: String
+ nftDescription_not: String
"""All values not containing the given string."""
- errorMessage_not_contains: String
+ nftDescription_not_contains: String
"""All values not ending with the given string"""
- errorMessage_not_ends_with: String
+ nftDescription_not_ends_with: String
"""All values that are not contained in given list."""
- errorMessage_not_in: [String]
+ nftDescription_not_in: [String]
"""All values not starting with the given string."""
- errorMessage_not_starts_with: String
+ nftDescription_not_starts_with: String
"""All values starting with the given string."""
- errorMessage_starts_with: String
- id: ID
+ nftDescription_starts_with: String
+ nftImage: AssetWhereInput
+ nftName: String
"""All values containing the given string."""
- id_contains: ID
+ nftName_contains: String
"""All values ending with the given string."""
- id_ends_with: ID
+ nftName_ends_with: String
"""All values that are contained in given list."""
- id_in: [ID]
+ nftName_in: [String]
"""Any other value that exists and is not equal to the given value."""
- id_not: ID
+ nftName_not: String
"""All values not containing the given string."""
- id_not_contains: ID
+ nftName_not_contains: String
"""All values not ending with the given string"""
- id_not_ends_with: ID
+ nftName_not_ends_with: String
"""All values that are not contained in given list."""
- id_not_in: [ID]
+ nftName_not_in: [String]
"""All values not starting with the given string."""
- id_not_starts_with: ID
+ nftName_not_starts_with: String
"""All values starting with the given string."""
- id_starts_with: ID
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
publishedAt: DateTime
"""All values greater than the given value."""
@@ -9250,28 +8843,9 @@ input ScheduledOperationWhereInput {
"""All values that are not contained in given list."""
publishedAt_not_in: [DateTime]
publishedBy: UserWhereInput
-
- """All values containing the given json path."""
- rawPayload_json_path_exists: String
-
- """
- Recursively tries to find the provided JSON scalar value inside the field.
- It does use an exact match when comparing values.
- If you pass `null` as value the filter will be ignored.
- Note: This filter fails if you try to look for a non scalar JSON value!
- """
- rawPayload_value_recursive: Json
- release: ScheduledReleaseWhereInput
- status: ScheduledOperationStatus
-
- """All values that are contained in given list."""
- status_in: [ScheduledOperationStatus]
-
- """Any other value that exists and is not equal to the given value."""
- status_not: ScheduledOperationStatus
-
- """All values that are not contained in given list."""
- status_not_in: [ScheduledOperationStatus]
+ scheduledIn_every: ScheduledOperationWhereInput
+ scheduledIn_none: ScheduledOperationWhereInput
+ scheduledIn_some: ScheduledOperationWhereInput
updatedAt: DateTime
"""All values greater than the given value."""
@@ -9297,245 +8871,186 @@ input ScheduledOperationWhereInput {
updatedBy: UserWhereInput
}
-"""References ScheduledOperation record uniquely"""
-input ScheduledOperationWhereUniqueInput {
- id: ID
+enum PackOrderByInput {
+ createdAt_ASC
+ createdAt_DESC
+ description_ASC
+ description_DESC
+ id_ASC
+ id_DESC
+ name_ASC
+ name_DESC
+ nftDescription_ASC
+ nftDescription_DESC
+ nftName_ASC
+ nftName_DESC
+ publishedAt_ASC
+ publishedAt_DESC
+ updatedAt_ASC
+ updatedAt_DESC
}
-"""Scheduled Release system model"""
-type ScheduledRelease implements Entity & Node {
- """The time the document was created"""
- createdAt: DateTime!
+input PackUpdateInput {
+ """description input for default locale (en)"""
+ description: String
+ eventPasses: PackEventPassesUpdateManyInlineInput
- """User that created this document"""
- createdBy(
- """
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
-
- Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
+ """Manage document localizations"""
+ localizations: PackUpdateLocalizationsInput
- """
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- """
- locales: [Locale!]
- ): User
+ """name input for default locale (en)"""
+ name: String
+ nftDescription: String
+ nftImage: AssetUpdateOneInlineInput
+ nftName: String
+ organizer: OrganizerUpdateOneInlineInput
+}
- """Release description"""
+input PackUpdateLocalizationDataInput {
description: String
+ name: String
+}
- """Get the document in other stages"""
- documentInStages(
- """Decides if the current stage should be included or not"""
- includeCurrent: Boolean! = false
+input PackUpdateLocalizationInput {
+ data: PackUpdateLocalizationDataInput!
+ locale: Locale!
+}
- """
- Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
- """
- inheritLocale: Boolean! = false
+input PackUpdateLocalizationsInput {
+ """Localizations to create"""
+ create: [PackCreateLocalizationInput!]
- """Potential stages that should be returned"""
- stages: [Stage!]! = [DRAFT, PUBLISHED]
- ): [ScheduledRelease!]!
+ """Localizations to delete"""
+ delete: [Locale!]
- """Release error message"""
- errorMessage: String
+ """Localizations to update"""
+ update: [PackUpdateLocalizationInput!]
+ upsert: [PackUpsertLocalizationInput!]
+}
- """The unique identifier"""
- id: ID!
+input PackUpdateManyInlineInput {
+ """Connect multiple existing Pack documents"""
+ connect: [PackConnectInput!]
- """Whether scheduled release should be run"""
- isActive: Boolean!
+ """Create and connect multiple Pack documents"""
+ create: [PackCreateInput!]
- """Whether scheduled release is implicit"""
- isImplicit: Boolean!
+ """Delete multiple Pack documents"""
+ delete: [PackWhereUniqueInput!]
- """Operations to run with this release"""
- operations(
- after: String
- before: String
- first: Int
+ """Disconnect multiple Pack documents"""
+ disconnect: [PackWhereUniqueInput!]
- """
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
-
- Note that `operations` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
- last: Int
+ """
+ Override currently-connected documents with multiple existing Pack documents
+ """
+ set: [PackWhereUniqueInput!]
- """
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `operations` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- """
- locales: [Locale!]
- orderBy: ScheduledOperationOrderByInput
- skip: Int
- where: ScheduledOperationWhereInput
- ): [ScheduledOperation!]!
+ """Update multiple Pack documents"""
+ update: [PackUpdateWithNestedWhereUniqueInput!]
- """The time the document was published. Null on documents in draft stage."""
- publishedAt: DateTime
+ """Upsert multiple Pack documents"""
+ upsert: [PackUpsertWithNestedWhereUniqueInput!]
+}
- """User that last published this document"""
- publishedBy(
- """
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
-
- Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
+input PackUpdateManyInput {
+ """description input for default locale (en)"""
+ description: String
- """
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- """
- locales: [Locale!]
- ): User
+ """Optional updates to localizations"""
+ localizations: PackUpdateManyLocalizationsInput
- """Release date and time"""
- releaseAt: DateTime
+ """name input for default locale (en)"""
+ name: String
+ nftDescription: String
+ nftName: String
+}
- """System stage field"""
- stage: Stage!
+input PackUpdateManyLocalizationDataInput {
+ description: String
+ name: String
+}
- """Release Status"""
- status: ScheduledReleaseStatus!
+input PackUpdateManyLocalizationInput {
+ data: PackUpdateManyLocalizationDataInput!
+ locale: Locale!
+}
- """Release Title"""
- title: String
+input PackUpdateManyLocalizationsInput {
+ """Localizations to update"""
+ update: [PackUpdateManyLocalizationInput!]
+}
- """The time the document was updated"""
- updatedAt: DateTime!
+input PackUpdateOneInlineInput {
+ """Connect existing Pack document"""
+ connect: PackWhereUniqueInput
- """User that last updated this document"""
- updatedBy(
- """
- Sets the locale of the resolved parent document as the only locale in the query's subtree.
-
- Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will affect any existing locale filtering defined in the query's tree for the subtree.
- """
- forceParentLocale: Boolean
+ """Create and connect one Pack document"""
+ create: PackCreateInput
- """
- Allows to optionally override locale filtering behaviour in the query's subtree.
-
- Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
- """
- locales: [Locale!]
- ): User
-}
+ """Delete currently connected Pack document"""
+ delete: Boolean
-"""A connection to a list of items."""
-type ScheduledReleaseConnection {
- aggregate: Aggregate!
+ """Disconnect currently connected Pack document"""
+ disconnect: Boolean
- """A list of edges."""
- edges: [ScheduledReleaseEdge!]!
+ """Update single Pack document"""
+ update: PackUpdateWithNestedWhereUniqueInput
- """Information to aid in pagination."""
- pageInfo: PageInfo!
+ """Upsert single Pack document"""
+ upsert: PackUpsertWithNestedWhereUniqueInput
}
-input ScheduledReleaseCreateInput {
- createdAt: DateTime
- description: String
- errorMessage: String
- isActive: Boolean = true
- releaseAt: DateTime
- title: String
- updatedAt: DateTime
+input PackUpdateWithNestedWhereUniqueInput {
+ """Document to update"""
+ data: PackUpdateInput!
+
+ """Unique document search"""
+ where: PackWhereUniqueInput!
}
-"""An edge in a connection."""
-type ScheduledReleaseEdge {
- """A cursor for use in pagination."""
- cursor: String!
+input PackUpsertInput {
+ """Create document if it didn't exist"""
+ create: PackCreateInput!
- """The item at the end of the edge."""
- node: ScheduledRelease!
+ """Update document if it exists"""
+ update: PackUpdateInput!
}
-enum ScheduledReleaseOrderByInput {
- createdAt_ASC
- createdAt_DESC
- description_ASC
- description_DESC
- errorMessage_ASC
- errorMessage_DESC
- id_ASC
- id_DESC
- isActive_ASC
- isActive_DESC
- isImplicit_ASC
- isImplicit_DESC
- publishedAt_ASC
- publishedAt_DESC
- releaseAt_ASC
- releaseAt_DESC
- status_ASC
- status_DESC
- title_ASC
- title_DESC
- updatedAt_ASC
- updatedAt_DESC
+input PackUpsertLocalizationInput {
+ create: PackCreateLocalizationDataInput!
+ locale: Locale!
+ update: PackUpdateLocalizationDataInput!
}
-"""System Scheduled Release Status"""
-enum ScheduledReleaseStatus {
- COMPLETED
- FAILED
- IN_PROGRESS
- PENDING
+input PackUpsertWithNestedWhereUniqueInput {
+ """Upsert data"""
+ data: PackUpsertInput!
+
+ """Unique document search"""
+ where: PackWhereUniqueInput!
}
-input ScheduledReleaseUpdateInput {
- description: String
- errorMessage: String
- isActive: Boolean
- releaseAt: DateTime
- title: String
+"""
+This contains a set of filters that can be used to compare values internally
+"""
+input PackWhereComparatorInput {
+ """
+ This field can be used to request to check if the entry is outdated by internal comparison
+ """
+ outdated_to: Boolean
}
"""Identifies documents"""
-input ScheduledReleaseWhereInput {
+input PackWhereInput {
"""Logical AND on all given filters."""
- AND: [ScheduledReleaseWhereInput!]
+ AND: [PackWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [ScheduledReleaseWhereInput!]
+ NOT: [PackWhereInput!]
"""Logical OR on all given filters."""
- OR: [ScheduledReleaseWhereInput!]
+ OR: [PackWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
@@ -9590,34 +9105,17 @@ input ScheduledReleaseWhereInput {
"""All values starting with the given string."""
description_starts_with: String
- errorMessage: String
-
- """All values containing the given string."""
- errorMessage_contains: String
-
- """All values ending with the given string."""
- errorMessage_ends_with: String
-
- """All values that are contained in given list."""
- errorMessage_in: [String]
-
- """Any other value that exists and is not equal to the given value."""
- errorMessage_not: String
-
- """All values not containing the given string."""
- errorMessage_not_contains: String
-
- """All values not ending with the given string"""
- errorMessage_not_ends_with: String
-
- """All values that are not contained in given list."""
- errorMessage_not_in: [String]
+ documentInStages_every: PackWhereStageInput
+ documentInStages_none: PackWhereStageInput
+ documentInStages_some: PackWhereStageInput
- """All values not starting with the given string."""
- errorMessage_not_starts_with: String
+ """All values in which the union is empty"""
+ eventPasses_empty: Boolean
- """All values starting with the given string."""
- errorMessage_starts_with: String
+ """
+ Matches if the union contains at least one connection to the provided item to the filter
+ """
+ eventPasses_some: PackEventPassesWhereInput
id: ID
"""All values containing the given string."""
@@ -9646,100 +9144,118 @@ input ScheduledReleaseWhereInput {
"""All values starting with the given string."""
id_starts_with: ID
- isActive: Boolean
-
- """Any other value that exists and is not equal to the given value."""
- isActive_not: Boolean
- isImplicit: Boolean
-
- """Any other value that exists and is not equal to the given value."""
- isImplicit_not: Boolean
- operations_every: ScheduledOperationWhereInput
- operations_none: ScheduledOperationWhereInput
- operations_some: ScheduledOperationWhereInput
- publishedAt: DateTime
+ name: String
- """All values greater than the given value."""
- publishedAt_gt: DateTime
+ """All values containing the given string."""
+ name_contains: String
- """All values greater than or equal the given value."""
- publishedAt_gte: DateTime
+ """All values ending with the given string."""
+ name_ends_with: String
"""All values that are contained in given list."""
- publishedAt_in: [DateTime]
+ name_in: [String]
- """All values less than the given value."""
- publishedAt_lt: DateTime
+ """Any other value that exists and is not equal to the given value."""
+ name_not: String
- """All values less than or equal the given value."""
- publishedAt_lte: DateTime
+ """All values not containing the given string."""
+ name_not_contains: String
- """Any other value that exists and is not equal to the given value."""
- publishedAt_not: DateTime
+ """All values not ending with the given string"""
+ name_not_ends_with: String
"""All values that are not contained in given list."""
- publishedAt_not_in: [DateTime]
- publishedBy: UserWhereInput
- releaseAt: DateTime
+ name_not_in: [String]
- """All values greater than the given value."""
- releaseAt_gt: DateTime
+ """All values not starting with the given string."""
+ name_not_starts_with: String
- """All values greater than or equal the given value."""
- releaseAt_gte: DateTime
+ """All values starting with the given string."""
+ name_starts_with: String
+ nftDescription: String
- """All values that are contained in given list."""
- releaseAt_in: [DateTime]
+ """All values containing the given string."""
+ nftDescription_contains: String
- """All values less than the given value."""
- releaseAt_lt: DateTime
+ """All values ending with the given string."""
+ nftDescription_ends_with: String
- """All values less than or equal the given value."""
- releaseAt_lte: DateTime
+ """All values that are contained in given list."""
+ nftDescription_in: [String]
"""Any other value that exists and is not equal to the given value."""
- releaseAt_not: DateTime
-
- """All values that are not contained in given list."""
- releaseAt_not_in: [DateTime]
- status: ScheduledReleaseStatus
+ nftDescription_not: String
- """All values that are contained in given list."""
- status_in: [ScheduledReleaseStatus]
+ """All values not containing the given string."""
+ nftDescription_not_contains: String
- """Any other value that exists and is not equal to the given value."""
- status_not: ScheduledReleaseStatus
+ """All values not ending with the given string"""
+ nftDescription_not_ends_with: String
"""All values that are not contained in given list."""
- status_not_in: [ScheduledReleaseStatus]
- title: String
+ nftDescription_not_in: [String]
+
+ """All values not starting with the given string."""
+ nftDescription_not_starts_with: String
+
+ """All values starting with the given string."""
+ nftDescription_starts_with: String
+ nftImage: AssetWhereInput
+ nftName: String
"""All values containing the given string."""
- title_contains: String
+ nftName_contains: String
"""All values ending with the given string."""
- title_ends_with: String
+ nftName_ends_with: String
"""All values that are contained in given list."""
- title_in: [String]
+ nftName_in: [String]
"""Any other value that exists and is not equal to the given value."""
- title_not: String
+ nftName_not: String
"""All values not containing the given string."""
- title_not_contains: String
+ nftName_not_contains: String
"""All values not ending with the given string"""
- title_not_ends_with: String
+ nftName_not_ends_with: String
"""All values that are not contained in given list."""
- title_not_in: [String]
+ nftName_not_in: [String]
"""All values not starting with the given string."""
- title_not_starts_with: String
+ nftName_not_starts_with: String
"""All values starting with the given string."""
- title_starts_with: String
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
+ publishedAt: DateTime
+
+ """All values greater than the given value."""
+ publishedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ publishedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ publishedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ publishedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ publishedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ publishedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ publishedAt_not_in: [DateTime]
+ publishedBy: UserWhereInput
+ scheduledIn_every: ScheduledOperationWhereInput
+ scheduledIn_none: ScheduledOperationWhereInput
+ scheduledIn_some: ScheduledOperationWhereInput
updatedAt: DateTime
"""All values greater than the given value."""
@@ -9765,219 +9281,301 @@ input ScheduledReleaseWhereInput {
updatedBy: UserWhereInput
}
-"""References ScheduledRelease record uniquely"""
-input ScheduledReleaseWhereUniqueInput {
+"""
+The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
+"""
+input PackWhereStageInput {
+ """Logical AND on all given filters."""
+ AND: [PackWhereStageInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [PackWhereStageInput!]
+
+ """Logical OR on all given filters."""
+ OR: [PackWhereStageInput!]
+
+ """
+ This field contains fields which can be set as true or false to specify an internal comparison
+ """
+ compareWithParent: PackWhereComparatorInput
+
+ """Specify the stage to compare with"""
+ stage: Stage
+}
+
+"""References Pack record uniquely"""
+input PackWhereUniqueInput {
id: ID
}
-"""Stage system enumeration"""
-enum Stage {
- """The Draft is the default stage for all your content."""
- DRAFT
+"""Information about pagination in a connection."""
+type PageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
- """The Published stage is where you can publish your content to."""
- PUBLISHED
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """Number of items in the current page."""
+ pageSize: Int
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
}
"""
-Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
+Define the options of an 'Event Pass' on an 'Event Date Location'. You can define severals if the event have multiple locations.
"""
-input String_comparison_exp {
- _eq: String
- _gt: String
- _gte: String
-
- """does the column match the given case-insensitive pattern"""
- _ilike: String
- _in: [String!]
-
+type PassOption implements Entity {
"""
- does the column match the given POSIX regular expression, case insensitive
+ Description of the option, like "Access to the event on Day 1"
"""
- _iregex: String
- _is_null: Boolean
+ description: String
- """does the column match the given pattern"""
- _like: String
- _lt: String
- _lte: String
- _neq: String
+ """Define the location and date for this option."""
+ eventDateLocation(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
- """does the column NOT match the given case-insensitive pattern"""
- _nilike: String
- _nin: [String!]
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): EventDateLocation
- """
- does the column NOT match the given POSIX regular expression, case insensitive
- """
- _niregex: String
+ """The unique identifier"""
+ id: ID!
- """does the column NOT match the given pattern"""
- _nlike: String
+ """System Locale field"""
+ locale: Locale!
+
+ """Get the other localizations for this document"""
+ localizations(
+ """Decides if the current locale should be included or not"""
+ includeCurrent: Boolean! = false
+
+ """
+ Potential locales that should be returned.
+
+ The order of locales will also override locale fall-backing behaviour in the query's subtree.
+
+ Note any related model with localized fields in the query's subtree will be affected.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+
+ Consider using this in conjunction with forceParentLocale on the children relation fields.
+ """
+ locales: [Locale!]! = [en, fr]
+ ): [PassOption!]!
"""
- does the column NOT match the given POSIX regular expression, case sensitive
+ Name of the options, like "Day 1 Access" or "VIP Room Access"
"""
- _nregex: String
+ name: String!
- """does the column NOT match the given SQL regular expression"""
- _nsimilar: String
+ """System stage field"""
+ stage: Stage!
+}
+
+input PassOptionCreateInput {
+ """description input for default locale (en)"""
+ description: String
+ eventDateLocation: EventDateLocationCreateOneInlineInput
"""
- does the column match the given POSIX regular expression, case sensitive
+ Inline mutations for managing document localizations excluding the default locale
"""
- _regex: String
+ localizations: PassOptionCreateLocalizationsInput
- """does the column match the given SQL regular expression"""
- _similar: String
+ """name input for default locale (en)"""
+ name: String!
}
-enum SystemDateTimeFieldVariation {
- BASE
- COMBINED
- LOCALIZATION
+input PassOptionCreateLocalizationDataInput {
+ description: String
+ name: String!
}
-"""User system model"""
-type User implements Entity & Node {
- """The time the document was created"""
- createdAt: DateTime!
+input PassOptionCreateLocalizationInput {
+ """Localization input"""
+ data: PassOptionCreateLocalizationDataInput!
+ locale: Locale!
+}
- """Get the document in other stages"""
- documentInStages(
- """Decides if the current stage should be included or not"""
- includeCurrent: Boolean! = false
+input PassOptionCreateLocalizationsInput {
+ """Create localizations for the newly-created document"""
+ create: [PassOptionCreateLocalizationInput!]
+}
- """
- Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
- """
- inheritLocale: Boolean! = false
+input PassOptionCreateManyInlineInput {
+ """Create and connect multiple existing PassOption documents"""
+ create: [PassOptionCreateInput!]
+}
- """Potential stages that should be returned"""
- stages: [Stage!]! = [DRAFT, PUBLISHED]
- ): [User!]!
+input PassOptionCreateWithPositionInput {
+ """Document to create"""
+ data: PassOptionCreateInput!
- """The unique identifier"""
- id: ID!
+ """
+ Position in the list of existing component instances, will default to appending at the end of list
+ """
+ position: ConnectPositionInput
+}
- """Flag to determine if user is active or not"""
- isActive: Boolean!
+enum PassOptionOrderByInput {
+ description_ASC
+ description_DESC
+ id_ASC
+ id_DESC
+ name_ASC
+ name_DESC
+}
- """User Kind. Can be either MEMBER, PAT or PUBLIC"""
- kind: UserKind!
+input PassOptionUpdateInput {
+ """description input for default locale (en)"""
+ description: String
+ eventDateLocation: EventDateLocationUpdateOneInlineInput
- """The username"""
- name: String!
+ """Manage document localizations"""
+ localizations: PassOptionUpdateLocalizationsInput
- """Profile Picture url"""
- picture: String
+ """name input for default locale (en)"""
+ name: String
+}
- """The time the document was published. Null on documents in draft stage."""
- publishedAt: DateTime
+input PassOptionUpdateLocalizationDataInput {
+ description: String
+ name: String
+}
- """System stage field"""
- stage: Stage!
+input PassOptionUpdateLocalizationInput {
+ data: PassOptionUpdateLocalizationDataInput!
+ locale: Locale!
+}
- """The time the document was updated"""
- updatedAt: DateTime!
+input PassOptionUpdateLocalizationsInput {
+ """Localizations to create"""
+ create: [PassOptionCreateLocalizationInput!]
+
+ """Localizations to delete"""
+ delete: [Locale!]
+
+ """Localizations to update"""
+ update: [PassOptionUpdateLocalizationInput!]
+ upsert: [PassOptionUpsertLocalizationInput!]
}
-"""A connection to a list of items."""
-type UserConnection {
- aggregate: Aggregate!
+input PassOptionUpdateManyInlineInput {
+ """Create and connect multiple PassOption component instances"""
+ create: [PassOptionCreateWithPositionInput!]
- """A list of edges."""
- edges: [UserEdge!]!
+ """Delete multiple PassOption documents"""
+ delete: [PassOptionWhereUniqueInput!]
- """Information to aid in pagination."""
- pageInfo: PageInfo!
+ """Update multiple PassOption component instances"""
+ update: [PassOptionUpdateWithNestedWhereUniqueAndPositionInput!]
+
+ """Upsert multiple PassOption component instances"""
+ upsert: [PassOptionUpsertWithNestedWhereUniqueAndPositionInput!]
}
-"""An edge in a connection."""
-type UserEdge {
- """A cursor for use in pagination."""
- cursor: String!
+input PassOptionUpdateWithNestedWhereUniqueAndPositionInput {
+ """Document to update"""
+ data: PassOptionUpdateInput
- """The item at the end of the edge."""
- node: User!
+ """
+ Position in the list of existing component instances, will default to appending at the end of list
+ """
+ position: ConnectPositionInput
+
+ """Unique component instance search"""
+ where: PassOptionWhereUniqueInput!
}
-"""System User Kind"""
-enum UserKind {
- APP_TOKEN
- MEMBER
- PAT
- PUBLIC
- WEBHOOK
+input PassOptionUpsertInput {
+ """Create document if it didn't exist"""
+ create: PassOptionCreateInput!
+
+ """Update document if it exists"""
+ update: PassOptionUpdateInput!
}
-enum UserOrderByInput {
- createdAt_ASC
- createdAt_DESC
- id_ASC
- id_DESC
- isActive_ASC
- isActive_DESC
- kind_ASC
- kind_DESC
- name_ASC
- name_DESC
- picture_ASC
- picture_DESC
- publishedAt_ASC
- publishedAt_DESC
- updatedAt_ASC
- updatedAt_DESC
+input PassOptionUpsertLocalizationInput {
+ create: PassOptionCreateLocalizationDataInput!
+ locale: Locale!
+ update: PassOptionUpdateLocalizationDataInput!
}
-"""
-This contains a set of filters that can be used to compare values internally
-"""
-input UserWhereComparatorInput {
+input PassOptionUpsertWithNestedWhereUniqueAndPositionInput {
+ """Document to upsert"""
+ data: PassOptionUpsertInput
+
"""
- This field can be used to request to check if the entry is outdated by internal comparison
+ Position in the list of existing component instances, will default to appending at the end of list
"""
- outdated_to: Boolean
+ position: ConnectPositionInput
+
+ """Unique component instance search"""
+ where: PassOptionWhereUniqueInput!
}
"""Identifies documents"""
-input UserWhereInput {
+input PassOptionWhereInput {
"""Logical AND on all given filters."""
- AND: [UserWhereInput!]
+ AND: [PassOptionWhereInput!]
"""Logical NOT on all given filters combined by AND."""
- NOT: [UserWhereInput!]
+ NOT: [PassOptionWhereInput!]
"""Logical OR on all given filters."""
- OR: [UserWhereInput!]
+ OR: [PassOptionWhereInput!]
"""Contains search across all appropriate fields."""
_search: String
- createdAt: DateTime
+ description: String
- """All values greater than the given value."""
- createdAt_gt: DateTime
+ """All values containing the given string."""
+ description_contains: String
- """All values greater than or equal the given value."""
- createdAt_gte: DateTime
+ """All values ending with the given string."""
+ description_ends_with: String
"""All values that are contained in given list."""
- createdAt_in: [DateTime]
+ description_in: [String]
- """All values less than the given value."""
- createdAt_lt: DateTime
+ """Any other value that exists and is not equal to the given value."""
+ description_not: String
- """All values less than or equal the given value."""
- createdAt_lte: DateTime
+ """All values not containing the given string."""
+ description_not_contains: String
- """Any other value that exists and is not equal to the given value."""
- createdAt_not: DateTime
+ """All values not ending with the given string"""
+ description_not_ends_with: String
"""All values that are not contained in given list."""
- createdAt_not_in: [DateTime]
- documentInStages_every: UserWhereStageInput
- documentInStages_none: UserWhereStageInput
- documentInStages_some: UserWhereStageInput
+ description_not_in: [String]
+
+ """All values not starting with the given string."""
+ description_not_starts_with: String
+
+ """All values starting with the given string."""
+ description_starts_with: String
+ eventDateLocation: EventDateLocationWhereInput
id: ID
"""All values containing the given string."""
@@ -10006,20 +9604,6 @@ input UserWhereInput {
"""All values starting with the given string."""
id_starts_with: ID
- isActive: Boolean
-
- """Any other value that exists and is not equal to the given value."""
- isActive_not: Boolean
- kind: UserKind
-
- """All values that are contained in given list."""
- kind_in: [UserKind]
-
- """Any other value that exists and is not equal to the given value."""
- kind_not: UserKind
-
- """All values that are not contained in given list."""
- kind_not_in: [UserKind]
name: String
"""All values containing the given string."""
@@ -10048,34 +9632,350 @@ input UserWhereInput {
"""All values starting with the given string."""
name_starts_with: String
- picture: String
+}
+
+"""References PassOption record uniquely"""
+input PassOptionWhereUniqueInput {
+ id: ID
+}
+
+"""Slate-compatible RichText AST"""
+scalar RichTextAST
+
+"""Scheduled Operation system model"""
+type ScheduledOperation implements Entity & Node {
+ affectedDocuments(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ skip: Int
+ ): [ScheduledOperationAffectedDocument!]!
+
+ """The time the document was created"""
+ createdAt: DateTime!
+
+ """User that created this document"""
+ createdBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+
+ """Operation description"""
+ description: String
+
+ """Get the document in other stages"""
+ documentInStages(
+ """Decides if the current stage should be included or not"""
+ includeCurrent: Boolean! = false
+
+ """
+ Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ """
+ inheritLocale: Boolean! = false
+
+ """Potential stages that should be returned"""
+ stages: [Stage!]! = [DRAFT, PUBLISHED]
+ ): [ScheduledOperation!]!
+
+ """Operation error message"""
+ errorMessage: String
+
+ """The unique identifier"""
+ id: ID!
+
+ """The time the document was published. Null on documents in draft stage."""
+ publishedAt: DateTime
+
+ """User that last published this document"""
+ publishedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+
+ """
+ Raw operation payload including all details, this field is subject to change
+ """
+ rawPayload: Json!
+
+ """The release this operation is scheduled for"""
+ release(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `release` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `release` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): ScheduledRelease
+
+ """System stage field"""
+ stage: Stage!
+
+ """operation Status"""
+ status: ScheduledOperationStatus!
+
+ """The time the document was updated"""
+ updatedAt: DateTime!
+
+ """User that last updated this document"""
+ updatedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+}
+
+union ScheduledOperationAffectedDocument = Asset | ContentSpace | Event | EventPass | EventPassDelayedRevealed | LoyaltyCard | Organizer | Pack
+
+"""A connection to a list of items."""
+type ScheduledOperationConnection {
+ aggregate: Aggregate!
+
+ """A list of edges."""
+ edges: [ScheduledOperationEdge!]!
+
+ """Information to aid in pagination."""
+ pageInfo: PageInfo!
+}
+
+"""An edge in a connection."""
+type ScheduledOperationEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
+
+ """The item at the end of the edge."""
+ node: ScheduledOperation!
+}
+
+enum ScheduledOperationOrderByInput {
+ createdAt_ASC
+ createdAt_DESC
+ description_ASC
+ description_DESC
+ errorMessage_ASC
+ errorMessage_DESC
+ id_ASC
+ id_DESC
+ publishedAt_ASC
+ publishedAt_DESC
+ status_ASC
+ status_DESC
+ updatedAt_ASC
+ updatedAt_DESC
+}
+
+"""System Scheduled Operation Status"""
+enum ScheduledOperationStatus {
+ CANCELED
+ COMPLETED
+ FAILED
+ IN_PROGRESS
+ PENDING
+}
+
+"""Identifies documents"""
+input ScheduledOperationWhereInput {
+ """Logical AND on all given filters."""
+ AND: [ScheduledOperationWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [ScheduledOperationWhereInput!]
+
+ """Logical OR on all given filters."""
+ OR: [ScheduledOperationWhereInput!]
+
+ """Contains search across all appropriate fields."""
+ _search: String
+ createdAt: DateTime
+
+ """All values greater than the given value."""
+ createdAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ createdAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ createdAt_in: [DateTime]
+
+ """All values less than the given value."""
+ createdAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ createdAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ createdAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ createdAt_not_in: [DateTime]
+ createdBy: UserWhereInput
+ description: String
"""All values containing the given string."""
- picture_contains: String
+ description_contains: String
"""All values ending with the given string."""
- picture_ends_with: String
+ description_ends_with: String
"""All values that are contained in given list."""
- picture_in: [String]
+ description_in: [String]
"""Any other value that exists and is not equal to the given value."""
- picture_not: String
+ description_not: String
"""All values not containing the given string."""
- picture_not_contains: String
+ description_not_contains: String
"""All values not ending with the given string"""
- picture_not_ends_with: String
+ description_not_ends_with: String
"""All values that are not contained in given list."""
- picture_not_in: [String]
+ description_not_in: [String]
"""All values not starting with the given string."""
- picture_not_starts_with: String
+ description_not_starts_with: String
"""All values starting with the given string."""
- picture_starts_with: String
+ description_starts_with: String
+ errorMessage: String
+
+ """All values containing the given string."""
+ errorMessage_contains: String
+
+ """All values ending with the given string."""
+ errorMessage_ends_with: String
+
+ """All values that are contained in given list."""
+ errorMessage_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ errorMessage_not: String
+
+ """All values not containing the given string."""
+ errorMessage_not_contains: String
+
+ """All values not ending with the given string"""
+ errorMessage_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ errorMessage_not_in: [String]
+
+ """All values not starting with the given string."""
+ errorMessage_not_starts_with: String
+
+ """All values starting with the given string."""
+ errorMessage_starts_with: String
+ id: ID
+
+ """All values containing the given string."""
+ id_contains: ID
+
+ """All values ending with the given string."""
+ id_ends_with: ID
+
+ """All values that are contained in given list."""
+ id_in: [ID]
+
+ """Any other value that exists and is not equal to the given value."""
+ id_not: ID
+
+ """All values not containing the given string."""
+ id_not_contains: ID
+
+ """All values not ending with the given string"""
+ id_not_ends_with: ID
+
+ """All values that are not contained in given list."""
+ id_not_in: [ID]
+
+ """All values not starting with the given string."""
+ id_not_starts_with: ID
+
+ """All values starting with the given string."""
+ id_starts_with: ID
publishedAt: DateTime
"""All values greater than the given value."""
@@ -10098,6 +9998,29 @@ input UserWhereInput {
"""All values that are not contained in given list."""
publishedAt_not_in: [DateTime]
+ publishedBy: UserWhereInput
+
+ """All values containing the given json path."""
+ rawPayload_json_path_exists: String
+
+ """
+ Recursively tries to find the provided JSON scalar value inside the field.
+ It does use an exact match when comparing values.
+ If you pass `null` as value the filter will be ignored.
+ Note: This filter fails if you try to look for a non scalar JSON value!
+ """
+ rawPayload_value_recursive: Json
+ release: ScheduledReleaseWhereInput
+ status: ScheduledOperationStatus
+
+ """All values that are contained in given list."""
+ status_in: [ScheduledOperationStatus]
+
+ """Any other value that exists and is not equal to the given value."""
+ status_not: ScheduledOperationStatus
+
+ """All values that are not contained in given list."""
+ status_not_in: [ScheduledOperationStatus]
updatedAt: DateTime
"""All values greater than the given value."""
@@ -10120,468 +10043,8189 @@ input UserWhereInput {
"""All values that are not contained in given list."""
updatedAt_not_in: [DateTime]
+ updatedBy: UserWhereInput
}
-"""
-The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
-"""
-input UserWhereStageInput {
- """Logical AND on all given filters."""
- AND: [UserWhereStageInput!]
-
- """Logical NOT on all given filters combined by AND."""
- NOT: [UserWhereStageInput!]
-
- """Logical OR on all given filters."""
- OR: [UserWhereStageInput!]
-
- """
- This field contains fields which can be set as true or false to specify an internal comparison
- """
- compareWithParent: UserWhereComparatorInput
-
- """Specify the stage to compare with"""
- stage: Stage
-}
-
-"""References User record uniquely"""
-input UserWhereUniqueInput {
+"""References ScheduledOperation record uniquely"""
+input ScheduledOperationWhereUniqueInput {
id: ID
}
-type Version {
+"""Scheduled Release system model"""
+type ScheduledRelease implements Entity & Node {
+ """The time the document was created"""
createdAt: DateTime!
- id: ID!
- revision: Int!
- stage: Stage!
-}
-
-input VersionWhereInput {
- id: ID!
- revision: Int!
- stage: Stage!
-}
-
-"""
-An account can represent a user or a role on an organizer. It stores essential information and is used as the root class for relationships with other tables
-"""
-type account {
- address: String!
- created_at: timestamptz
- id: uuid!
- """An object relationship"""
- kyc: kyc
+ """User that created this document"""
+ createdBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
- """An array relationship"""
- roles(
- """distinct select on columns"""
- distinct_on: [roleAssignment_select_column!]
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
- """limit the number of rows returned"""
- limit: Int
+ """Release description"""
+ description: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Get the document in other stages"""
+ documentInStages(
+ """Decides if the current stage should be included or not"""
+ includeCurrent: Boolean! = false
- """sort the rows by one or more columns"""
- order_by: [roleAssignment_order_by!]
+ """
+ Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ """
+ inheritLocale: Boolean! = false
- """filter the rows returned"""
- where: roleAssignment_bool_exp
- ): [roleAssignment!]!
+ """Potential stages that should be returned"""
+ stages: [Stage!]! = [DRAFT, PUBLISHED]
+ ): [ScheduledRelease!]!
- """An aggregate relationship"""
- roles_aggregate(
- """distinct select on columns"""
- distinct_on: [roleAssignment_select_column!]
+ """Release error message"""
+ errorMessage: String
- """limit the number of rows returned"""
- limit: Int
+ """The unique identifier"""
+ id: ID!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Whether scheduled release should be run"""
+ isActive: Boolean!
- """sort the rows by one or more columns"""
- order_by: [roleAssignment_order_by!]
+ """Whether scheduled release is implicit"""
+ isImplicit: Boolean!
+
+ """Operations to run with this release"""
+ operations(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `operations` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `operations` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ orderBy: ScheduledOperationOrderByInput
+ skip: Int
+ where: ScheduledOperationWhereInput
+ ): [ScheduledOperation!]!
+
+ """The time the document was published. Null on documents in draft stage."""
+ publishedAt: DateTime
+
+ """User that last published this document"""
+ publishedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+
+ """Release date and time"""
+ releaseAt: DateTime
+
+ """System stage field"""
+ stage: Stage!
+
+ """Release Status"""
+ status: ScheduledReleaseStatus!
+
+ """Release Title"""
+ title: String
+
+ """The time the document was updated"""
+ updatedAt: DateTime!
+
+ """User that last updated this document"""
+ updatedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+}
+
+"""A connection to a list of items."""
+type ScheduledReleaseConnection {
+ aggregate: Aggregate!
+
+ """A list of edges."""
+ edges: [ScheduledReleaseEdge!]!
+
+ """Information to aid in pagination."""
+ pageInfo: PageInfo!
+}
+
+input ScheduledReleaseCreateInput {
+ createdAt: DateTime
+ description: String
+ errorMessage: String
+ isActive: Boolean = true
+ releaseAt: DateTime
+ title: String
+ updatedAt: DateTime
+}
+
+"""An edge in a connection."""
+type ScheduledReleaseEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
+
+ """The item at the end of the edge."""
+ node: ScheduledRelease!
+}
+
+enum ScheduledReleaseOrderByInput {
+ createdAt_ASC
+ createdAt_DESC
+ description_ASC
+ description_DESC
+ errorMessage_ASC
+ errorMessage_DESC
+ id_ASC
+ id_DESC
+ isActive_ASC
+ isActive_DESC
+ isImplicit_ASC
+ isImplicit_DESC
+ publishedAt_ASC
+ publishedAt_DESC
+ releaseAt_ASC
+ releaseAt_DESC
+ status_ASC
+ status_DESC
+ title_ASC
+ title_DESC
+ updatedAt_ASC
+ updatedAt_DESC
+}
+
+"""System Scheduled Release Status"""
+enum ScheduledReleaseStatus {
+ COMPLETED
+ FAILED
+ IN_PROGRESS
+ PENDING
+}
+
+input ScheduledReleaseUpdateInput {
+ description: String
+ errorMessage: String
+ isActive: Boolean
+ releaseAt: DateTime
+ title: String
+}
+
+"""Identifies documents"""
+input ScheduledReleaseWhereInput {
+ """Logical AND on all given filters."""
+ AND: [ScheduledReleaseWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [ScheduledReleaseWhereInput!]
+
+ """Logical OR on all given filters."""
+ OR: [ScheduledReleaseWhereInput!]
+
+ """Contains search across all appropriate fields."""
+ _search: String
+ createdAt: DateTime
+
+ """All values greater than the given value."""
+ createdAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ createdAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ createdAt_in: [DateTime]
+
+ """All values less than the given value."""
+ createdAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ createdAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ createdAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ createdAt_not_in: [DateTime]
+ createdBy: UserWhereInput
+ description: String
+
+ """All values containing the given string."""
+ description_contains: String
+
+ """All values ending with the given string."""
+ description_ends_with: String
+
+ """All values that are contained in given list."""
+ description_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ description_not: String
+
+ """All values not containing the given string."""
+ description_not_contains: String
+
+ """All values not ending with the given string"""
+ description_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ description_not_in: [String]
+
+ """All values not starting with the given string."""
+ description_not_starts_with: String
+
+ """All values starting with the given string."""
+ description_starts_with: String
+ errorMessage: String
+
+ """All values containing the given string."""
+ errorMessage_contains: String
+
+ """All values ending with the given string."""
+ errorMessage_ends_with: String
+
+ """All values that are contained in given list."""
+ errorMessage_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ errorMessage_not: String
+
+ """All values not containing the given string."""
+ errorMessage_not_contains: String
+
+ """All values not ending with the given string"""
+ errorMessage_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ errorMessage_not_in: [String]
+
+ """All values not starting with the given string."""
+ errorMessage_not_starts_with: String
+
+ """All values starting with the given string."""
+ errorMessage_starts_with: String
+ id: ID
+
+ """All values containing the given string."""
+ id_contains: ID
+
+ """All values ending with the given string."""
+ id_ends_with: ID
+
+ """All values that are contained in given list."""
+ id_in: [ID]
+
+ """Any other value that exists and is not equal to the given value."""
+ id_not: ID
+
+ """All values not containing the given string."""
+ id_not_contains: ID
+
+ """All values not ending with the given string"""
+ id_not_ends_with: ID
+
+ """All values that are not contained in given list."""
+ id_not_in: [ID]
+
+ """All values not starting with the given string."""
+ id_not_starts_with: ID
+
+ """All values starting with the given string."""
+ id_starts_with: ID
+ isActive: Boolean
+
+ """Any other value that exists and is not equal to the given value."""
+ isActive_not: Boolean
+ isImplicit: Boolean
+
+ """Any other value that exists and is not equal to the given value."""
+ isImplicit_not: Boolean
+ operations_every: ScheduledOperationWhereInput
+ operations_none: ScheduledOperationWhereInput
+ operations_some: ScheduledOperationWhereInput
+ publishedAt: DateTime
+
+ """All values greater than the given value."""
+ publishedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ publishedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ publishedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ publishedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ publishedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ publishedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ publishedAt_not_in: [DateTime]
+ publishedBy: UserWhereInput
+ releaseAt: DateTime
+
+ """All values greater than the given value."""
+ releaseAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ releaseAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ releaseAt_in: [DateTime]
+
+ """All values less than the given value."""
+ releaseAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ releaseAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ releaseAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ releaseAt_not_in: [DateTime]
+ status: ScheduledReleaseStatus
+
+ """All values that are contained in given list."""
+ status_in: [ScheduledReleaseStatus]
+
+ """Any other value that exists and is not equal to the given value."""
+ status_not: ScheduledReleaseStatus
+
+ """All values that are not contained in given list."""
+ status_not_in: [ScheduledReleaseStatus]
+ title: String
+
+ """All values containing the given string."""
+ title_contains: String
+
+ """All values ending with the given string."""
+ title_ends_with: String
+
+ """All values that are contained in given list."""
+ title_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ title_not: String
+
+ """All values not containing the given string."""
+ title_not_contains: String
+
+ """All values not ending with the given string"""
+ title_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ title_not_in: [String]
+
+ """All values not starting with the given string."""
+ title_not_starts_with: String
+
+ """All values starting with the given string."""
+ title_starts_with: String
+ updatedAt: DateTime
+
+ """All values greater than the given value."""
+ updatedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ updatedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ updatedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ updatedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ updatedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ updatedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ updatedAt_not_in: [DateTime]
+ updatedBy: UserWhereInput
+}
+
+"""References ScheduledRelease record uniquely"""
+input ScheduledReleaseWhereUniqueInput {
+ id: ID
+}
+
+"""Stage system enumeration"""
+enum Stage {
+ """The Draft is the default stage for all your content."""
+ DRAFT
+
+ """The Published stage is where you can publish your content to."""
+ PUBLISHED
+}
+
+"""
+Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
+"""
+input String_comparison_exp {
+ _eq: String
+ _gt: String
+ _gte: String
+
+ """does the column match the given case-insensitive pattern"""
+ _ilike: String
+ _in: [String!]
+
+ """
+ does the column match the given POSIX regular expression, case insensitive
+ """
+ _iregex: String
+ _is_null: Boolean
+
+ """does the column match the given pattern"""
+ _like: String
+ _lt: String
+ _lte: String
+ _neq: String
+
+ """does the column NOT match the given case-insensitive pattern"""
+ _nilike: String
+ _nin: [String!]
+
+ """
+ does the column NOT match the given POSIX regular expression, case insensitive
+ """
+ _niregex: String
+
+ """does the column NOT match the given pattern"""
+ _nlike: String
+
+ """
+ does the column NOT match the given POSIX regular expression, case sensitive
+ """
+ _nregex: String
+
+ """does the column NOT match the given SQL regular expression"""
+ _nsimilar: String
+
+ """
+ does the column match the given POSIX regular expression, case sensitive
+ """
+ _regex: String
+
+ """does the column match the given SQL regular expression"""
+ _similar: String
+}
+
+enum SystemDateTimeFieldVariation {
+ BASE
+ COMBINED
+ LOCALIZATION
+}
+
+"""User system model"""
+type User implements Entity & Node {
+ """The time the document was created"""
+ createdAt: DateTime!
+
+ """Get the document in other stages"""
+ documentInStages(
+ """Decides if the current stage should be included or not"""
+ includeCurrent: Boolean! = false
+
+ """
+ Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ """
+ inheritLocale: Boolean! = false
+
+ """Potential stages that should be returned"""
+ stages: [Stage!]! = [DRAFT, PUBLISHED]
+ ): [User!]!
+
+ """The unique identifier"""
+ id: ID!
+
+ """Flag to determine if user is active or not"""
+ isActive: Boolean!
+
+ """User Kind. Can be either MEMBER, PAT or PUBLIC"""
+ kind: UserKind!
+
+ """The username"""
+ name: String!
+
+ """Profile Picture url"""
+ picture: String
+
+ """The time the document was published. Null on documents in draft stage."""
+ publishedAt: DateTime
+
+ """System stage field"""
+ stage: Stage!
+
+ """The time the document was updated"""
+ updatedAt: DateTime!
+}
+
+"""A connection to a list of items."""
+type UserConnection {
+ aggregate: Aggregate!
+
+ """A list of edges."""
+ edges: [UserEdge!]!
+
+ """Information to aid in pagination."""
+ pageInfo: PageInfo!
+}
+
+"""An edge in a connection."""
+type UserEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
+
+ """The item at the end of the edge."""
+ node: User!
+}
+
+"""System User Kind"""
+enum UserKind {
+ APP_TOKEN
+ MEMBER
+ PAT
+ PUBLIC
+ WEBHOOK
+}
+
+enum UserOrderByInput {
+ createdAt_ASC
+ createdAt_DESC
+ id_ASC
+ id_DESC
+ isActive_ASC
+ isActive_DESC
+ kind_ASC
+ kind_DESC
+ name_ASC
+ name_DESC
+ picture_ASC
+ picture_DESC
+ publishedAt_ASC
+ publishedAt_DESC
+ updatedAt_ASC
+ updatedAt_DESC
+}
+
+"""
+This contains a set of filters that can be used to compare values internally
+"""
+input UserWhereComparatorInput {
+ """
+ This field can be used to request to check if the entry is outdated by internal comparison
+ """
+ outdated_to: Boolean
+}
+
+"""Identifies documents"""
+input UserWhereInput {
+ """Logical AND on all given filters."""
+ AND: [UserWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [UserWhereInput!]
+
+ """Logical OR on all given filters."""
+ OR: [UserWhereInput!]
+
+ """Contains search across all appropriate fields."""
+ _search: String
+ createdAt: DateTime
+
+ """All values greater than the given value."""
+ createdAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ createdAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ createdAt_in: [DateTime]
+
+ """All values less than the given value."""
+ createdAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ createdAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ createdAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ createdAt_not_in: [DateTime]
+ documentInStages_every: UserWhereStageInput
+ documentInStages_none: UserWhereStageInput
+ documentInStages_some: UserWhereStageInput
+ id: ID
+
+ """All values containing the given string."""
+ id_contains: ID
+
+ """All values ending with the given string."""
+ id_ends_with: ID
+
+ """All values that are contained in given list."""
+ id_in: [ID]
+
+ """Any other value that exists and is not equal to the given value."""
+ id_not: ID
+
+ """All values not containing the given string."""
+ id_not_contains: ID
+
+ """All values not ending with the given string"""
+ id_not_ends_with: ID
+
+ """All values that are not contained in given list."""
+ id_not_in: [ID]
+
+ """All values not starting with the given string."""
+ id_not_starts_with: ID
+
+ """All values starting with the given string."""
+ id_starts_with: ID
+ isActive: Boolean
+
+ """Any other value that exists and is not equal to the given value."""
+ isActive_not: Boolean
+ kind: UserKind
+
+ """All values that are contained in given list."""
+ kind_in: [UserKind]
+
+ """Any other value that exists and is not equal to the given value."""
+ kind_not: UserKind
+
+ """All values that are not contained in given list."""
+ kind_not_in: [UserKind]
+ name: String
+
+ """All values containing the given string."""
+ name_contains: String
+
+ """All values ending with the given string."""
+ name_ends_with: String
+
+ """All values that are contained in given list."""
+ name_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ name_not: String
+
+ """All values not containing the given string."""
+ name_not_contains: String
+
+ """All values not ending with the given string"""
+ name_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ name_not_in: [String]
+
+ """All values not starting with the given string."""
+ name_not_starts_with: String
+
+ """All values starting with the given string."""
+ name_starts_with: String
+ picture: String
+
+ """All values containing the given string."""
+ picture_contains: String
+
+ """All values ending with the given string."""
+ picture_ends_with: String
+
+ """All values that are contained in given list."""
+ picture_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ picture_not: String
+
+ """All values not containing the given string."""
+ picture_not_contains: String
+
+ """All values not ending with the given string"""
+ picture_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ picture_not_in: [String]
+
+ """All values not starting with the given string."""
+ picture_not_starts_with: String
+
+ """All values starting with the given string."""
+ picture_starts_with: String
+ publishedAt: DateTime
+
+ """All values greater than the given value."""
+ publishedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ publishedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ publishedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ publishedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ publishedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ publishedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ publishedAt_not_in: [DateTime]
+ updatedAt: DateTime
+
+ """All values greater than the given value."""
+ updatedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ updatedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ updatedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ updatedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ updatedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ updatedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ updatedAt_not_in: [DateTime]
+}
+
+"""
+The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
+"""
+input UserWhereStageInput {
+ """Logical AND on all given filters."""
+ AND: [UserWhereStageInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [UserWhereStageInput!]
+
+ """Logical OR on all given filters."""
+ OR: [UserWhereStageInput!]
+
+ """
+ This field contains fields which can be set as true or false to specify an internal comparison
+ """
+ compareWithParent: UserWhereComparatorInput
+
+ """Specify the stage to compare with"""
+ stage: Stage
+}
+
+"""References User record uniquely"""
+input UserWhereUniqueInput {
+ id: ID
+}
+
+type Version {
+ createdAt: DateTime!
+ id: ID!
+ revision: Int!
+ stage: Stage!
+}
+
+input VersionWhereInput {
+ id: ID!
+ revision: Int!
+ stage: Stage!
+}
+
+"""
+An account can represent a user or a role on an organizer. It stores essential information and is used as the root class for relationships with other tables
+"""
+type account {
+ address: String!
+ created_at: timestamptz
+ id: uuid!
+
+ """An object relationship"""
+ kyc: kyc
+
+ """An array relationship"""
+ roles(
+ """distinct select on columns"""
+ distinct_on: [roleAssignment_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [roleAssignment_order_by!]
+
+ """filter the rows returned"""
+ where: roleAssignment_bool_exp
+ ): [roleAssignment!]!
+
+ """An aggregate relationship"""
+ roles_aggregate(
+ """distinct select on columns"""
+ distinct_on: [roleAssignment_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [roleAssignment_order_by!]
+
+ """filter the rows returned"""
+ where: roleAssignment_bool_exp
+ ): roleAssignment_aggregate!
+
+ """An object relationship"""
+ stripeCustomer: stripeCustomer
+ updated_at: timestamptz
+}
+
+"""
+aggregated selection of "account"
+"""
+type account_aggregate {
+ aggregate: account_aggregate_fields
+ nodes: [account!]!
+}
+
+"""
+aggregate fields of "account"
+"""
+type account_aggregate_fields {
+ count(columns: [account_select_column!], distinct: Boolean): Int!
+ max: account_max_fields
+ min: account_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "account". All fields are combined with a logical 'AND'.
+"""
+input account_bool_exp {
+ _and: [account_bool_exp!]
+ _not: account_bool_exp
+ _or: [account_bool_exp!]
+ address: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ kyc: kyc_bool_exp
+ roles: roleAssignment_bool_exp
+ roles_aggregate: roleAssignment_aggregate_bool_exp
+ stripeCustomer: stripeCustomer_bool_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "account"
+"""
+enum account_constraint {
+ """
+ unique or primary key constraint on columns "address"
+ """
+ account_address_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ account_pkey
+}
+
+"""
+input type for inserting data into table "account"
+"""
+input account_insert_input {
+ address: String
+ created_at: timestamptz
+ id: uuid
+ kyc: kyc_obj_rel_insert_input
+ roles: roleAssignment_arr_rel_insert_input
+ stripeCustomer: stripeCustomer_obj_rel_insert_input
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type account_max_fields {
+ address: String
+ created_at: timestamptz
+ id: uuid
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type account_min_fields {
+ address: String
+ created_at: timestamptz
+ id: uuid
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "account"
+"""
+type account_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [account!]!
+}
+
+"""
+input type for inserting object relation for remote table "account"
+"""
+input account_obj_rel_insert_input {
+ data: account_insert_input!
+
+ """upsert condition"""
+ on_conflict: account_on_conflict
+}
+
+"""
+on_conflict condition type for table "account"
+"""
+input account_on_conflict {
+ constraint: account_constraint!
+ update_columns: [account_update_column!]! = []
+ where: account_bool_exp
+}
+
+"""Ordering options when selecting data from "account"."""
+input account_order_by {
+ address: order_by
+ created_at: order_by
+ id: order_by
+ kyc: kyc_order_by
+ roles_aggregate: roleAssignment_aggregate_order_by
+ stripeCustomer: stripeCustomer_order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: account"""
+input account_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "account"
+"""
+enum account_select_column {
+ """column name"""
+ address
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "account"
+"""
+input account_set_input {
+ address: String
+ created_at: timestamptz
+ id: uuid
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "account"
+"""
+input account_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: account_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input account_stream_cursor_value_input {
+ address: String
+ created_at: timestamptz
+ id: uuid
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "account"
+"""
+enum account_update_column {
+ """column name"""
+ address
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ updated_at
+}
+
+input account_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: account_set_input
+
+ """filter the rows which have to be updated"""
+ where: account_bool_exp!
+}
+
+"""
+The apiKeyStatus table defines the possible status values for API keys. It ensures data integrity and provides a centralized reference for the status field in the publishableApiKey and secretApiKey tables.
+"""
+type apiKeyStatus {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String!
+}
+
+"""
+aggregated selection of "apiKeyStatus"
+"""
+type apiKeyStatus_aggregate {
+ aggregate: apiKeyStatus_aggregate_fields
+ nodes: [apiKeyStatus!]!
+}
+
+"""
+aggregate fields of "apiKeyStatus"
+"""
+type apiKeyStatus_aggregate_fields {
+ count(columns: [apiKeyStatus_select_column!], distinct: Boolean): Int!
+ max: apiKeyStatus_max_fields
+ min: apiKeyStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "apiKeyStatus". All fields are combined with a logical 'AND'.
+"""
+input apiKeyStatus_bool_exp {
+ _and: [apiKeyStatus_bool_exp!]
+ _not: apiKeyStatus_bool_exp
+ _or: [apiKeyStatus_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "apiKeyStatus"
+"""
+enum apiKeyStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ apiKeyStatus_pkey
+}
+
+enum apiKeyStatus_enum {
+ ACTIVE
+ DISABLED
+ EXPIRED
+}
+
+"""
+Boolean expression to compare columns of type "apiKeyStatus_enum". All fields are combined with logical 'AND'.
+"""
+input apiKeyStatus_enum_comparison_exp {
+ _eq: apiKeyStatus_enum
+ _in: [apiKeyStatus_enum!]
+ _is_null: Boolean
+ _neq: apiKeyStatus_enum
+ _nin: [apiKeyStatus_enum!]
+}
+
+"""
+input type for inserting data into table "apiKeyStatus"
+"""
+input apiKeyStatus_insert_input {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String
+}
+
+"""aggregate max on columns"""
+type apiKeyStatus_max_fields {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String
+}
+
+"""aggregate min on columns"""
+type apiKeyStatus_min_fields {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String
+}
+
+"""
+response of any mutation on the table "apiKeyStatus"
+"""
+type apiKeyStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [apiKeyStatus!]!
+}
+
+"""
+on_conflict condition type for table "apiKeyStatus"
+"""
+input apiKeyStatus_on_conflict {
+ constraint: apiKeyStatus_constraint!
+ update_columns: [apiKeyStatus_update_column!]! = []
+ where: apiKeyStatus_bool_exp
+}
+
+"""Ordering options when selecting data from "apiKeyStatus"."""
+input apiKeyStatus_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: apiKeyStatus"""
+input apiKeyStatus_pk_columns_input {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String!
+}
+
+"""
+select columns of table "apiKeyStatus"
+"""
+enum apiKeyStatus_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "apiKeyStatus"
+"""
+input apiKeyStatus_set_input {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String
+}
+
+"""
+Streaming cursor of the table "apiKeyStatus"
+"""
+input apiKeyStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: apiKeyStatus_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input apiKeyStatus_stream_cursor_value_input {
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String
+}
+
+"""
+update columns of table "apiKeyStatus"
+"""
+enum apiKeyStatus_update_column {
+ """column name"""
+ value
+}
+
+input apiKeyStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: apiKeyStatus_bool_exp!
+}
+
+"""
+The apiKeyType table defines the possible types of API keys. It ensures data integrity and provides a centralized reference for the type field in the api key tables.
+"""
+type apiKeyType {
+ """The type of the API key"""
+ value: String!
+}
+
+"""
+aggregated selection of "apiKeyType"
+"""
+type apiKeyType_aggregate {
+ aggregate: apiKeyType_aggregate_fields
+ nodes: [apiKeyType!]!
+}
+
+"""
+aggregate fields of "apiKeyType"
+"""
+type apiKeyType_aggregate_fields {
+ count(columns: [apiKeyType_select_column!], distinct: Boolean): Int!
+ max: apiKeyType_max_fields
+ min: apiKeyType_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "apiKeyType". All fields are combined with a logical 'AND'.
+"""
+input apiKeyType_bool_exp {
+ _and: [apiKeyType_bool_exp!]
+ _not: apiKeyType_bool_exp
+ _or: [apiKeyType_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "apiKeyType"
+"""
+enum apiKeyType_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ apiKeyType_pkey
+}
+
+enum apiKeyType_enum {
+ EXTERNAL
+}
+
+"""
+Boolean expression to compare columns of type "apiKeyType_enum". All fields are combined with logical 'AND'.
+"""
+input apiKeyType_enum_comparison_exp {
+ _eq: apiKeyType_enum
+ _in: [apiKeyType_enum!]
+ _is_null: Boolean
+ _neq: apiKeyType_enum
+ _nin: [apiKeyType_enum!]
+}
+
+"""
+input type for inserting data into table "apiKeyType"
+"""
+input apiKeyType_insert_input {
+ """The type of the API key"""
+ value: String
+}
+
+"""aggregate max on columns"""
+type apiKeyType_max_fields {
+ """The type of the API key"""
+ value: String
+}
+
+"""aggregate min on columns"""
+type apiKeyType_min_fields {
+ """The type of the API key"""
+ value: String
+}
+
+"""
+response of any mutation on the table "apiKeyType"
+"""
+type apiKeyType_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [apiKeyType!]!
+}
+
+"""
+on_conflict condition type for table "apiKeyType"
+"""
+input apiKeyType_on_conflict {
+ constraint: apiKeyType_constraint!
+ update_columns: [apiKeyType_update_column!]! = []
+ where: apiKeyType_bool_exp
+}
+
+"""Ordering options when selecting data from "apiKeyType"."""
+input apiKeyType_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: apiKeyType"""
+input apiKeyType_pk_columns_input {
+ """The type of the API key"""
+ value: String!
+}
+
+"""
+select columns of table "apiKeyType"
+"""
+enum apiKeyType_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "apiKeyType"
+"""
+input apiKeyType_set_input {
+ """The type of the API key"""
+ value: String
+}
+
+"""
+Streaming cursor of the table "apiKeyType"
+"""
+input apiKeyType_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: apiKeyType_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input apiKeyType_stream_cursor_value_input {
+ """The type of the API key"""
+ value: String
+}
+
+"""
+update columns of table "apiKeyType"
+"""
+enum apiKeyType_update_column {
+ """column name"""
+ value
+}
+
+input apiKeyType_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyType_set_input
+
+ """filter the rows which have to be updated"""
+ where: apiKeyType_bool_exp!
+}
+
+scalar bigint
+
+"""
+Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.
+"""
+input bigint_comparison_exp {
+ _eq: bigint
+ _gt: bigint
+ _gte: bigint
+ _in: [bigint!]
+ _is_null: Boolean
+ _lt: bigint
+ _lte: bigint
+ _neq: bigint
+ _nin: [bigint!]
+}
+
+"""
+The contentSpaceParameters model is designed to define properties specifically for content spaces. This table includes essential details like the contentSpaceId, which links to the specific content space. By centralizing this information, our system can effectively manage and control parameters tied to each content space, enhancing functionality and flexibility.
+"""
+type contentSpaceParameters {
+ contentSpace(
+ """
+ Defines which locales should be returned.
+
+ Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: ContentSpaceWhereUniqueInput_remote_rel_contentSpaceParameterscontentSpace!
+ ): ContentSpace
+
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String!
+ created_at: timestamptz!
+ id: uuid!
+ organizerId: String!
+ status: contentSpaceStatus_enum
+ updated_at: timestamptz!
+}
+
+"""
+aggregated selection of "contentSpaceParameters"
+"""
+type contentSpaceParameters_aggregate {
+ aggregate: contentSpaceParameters_aggregate_fields
+ nodes: [contentSpaceParameters!]!
+}
+
+"""
+aggregate fields of "contentSpaceParameters"
+"""
+type contentSpaceParameters_aggregate_fields {
+ count(columns: [contentSpaceParameters_select_column!], distinct: Boolean): Int!
+ max: contentSpaceParameters_max_fields
+ min: contentSpaceParameters_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "contentSpaceParameters". All fields are combined with a logical 'AND'.
+"""
+input contentSpaceParameters_bool_exp {
+ _and: [contentSpaceParameters_bool_exp!]
+ _not: contentSpaceParameters_bool_exp
+ _or: [contentSpaceParameters_bool_exp!]
+ contentSpaceId: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ organizerId: String_comparison_exp
+ status: contentSpaceStatus_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "contentSpaceParameters"
+"""
+enum contentSpaceParameters_constraint {
+ """
+ unique or primary key constraint on columns "contentSpaceId"
+ """
+ contentSpaceParameters_contentSpaceId_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ contentSpaceParameters_pkey
+}
+
+"""
+input type for inserting data into table "contentSpaceParameters"
+"""
+input contentSpaceParameters_insert_input {
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ status: contentSpaceStatus_enum
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type contentSpaceParameters_max_fields {
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type contentSpaceParameters_min_fields {
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "contentSpaceParameters"
+"""
+type contentSpaceParameters_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [contentSpaceParameters!]!
+}
+
+"""
+on_conflict condition type for table "contentSpaceParameters"
+"""
+input contentSpaceParameters_on_conflict {
+ constraint: contentSpaceParameters_constraint!
+ update_columns: [contentSpaceParameters_update_column!]! = []
+ where: contentSpaceParameters_bool_exp
+}
+
+"""Ordering options when selecting data from "contentSpaceParameters"."""
+input contentSpaceParameters_order_by {
+ contentSpaceId: order_by
+ created_at: order_by
+ id: order_by
+ organizerId: order_by
+ status: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: contentSpaceParameters"""
+input contentSpaceParameters_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "contentSpaceParameters"
+"""
+enum contentSpaceParameters_select_column {
+ """column name"""
+ contentSpaceId
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "contentSpaceParameters"
+"""
+input contentSpaceParameters_set_input {
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ status: contentSpaceStatus_enum
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "contentSpaceParameters"
+"""
+input contentSpaceParameters_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: contentSpaceParameters_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input contentSpaceParameters_stream_cursor_value_input {
+ """
+ It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ """
+ contentSpaceId: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ status: contentSpaceStatus_enum
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "contentSpaceParameters"
+"""
+enum contentSpaceParameters_update_column {
+ """column name"""
+ contentSpaceId
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ updated_at
+}
+
+input contentSpaceParameters_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: contentSpaceParameters_bool_exp!
+}
+
+"""
+columns and relationships of "contentSpaceStatus"
+"""
+type contentSpaceStatus {
+ value: String!
+}
+
+"""
+aggregated selection of "contentSpaceStatus"
+"""
+type contentSpaceStatus_aggregate {
+ aggregate: contentSpaceStatus_aggregate_fields
+ nodes: [contentSpaceStatus!]!
+}
+
+"""
+aggregate fields of "contentSpaceStatus"
+"""
+type contentSpaceStatus_aggregate_fields {
+ count(columns: [contentSpaceStatus_select_column!], distinct: Boolean): Int!
+ max: contentSpaceStatus_max_fields
+ min: contentSpaceStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "contentSpaceStatus". All fields are combined with a logical 'AND'.
+"""
+input contentSpaceStatus_bool_exp {
+ _and: [contentSpaceStatus_bool_exp!]
+ _not: contentSpaceStatus_bool_exp
+ _or: [contentSpaceStatus_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "contentSpaceStatus"
+"""
+enum contentSpaceStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ contentSpaceStatus_pkey
+}
+
+enum contentSpaceStatus_enum {
+ DRAFT
+ PUBLISHED
+}
+
+"""
+Boolean expression to compare columns of type "contentSpaceStatus_enum". All fields are combined with logical 'AND'.
+"""
+input contentSpaceStatus_enum_comparison_exp {
+ _eq: contentSpaceStatus_enum
+ _in: [contentSpaceStatus_enum!]
+ _is_null: Boolean
+ _neq: contentSpaceStatus_enum
+ _nin: [contentSpaceStatus_enum!]
+}
+
+"""
+input type for inserting data into table "contentSpaceStatus"
+"""
+input contentSpaceStatus_insert_input {
+ value: String
+}
+
+"""aggregate max on columns"""
+type contentSpaceStatus_max_fields {
+ value: String
+}
+
+"""aggregate min on columns"""
+type contentSpaceStatus_min_fields {
+ value: String
+}
+
+"""
+response of any mutation on the table "contentSpaceStatus"
+"""
+type contentSpaceStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [contentSpaceStatus!]!
+}
+
+"""
+on_conflict condition type for table "contentSpaceStatus"
+"""
+input contentSpaceStatus_on_conflict {
+ constraint: contentSpaceStatus_constraint!
+ update_columns: [contentSpaceStatus_update_column!]! = []
+ where: contentSpaceStatus_bool_exp
+}
+
+"""Ordering options when selecting data from "contentSpaceStatus"."""
+input contentSpaceStatus_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: contentSpaceStatus"""
+input contentSpaceStatus_pk_columns_input {
+ value: String!
+}
+
+"""
+select columns of table "contentSpaceStatus"
+"""
+enum contentSpaceStatus_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "contentSpaceStatus"
+"""
+input contentSpaceStatus_set_input {
+ value: String
+}
+
+"""
+Streaming cursor of the table "contentSpaceStatus"
+"""
+input contentSpaceStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: contentSpaceStatus_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input contentSpaceStatus_stream_cursor_value_input {
+ value: String
+}
+
+"""
+update columns of table "contentSpaceStatus"
+"""
+enum contentSpaceStatus_update_column {
+ """column name"""
+ value
+}
+
+input contentSpaceStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: contentSpaceStatus_bool_exp!
+}
+
+"""
+Currencies code following the standard ISO 4217 (https://en.wikipedia.org/wiki/ISO_4217)
+"""
+type currency {
+ value: String!
+}
+
+"""
+aggregated selection of "currency"
+"""
+type currency_aggregate {
+ aggregate: currency_aggregate_fields
+ nodes: [currency!]!
+}
+
+"""
+aggregate fields of "currency"
+"""
+type currency_aggregate_fields {
+ count(columns: [currency_select_column!], distinct: Boolean): Int!
+ max: currency_max_fields
+ min: currency_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'.
+"""
+input currency_bool_exp {
+ _and: [currency_bool_exp!]
+ _not: currency_bool_exp
+ _or: [currency_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "currency"
+"""
+enum currency_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ currency_pkey
+}
+
+enum currency_enum {
+ AED
+ CNY
+ EUR
+ GBP
+ QAR
+ SGD
+ USD
+}
+
+"""
+Boolean expression to compare columns of type "currency_enum". All fields are combined with logical 'AND'.
+"""
+input currency_enum_comparison_exp {
+ _eq: currency_enum
+ _in: [currency_enum!]
+ _is_null: Boolean
+ _neq: currency_enum
+ _nin: [currency_enum!]
+}
+
+"""
+input type for inserting data into table "currency"
+"""
+input currency_insert_input {
+ value: String
+}
+
+"""aggregate max on columns"""
+type currency_max_fields {
+ value: String
+}
+
+"""aggregate min on columns"""
+type currency_min_fields {
+ value: String
+}
+
+"""
+response of any mutation on the table "currency"
+"""
+type currency_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [currency!]!
+}
+
+"""
+on_conflict condition type for table "currency"
+"""
+input currency_on_conflict {
+ constraint: currency_constraint!
+ update_columns: [currency_update_column!]! = []
+ where: currency_bool_exp
+}
+
+"""Ordering options when selecting data from "currency"."""
+input currency_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: currency"""
+input currency_pk_columns_input {
+ value: String!
+}
+
+"""
+select columns of table "currency"
+"""
+enum currency_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "currency"
+"""
+input currency_set_input {
+ value: String
+}
+
+"""
+Streaming cursor of the table "currency"
+"""
+input currency_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: currency_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input currency_stream_cursor_value_input {
+ value: String
+}
+
+"""
+update columns of table "currency"
+"""
+enum currency_update_column {
+ """column name"""
+ value
+}
+
+input currency_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: currency_set_input
+
+ """filter the rows which have to be updated"""
+ where: currency_bool_exp!
+}
+
+"""ordering argument of a cursor"""
+enum cursor_ordering {
+ """ascending ordering of the cursor"""
+ ASC
+
+ """descending ordering of the cursor"""
+ DESC
+}
+
+"""
+The eventParameters model is designed to define properties on an event involving all event passes. This table includes critical details like the eventId and activityWebhookId, which aids in monitoring and processing events or changes related to the event parameters. By centralizing this information, our system can effectively manage and control parameters tied to specific events, enhancing the overall functionality and flexibility of event handling.
+"""
+type eventParameters {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz!
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ event(
+ """
+ Defines which locales should be returned.
+
+ Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: EventWhereUniqueInput_remote_rel_eventParametersevent!
+ ): Event
+ eventId: String!
+
+ """An array relationship"""
+ eventPassNftContracts(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNftContract_bool_exp
+ ): [eventPassNftContract!]!
+
+ """An aggregate relationship"""
+ eventPassNftContracts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNftContract_bool_exp
+ ): eventPassNftContract_aggregate!
+
+ """An array relationship"""
+ eventPassNfts(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): [eventPassNft!]!
+
+ """An aggregate relationship"""
+ eventPassNfts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): eventPassNft_aggregate!
+ id: uuid!
+
+ """
+ A computed field, executes function "is_event_ongoing"
+ """
+ isOngoing: Boolean
+
+ """
+ A computed field, executes function "is_sale_ongoing"
+ """
+ isSaleOngoing: Boolean
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizer(
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer!
+ ): Organizer
+ organizerId: String!
+ status: eventStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String!
+ updated_at: timestamptz!
+}
+
+"""
+aggregated selection of "eventParameters"
+"""
+type eventParameters_aggregate {
+ aggregate: eventParameters_aggregate_fields
+ nodes: [eventParameters!]!
+}
+
+"""
+aggregate fields of "eventParameters"
+"""
+type eventParameters_aggregate_fields {
+ count(columns: [eventParameters_select_column!], distinct: Boolean): Int!
+ max: eventParameters_max_fields
+ min: eventParameters_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "eventParameters". All fields are combined with a logical 'AND'.
+"""
+input eventParameters_bool_exp {
+ _and: [eventParameters_bool_exp!]
+ _not: eventParameters_bool_exp
+ _or: [eventParameters_bool_exp!]
+ activityWebhookId: String_comparison_exp
+ activityWebhookSigningKey: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ dateEnd: timestamp_comparison_exp
+ dateSaleEnd: timestamp_comparison_exp
+ dateSaleStart: timestamp_comparison_exp
+ dateStart: timestamp_comparison_exp
+ eventId: String_comparison_exp
+ eventPassNftContracts: eventPassNftContract_bool_exp
+ eventPassNftContracts_aggregate: eventPassNftContract_aggregate_bool_exp
+ eventPassNfts: eventPassNft_bool_exp
+ eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
+ id: uuid_comparison_exp
+ isOngoing: Boolean_comparison_exp
+ isSaleOngoing: Boolean_comparison_exp
+ metadataUpdateWebhookId: String_comparison_exp
+ metadataUpdateWebhookSigningKey: String_comparison_exp
+ organizerId: String_comparison_exp
+ status: eventStatus_enum_comparison_exp
+ timezone: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventParameters"
+"""
+enum eventParameters_constraint {
+ """
+ unique or primary key constraint on columns "eventId"
+ """
+ eventParameters_eventId_key
+
+ """
+ unique or primary key constraint on columns "metadataUpdateWebhookSigningKey"
+ """
+ eventParameters_metadataUpdateWebhookSigningKey_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ eventParameters_pkey
+
+ """
+ unique or primary key constraint on columns "activityWebhookSigningKey"
+ """
+ eventParameters_signingKey_key
+}
+
+"""
+input type for inserting data into table "eventParameters"
+"""
+input eventParameters_insert_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ eventId: String
+ eventPassNftContracts: eventPassNftContract_arr_rel_insert_input
+ eventPassNfts: eventPassNft_arr_rel_insert_input
+ id: uuid
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizerId: String
+ status: eventStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type eventParameters_max_fields {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ eventId: String
+ id: uuid
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizerId: String
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type eventParameters_min_fields {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ eventId: String
+ id: uuid
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizerId: String
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "eventParameters"
+"""
+type eventParameters_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventParameters!]!
+}
+
+"""
+input type for inserting object relation for remote table "eventParameters"
+"""
+input eventParameters_obj_rel_insert_input {
+ data: eventParameters_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventParameters_on_conflict
+}
+
+"""
+on_conflict condition type for table "eventParameters"
+"""
+input eventParameters_on_conflict {
+ constraint: eventParameters_constraint!
+ update_columns: [eventParameters_update_column!]! = []
+ where: eventParameters_bool_exp
+}
+
+"""Ordering options when selecting data from "eventParameters"."""
+input eventParameters_order_by {
+ activityWebhookId: order_by
+ activityWebhookSigningKey: order_by
+ created_at: order_by
+ dateEnd: order_by
+ dateSaleEnd: order_by
+ dateSaleStart: order_by
+ dateStart: order_by
+ eventId: order_by
+ eventPassNftContracts_aggregate: eventPassNftContract_aggregate_order_by
+ eventPassNfts_aggregate: eventPassNft_aggregate_order_by
+ id: order_by
+ isOngoing: order_by
+ isSaleOngoing: order_by
+ metadataUpdateWebhookId: order_by
+ metadataUpdateWebhookSigningKey: order_by
+ organizerId: order_by
+ status: order_by
+ timezone: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: eventParameters"""
+input eventParameters_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "eventParameters"
+"""
+enum eventParameters_select_column {
+ """column name"""
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ dateEnd
+
+ """column name"""
+ dateSaleEnd
+
+ """column name"""
+ dateSaleStart
+
+ """column name"""
+ dateStart
+
+ """column name"""
+ eventId
+
+ """column name"""
+ id
+
+ """column name"""
+ metadataUpdateWebhookId
+
+ """column name"""
+ metadataUpdateWebhookSigningKey
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ timezone
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "eventParameters"
+"""
+input eventParameters_set_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ eventId: String
+ id: uuid
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizerId: String
+ status: eventStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "eventParameters"
+"""
+input eventParameters_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventParameters_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventParameters_stream_cursor_value_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ """
+ activityWebhookId: String
+
+ """The unique signing key used for securing activity webhooks."""
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ """
+ dateEnd: timestamp
+
+ """
+ The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ """
+ dateSaleStart: timestamp
+
+ """
+ The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ """
+ dateStart: timestamp
+ eventId: String
+ id: uuid
+
+ """The identifier for the metadata update webhook."""
+ metadataUpdateWebhookId: String
+
+ """The unique signing key used for securing metadata update webhooks."""
+ metadataUpdateWebhookSigningKey: String
+ organizerId: String
+ status: eventStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "eventParameters"
+"""
+enum eventParameters_update_column {
+ """column name"""
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ dateEnd
+
+ """column name"""
+ dateSaleEnd
+
+ """column name"""
+ dateSaleStart
+
+ """column name"""
+ dateStart
+
+ """column name"""
+ eventId
+
+ """column name"""
+ id
+
+ """column name"""
+ metadataUpdateWebhookId
+
+ """column name"""
+ metadataUpdateWebhookSigningKey
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ timezone
+
+ """column name"""
+ updated_at
+}
+
+input eventParameters_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventParameters_bool_exp!
+}
+
+"""
+columns and relationships of "eventPassNft"
+"""
+type eventPassNft {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String!
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String!
+ created_at: timestamptz!
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+ event(
+ """
+ Defines which locales should be returned.
+
+ Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: EventWhereUniqueInput_remote_rel_eventPassNftevent!
+ ): Event
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String!
+
+ """An object relationship"""
+ eventParameters: eventParameters
+ eventPass(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String!
+
+ """An object relationship"""
+ eventPassNftContract: eventPassNftContract
+ id: uuid!
+
+ """
+ Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ """
+ isRevealed: Boolean!
+
+ """An object relationship"""
+ lastNftTransfer: nftTransfer
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata(
+ """JSON select path"""
+ path: String
+ ): jsonb
+
+ """An array relationship"""
+ nftTransfers(
+ """distinct select on columns"""
+ distinct_on: [nftTransfer_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [nftTransfer_order_by!]
"""filter the rows returned"""
- where: roleAssignment_bool_exp
- ): roleAssignment_aggregate!
+ where: nftTransfer_bool_exp
+ ): [nftTransfer!]!
+
+ """An aggregate relationship"""
+ nftTransfers_aggregate(
+ """distinct select on columns"""
+ distinct_on: [nftTransfer_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [nftTransfer_order_by!]
+
+ """filter the rows returned"""
+ where: nftTransfer_bool_exp
+ ): nftTransfer_aggregate!
+ organizer(
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer!
+ ): Organizer
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String!
+
+ """An object relationship"""
+ packAmount: passAmount
+ packId: String
+
+ """An object relationship"""
+ packPricing: passPricing
+
+ """An object relationship"""
+ passAmount: passAmount
+
+ """An object relationship"""
+ passPricing: passPricing
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz!
+}
+
+"""
+The eventPassNftContract model is designed to store metadata associated with NFT contracts linked to specific event passes. This table captures critical, immutable details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. Additionally, this table includes information specific to each event pass, like the eventPassId and organizerId, allowing for precise management and interaction with NFT contracts tied to individual event passes. By centralizing this information, our system can effectively manage, reference, and interact with NFT contracts related to particular event passes.
+"""
+type eventPassNftContract {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String!
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String!
+ created_at: timestamptz!
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String!
+ eventPass(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
+ eventPassId: String!
+
+ """An array relationship"""
+ eventPassNfts(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): [eventPassNft!]!
+
+ """An aggregate relationship"""
+ eventPassNfts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): eventPassNft_aggregate!
+
+ """An object relationship"""
+ eventPassOrderSums: eventPassOrderSums
+ id: uuid!
+
+ """Flag indicating whether the event pass NFT is airdropped."""
+ isAirdrop: Boolean!
+
+ """
+ Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ """
+ isDelayedRevealed: Boolean!
+
+ """An array relationship"""
+ orders(
+ """distinct select on columns"""
+ distinct_on: [order_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [order_order_by!]
+
+ """filter the rows returned"""
+ where: order_bool_exp
+ ): [order!]!
+
+ """An aggregate relationship"""
+ orders_aggregate(
+ """distinct select on columns"""
+ distinct_on: [order_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [order_order_by!]
+
+ """filter the rows returned"""
+ where: order_bool_exp
+ ): order_aggregate!
+ organizerId: String!
+
+ """An object relationship"""
+ passAmount: passAmount
+
+ """An object relationship"""
+ passPricing: passPricing
+
+ """Type of the pass, referencing the eventPassType table."""
+ passType: eventPassType_enum!
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+
+ """Type of the event pass NFT contract."""
+ type: eventPassNftContractType_enum!
+ updated_at: timestamptz!
+
+ """
+ The method of validation for the event pass, referencing the eventPassValidationType table.
+ """
+ validationType: eventPassValidationType_enum!
+}
+
+"""Contract types representing the nature of the event pass NFT contract."""
+type eventPassNftContractType {
+ """Type name for event pass NFT contract."""
+ value: String!
+}
+
+"""
+aggregated selection of "eventPassNftContractType"
+"""
+type eventPassNftContractType_aggregate {
+ aggregate: eventPassNftContractType_aggregate_fields
+ nodes: [eventPassNftContractType!]!
+}
+
+"""
+aggregate fields of "eventPassNftContractType"
+"""
+type eventPassNftContractType_aggregate_fields {
+ count(columns: [eventPassNftContractType_select_column!], distinct: Boolean): Int!
+ max: eventPassNftContractType_max_fields
+ min: eventPassNftContractType_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassNftContractType". All fields are combined with a logical 'AND'.
+"""
+input eventPassNftContractType_bool_exp {
+ _and: [eventPassNftContractType_bool_exp!]
+ _not: eventPassNftContractType_bool_exp
+ _or: [eventPassNftContractType_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassNftContractType"
+"""
+enum eventPassNftContractType_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ eventPassNftContractType_pkey
+}
+
+enum eventPassNftContractType_enum {
+ delayed_reveal
+ normal
+}
+
+"""
+Boolean expression to compare columns of type "eventPassNftContractType_enum". All fields are combined with logical 'AND'.
+"""
+input eventPassNftContractType_enum_comparison_exp {
+ _eq: eventPassNftContractType_enum
+ _in: [eventPassNftContractType_enum!]
+ _is_null: Boolean
+ _neq: eventPassNftContractType_enum
+ _nin: [eventPassNftContractType_enum!]
+}
+
+"""
+input type for inserting data into table "eventPassNftContractType"
+"""
+input eventPassNftContractType_insert_input {
+ """Type name for event pass NFT contract."""
+ value: String
+}
+
+"""aggregate max on columns"""
+type eventPassNftContractType_max_fields {
+ """Type name for event pass NFT contract."""
+ value: String
+}
+
+"""aggregate min on columns"""
+type eventPassNftContractType_min_fields {
+ """Type name for event pass NFT contract."""
+ value: String
+}
+
+"""
+response of any mutation on the table "eventPassNftContractType"
+"""
+type eventPassNftContractType_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassNftContractType!]!
+}
+
+"""
+on_conflict condition type for table "eventPassNftContractType"
+"""
+input eventPassNftContractType_on_conflict {
+ constraint: eventPassNftContractType_constraint!
+ update_columns: [eventPassNftContractType_update_column!]! = []
+ where: eventPassNftContractType_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassNftContractType"."""
+input eventPassNftContractType_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: eventPassNftContractType"""
+input eventPassNftContractType_pk_columns_input {
+ """Type name for event pass NFT contract."""
+ value: String!
+}
+
+"""
+select columns of table "eventPassNftContractType"
+"""
+enum eventPassNftContractType_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "eventPassNftContractType"
+"""
+input eventPassNftContractType_set_input {
+ """Type name for event pass NFT contract."""
+ value: String
+}
+
+"""
+Streaming cursor of the table "eventPassNftContractType"
+"""
+input eventPassNftContractType_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassNftContractType_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassNftContractType_stream_cursor_value_input {
+ """Type name for event pass NFT contract."""
+ value: String
+}
+
+"""
+update columns of table "eventPassNftContractType"
+"""
+enum eventPassNftContractType_update_column {
+ """column name"""
+ value
+}
+
+input eventPassNftContractType_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContractType_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNftContractType_bool_exp!
+}
+
+"""
+aggregated selection of "eventPassNftContract"
+"""
+type eventPassNftContract_aggregate {
+ aggregate: eventPassNftContract_aggregate_fields
+ nodes: [eventPassNftContract!]!
+}
+
+input eventPassNftContract_aggregate_bool_exp {
+ bool_and: eventPassNftContract_aggregate_bool_exp_bool_and
+ bool_or: eventPassNftContract_aggregate_bool_exp_bool_or
+ count: eventPassNftContract_aggregate_bool_exp_count
+}
+
+input eventPassNftContract_aggregate_bool_exp_bool_and {
+ arguments: eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns!
+ distinct: Boolean
+ filter: eventPassNftContract_bool_exp
+ predicate: Boolean_comparison_exp!
+}
+
+input eventPassNftContract_aggregate_bool_exp_bool_or {
+ arguments: eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns!
+ distinct: Boolean
+ filter: eventPassNftContract_bool_exp
+ predicate: Boolean_comparison_exp!
+}
+
+input eventPassNftContract_aggregate_bool_exp_count {
+ arguments: [eventPassNftContract_select_column!]
+ distinct: Boolean
+ filter: eventPassNftContract_bool_exp
+ predicate: Int_comparison_exp!
+}
+
+"""
+aggregate fields of "eventPassNftContract"
+"""
+type eventPassNftContract_aggregate_fields {
+ count(columns: [eventPassNftContract_select_column!], distinct: Boolean): Int!
+ max: eventPassNftContract_max_fields
+ min: eventPassNftContract_min_fields
+}
+
+"""
+order by aggregate values of table "eventPassNftContract"
+"""
+input eventPassNftContract_aggregate_order_by {
+ count: order_by
+ max: eventPassNftContract_max_order_by
+ min: eventPassNftContract_min_order_by
+}
+
+"""
+input type for inserting array relation for remote table "eventPassNftContract"
+"""
+input eventPassNftContract_arr_rel_insert_input {
+ data: [eventPassNftContract_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContract_on_conflict
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassNftContract". All fields are combined with a logical 'AND'.
+"""
+input eventPassNftContract_bool_exp {
+ _and: [eventPassNftContract_bool_exp!]
+ _not: eventPassNftContract_bool_exp
+ _or: [eventPassNftContract_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventId: String_comparison_exp
+ eventPassId: String_comparison_exp
+ eventPassNfts: eventPassNft_bool_exp
+ eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
+ eventPassOrderSums: eventPassOrderSums_bool_exp
+ id: uuid_comparison_exp
+ isAirdrop: Boolean_comparison_exp
+ isDelayedRevealed: Boolean_comparison_exp
+ orders: order_bool_exp
+ orders_aggregate: order_aggregate_bool_exp
+ organizerId: String_comparison_exp
+ passAmount: passAmount_bool_exp
+ passPricing: passPricing_bool_exp
+ passType: eventPassType_enum_comparison_exp
+ password: String_comparison_exp
+ type: eventPassNftContractType_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+ validationType: eventPassValidationType_enum_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassNftContract"
+"""
+enum eventPassNftContract_constraint {
+ """
+ unique or primary key constraint on columns "eventPassId"
+ """
+ eventPassId_unique
+
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress"
+ """
+ eventPassNftContract_contractAddress_chainId_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ eventPassNftContract_pkey
+}
+
+"""
+input type for inserting data into table "eventPassNftContract"
+"""
+input eventPassNftContract_insert_input {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String
+ eventPassId: String
+ eventPassNfts: eventPassNft_arr_rel_insert_input
+ eventPassOrderSums: eventPassOrderSums_obj_rel_insert_input
+ id: uuid
+
+ """Flag indicating whether the event pass NFT is airdropped."""
+ isAirdrop: Boolean
+
+ """
+ Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ """
+ isDelayedRevealed: Boolean
+ orders: order_arr_rel_insert_input
+ organizerId: String
+ passAmount: passAmount_obj_rel_insert_input
+ passPricing: passPricing_obj_rel_insert_input
+
+ """Type of the pass, referencing the eventPassType table."""
+ passType: eventPassType_enum
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+
+ """Type of the event pass NFT contract."""
+ type: eventPassNftContractType_enum
+ updated_at: timestamptz
+
+ """
+ The method of validation for the event pass, referencing the eventPassValidationType table.
+ """
+ validationType: eventPassValidationType_enum
+}
+
+"""aggregate max on columns"""
+type eventPassNftContract_max_fields {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String
+ eventPassId: String
+ id: uuid
+ organizerId: String
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+ updated_at: timestamptz
+}
+
+"""
+order by max() on columns of table "eventPassNftContract"
+"""
+input eventPassNftContract_max_order_by {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: order_by
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: order_by
+ eventPassId: order_by
+ id: order_by
+ organizerId: order_by
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: order_by
+ updated_at: order_by
+}
+
+"""aggregate min on columns"""
+type eventPassNftContract_min_fields {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String
+ eventPassId: String
+ id: uuid
+ organizerId: String
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+ updated_at: timestamptz
+}
+
+"""
+order by min() on columns of table "eventPassNftContract"
+"""
+input eventPassNftContract_min_order_by {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: order_by
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: order_by
+ eventPassId: order_by
+ id: order_by
+ organizerId: order_by
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: order_by
+ updated_at: order_by
+}
+
+"""
+response of any mutation on the table "eventPassNftContract"
+"""
+type eventPassNftContract_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassNftContract!]!
+}
+
+"""
+input type for inserting object relation for remote table "eventPassNftContract"
+"""
+input eventPassNftContract_obj_rel_insert_input {
+ data: eventPassNftContract_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContract_on_conflict
+}
+
+"""
+on_conflict condition type for table "eventPassNftContract"
+"""
+input eventPassNftContract_on_conflict {
+ constraint: eventPassNftContract_constraint!
+ update_columns: [eventPassNftContract_update_column!]! = []
+ where: eventPassNftContract_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassNftContract"."""
+input eventPassNftContract_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ eventId: order_by
+ eventPassId: order_by
+ eventPassNfts_aggregate: eventPassNft_aggregate_order_by
+ eventPassOrderSums: eventPassOrderSums_order_by
+ id: order_by
+ isAirdrop: order_by
+ isDelayedRevealed: order_by
+ orders_aggregate: order_aggregate_order_by
+ organizerId: order_by
+ passAmount: passAmount_order_by
+ passPricing: passPricing_order_by
+ passType: order_by
+ password: order_by
+ type: order_by
+ updated_at: order_by
+ validationType: order_by
+}
+
+"""primary key columns input for table: eventPassNftContract"""
+input eventPassNftContract_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "eventPassNftContract"
+"""
+enum eventPassNftContract_select_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ eventId
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ id
+
+ """column name"""
+ isAirdrop
+
+ """column name"""
+ isDelayedRevealed
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ passType
+
+ """column name"""
+ password
+
+ """column name"""
+ type
+
+ """column name"""
+ updated_at
+
+ """column name"""
+ validationType
+}
+
+"""
+select "eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns" columns of table "eventPassNftContract"
+"""
+enum eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns {
+ """column name"""
+ isAirdrop
+
+ """column name"""
+ isDelayedRevealed
+}
+
+"""
+select "eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns" columns of table "eventPassNftContract"
+"""
+enum eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns {
+ """column name"""
+ isAirdrop
+
+ """column name"""
+ isDelayedRevealed
+}
+
+"""
+input type for updating data in table "eventPassNftContract"
+"""
+input eventPassNftContract_set_input {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String
+ eventPassId: String
+ id: uuid
+
+ """Flag indicating whether the event pass NFT is airdropped."""
+ isAirdrop: Boolean
+
+ """
+ Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ """
+ isDelayedRevealed: Boolean
+ organizerId: String
+
+ """Type of the pass, referencing the eventPassType table."""
+ passType: eventPassType_enum
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+
+ """Type of the event pass NFT contract."""
+ type: eventPassNftContractType_enum
+ updated_at: timestamptz
+
+ """
+ The method of validation for the event pass, referencing the eventPassValidationType table.
+ """
+ validationType: eventPassValidationType_enum
+}
+
+"""
+Streaming cursor of the table "eventPassNftContract"
+"""
+input eventPassNftContract_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassNftContract_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassNftContract_stream_cursor_value_input {
+ """
+ Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ """
+ eventId: String
+ eventPassId: String
+ id: uuid
+
+ """Flag indicating whether the event pass NFT is airdropped."""
+ isAirdrop: Boolean
+
+ """
+ Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ """
+ isDelayedRevealed: Boolean
+ organizerId: String
+
+ """Type of the pass, referencing the eventPassType table."""
+ passType: eventPassType_enum
+
+ """
+ Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ """
+ password: String
+
+ """Type of the event pass NFT contract."""
+ type: eventPassNftContractType_enum
+ updated_at: timestamptz
+
+ """
+ The method of validation for the event pass, referencing the eventPassValidationType table.
+ """
+ validationType: eventPassValidationType_enum
+}
+
+"""
+update columns of table "eventPassNftContract"
+"""
+enum eventPassNftContract_update_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ eventId
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ id
+
+ """column name"""
+ isAirdrop
+
+ """column name"""
+ isDelayedRevealed
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ passType
+
+ """column name"""
+ password
+
+ """column name"""
+ type
+
+ """column name"""
+ updated_at
+
+ """column name"""
+ validationType
+}
+
+input eventPassNftContract_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContract_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNftContract_bool_exp!
+}
+
+"""
+aggregated selection of "eventPassNft"
+"""
+type eventPassNft_aggregate {
+ aggregate: eventPassNft_aggregate_fields
+ nodes: [eventPassNft!]!
+}
+
+input eventPassNft_aggregate_bool_exp {
+ bool_and: eventPassNft_aggregate_bool_exp_bool_and
+ bool_or: eventPassNft_aggregate_bool_exp_bool_or
+ count: eventPassNft_aggregate_bool_exp_count
+}
+
+input eventPassNft_aggregate_bool_exp_bool_and {
+ arguments: eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns!
+ distinct: Boolean
+ filter: eventPassNft_bool_exp
+ predicate: Boolean_comparison_exp!
+}
+
+input eventPassNft_aggregate_bool_exp_bool_or {
+ arguments: eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns!
+ distinct: Boolean
+ filter: eventPassNft_bool_exp
+ predicate: Boolean_comparison_exp!
+}
+
+input eventPassNft_aggregate_bool_exp_count {
+ arguments: [eventPassNft_select_column!]
+ distinct: Boolean
+ filter: eventPassNft_bool_exp
+ predicate: Int_comparison_exp!
+}
+
+"""
+aggregate fields of "eventPassNft"
+"""
+type eventPassNft_aggregate_fields {
+ avg: eventPassNft_avg_fields
+ count(columns: [eventPassNft_select_column!], distinct: Boolean): Int!
+ max: eventPassNft_max_fields
+ min: eventPassNft_min_fields
+ stddev: eventPassNft_stddev_fields
+ stddev_pop: eventPassNft_stddev_pop_fields
+ stddev_samp: eventPassNft_stddev_samp_fields
+ sum: eventPassNft_sum_fields
+ var_pop: eventPassNft_var_pop_fields
+ var_samp: eventPassNft_var_samp_fields
+ variance: eventPassNft_variance_fields
+}
+
+"""
+order by aggregate values of table "eventPassNft"
+"""
+input eventPassNft_aggregate_order_by {
+ avg: eventPassNft_avg_order_by
+ count: order_by
+ max: eventPassNft_max_order_by
+ min: eventPassNft_min_order_by
+ stddev: eventPassNft_stddev_order_by
+ stddev_pop: eventPassNft_stddev_pop_order_by
+ stddev_samp: eventPassNft_stddev_samp_order_by
+ sum: eventPassNft_sum_order_by
+ var_pop: eventPassNft_var_pop_order_by
+ var_samp: eventPassNft_var_samp_order_by
+ variance: eventPassNft_variance_order_by
+}
+
+"""append existing jsonb value of filtered columns with new jsonb value"""
+input eventPassNft_append_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: jsonb
+}
+
+"""
+input type for inserting array relation for remote table "eventPassNft"
+"""
+input eventPassNft_arr_rel_insert_input {
+ data: [eventPassNft_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassNft_on_conflict
+}
+
+"""aggregate avg on columns"""
+type eventPassNft_avg_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by avg() on columns of table "eventPassNft"
+"""
+input eventPassNft_avg_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassNft". All fields are combined with a logical 'AND'.
+"""
+input eventPassNft_bool_exp {
+ _and: [eventPassNft_bool_exp!]
+ _not: eventPassNft_bool_exp
+ _or: [eventPassNft_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ currentOwnerAddress: String_comparison_exp
+ error: String_comparison_exp
+ eventId: String_comparison_exp
+ eventParameters: eventParameters_bool_exp
+ eventPassId: String_comparison_exp
+ eventPassNftContract: eventPassNftContract_bool_exp
+ id: uuid_comparison_exp
+ isRevealed: Boolean_comparison_exp
+ lastNftTransfer: nftTransfer_bool_exp
+ lastNftTransferId: uuid_comparison_exp
+ metadata: jsonb_comparison_exp
+ nftTransfers: nftTransfer_bool_exp
+ nftTransfers_aggregate: nftTransfer_aggregate_bool_exp
+ organizerId: String_comparison_exp
+ packAmount: passAmount_bool_exp
+ packId: String_comparison_exp
+ packPricing: passPricing_bool_exp
+ passAmount: passAmount_bool_exp
+ passPricing: passPricing_bool_exp
+ status: nftStatus_enum_comparison_exp
+ tokenId: bigint_comparison_exp
+ tokenUri: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassNft"
+"""
+enum eventPassNft_constraint {
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress", "tokenId"
+ """
+ eventPassNft_contractAddress_tokenId_chainId_idx
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ eventPassNft_pkey
+}
+
+"""
+delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+"""
+input eventPassNft_delete_at_path_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: [String!]
+}
+
+"""
+delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+"""
+input eventPassNft_delete_elem_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: Int
+}
+
+"""
+delete key/value pair or string element. key/value pairs are matched based on their key value
+"""
+input eventPassNft_delete_key_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: String
+}
+
+"""
+input type for incrementing numeric columns in table "eventPassNft"
+"""
+input eventPassNft_inc_input {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+}
+
+"""
+input type for inserting data into table "eventPassNft"
+"""
+input eventPassNft_insert_input {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String
+ eventParameters: eventParameters_obj_rel_insert_input
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String
+ eventPassNftContract: eventPassNftContract_obj_rel_insert_input
+ id: uuid
+
+ """
+ Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ """
+ isRevealed: Boolean
+ lastNftTransfer: nftTransfer_obj_rel_insert_input
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: jsonb
+ nftTransfers: nftTransfer_arr_rel_insert_input
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String
+ packAmount: passAmount_obj_rel_insert_input
+ packId: String
+ packPricing: passPricing_obj_rel_insert_input
+ passAmount: passAmount_obj_rel_insert_input
+ passPricing: passPricing_obj_rel_insert_input
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type eventPassNft_max_fields {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String
+ id: uuid
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String
+ packId: String
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""
+order by max() on columns of table "eventPassNft"
+"""
+input eventPassNft_max_order_by {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: order_by
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: order_by
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: order_by
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: order_by
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: order_by
+ id: order_by
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: order_by
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: order_by
+ packId: order_by
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: order_by
+ updated_at: order_by
+}
+
+"""aggregate min on columns"""
+type eventPassNft_min_fields {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String
+ id: uuid
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String
+ packId: String
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""
+order by min() on columns of table "eventPassNft"
+"""
+input eventPassNft_min_order_by {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: order_by
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: order_by
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: order_by
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: order_by
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: order_by
+ id: order_by
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: order_by
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: order_by
+ packId: order_by
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: order_by
+ updated_at: order_by
+}
+
+"""
+response of any mutation on the table "eventPassNft"
+"""
+type eventPassNft_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassNft!]!
+}
+
+"""
+on_conflict condition type for table "eventPassNft"
+"""
+input eventPassNft_on_conflict {
+ constraint: eventPassNft_constraint!
+ update_columns: [eventPassNft_update_column!]! = []
+ where: eventPassNft_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassNft"."""
+input eventPassNft_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ currentOwnerAddress: order_by
+ error: order_by
+ eventId: order_by
+ eventParameters: eventParameters_order_by
+ eventPassId: order_by
+ eventPassNftContract: eventPassNftContract_order_by
+ id: order_by
+ isRevealed: order_by
+ lastNftTransfer: nftTransfer_order_by
+ lastNftTransferId: order_by
+ metadata: order_by
+ nftTransfers_aggregate: nftTransfer_aggregate_order_by
+ organizerId: order_by
+ packAmount: passAmount_order_by
+ packId: order_by
+ packPricing: passPricing_order_by
+ passAmount: passAmount_order_by
+ passPricing: passPricing_order_by
+ status: order_by
+ tokenId: order_by
+ tokenUri: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: eventPassNft"""
+input eventPassNft_pk_columns_input {
+ id: uuid!
+}
+
+"""prepend existing jsonb value of filtered columns with new jsonb value"""
+input eventPassNft_prepend_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: jsonb
+}
+
+"""
+select columns of table "eventPassNft"
+"""
+enum eventPassNft_select_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ currentOwnerAddress
+
+ """column name"""
+ error
+
+ """column name"""
+ eventId
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ id
+
+ """column name"""
+ isRevealed
+
+ """column name"""
+ lastNftTransferId
+
+ """column name"""
+ metadata
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ packId
+
+ """column name"""
+ status
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
+ """column name"""
+ updated_at
+}
+
+"""
+select "eventPassNft_aggregate_bool_exp_bool_and_arguments_columns" columns of table "eventPassNft"
+"""
+enum eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns {
+ """column name"""
+ isRevealed
+}
+
+"""
+select "eventPassNft_aggregate_bool_exp_bool_or_arguments_columns" columns of table "eventPassNft"
+"""
+enum eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns {
+ """column name"""
+ isRevealed
+}
+
+"""
+input type for updating data in table "eventPassNft"
+"""
+input eventPassNft_set_input {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String
+ id: uuid
+
+ """
+ Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ """
+ isRevealed: Boolean
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: jsonb
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String
+ packId: String
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""aggregate stddev on columns"""
+type eventPassNft_stddev_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by stddev() on columns of table "eventPassNft"
+"""
+input eventPassNft_stddev_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""aggregate stddev_pop on columns"""
+type eventPassNft_stddev_pop_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by stddev_pop() on columns of table "eventPassNft"
+"""
+input eventPassNft_stddev_pop_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""aggregate stddev_samp on columns"""
+type eventPassNft_stddev_samp_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by stddev_samp() on columns of table "eventPassNft"
+"""
+input eventPassNft_stddev_samp_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""
+Streaming cursor of the table "eventPassNft"
+"""
+input eventPassNft_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassNft_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassNft_stream_cursor_value_input {
+ """Denotes the specific blockchain or network of the event pass NFT"""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ The address currently holding the event pass NFT, allowing tracking of ownership
+ """
+ currentOwnerAddress: String
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+
+ """A reference to the event associated with the event pass NFT"""
+ eventId: String
+
+ """Directly relates to a specific Event Pass within the system"""
+ eventPassId: String
+ id: uuid
+
+ """
+ Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ """
+ isRevealed: Boolean
+
+ """
+ Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ """
+ lastNftTransferId: uuid
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ """
+ metadata: jsonb
+
+ """Ties the event pass NFT to a specific organizer within the platform"""
+ organizerId: String
+ packId: String
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""aggregate sum on columns"""
+type eventPassNft_sum_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+}
+
+"""
+order by sum() on columns of table "eventPassNft"
+"""
+input eventPassNft_sum_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""
+update columns of table "eventPassNft"
+"""
+enum eventPassNft_update_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ currentOwnerAddress
+
+ """column name"""
+ error
+
+ """column name"""
+ eventId
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ id
+
+ """column name"""
+ isRevealed
+
+ """column name"""
+ lastNftTransferId
+
+ """column name"""
+ metadata
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ packId
+
+ """column name"""
+ status
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
+ """column name"""
+ updated_at
+}
+
+input eventPassNft_updates {
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: eventPassNft_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: eventPassNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: eventPassNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: eventPassNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: eventPassNft_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNft_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNft_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type eventPassNft_var_pop_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by var_pop() on columns of table "eventPassNft"
+"""
+input eventPassNft_var_pop_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""aggregate var_samp on columns"""
+type eventPassNft_var_samp_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by var_samp() on columns of table "eventPassNft"
+"""
+input eventPassNft_var_samp_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""aggregate variance on columns"""
+type eventPassNft_variance_fields {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+order by variance() on columns of table "eventPassNft"
+"""
+input eventPassNft_variance_order_by {
+ """
+ The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: order_by
+}
+
+"""Hold the sums for the Event Pass Orders"""
+type eventPassOrderSums {
+ eventPassId: String!
+ totalReserved: Int!
+}
+
+"""
+aggregated selection of "eventPassOrderSums"
+"""
+type eventPassOrderSums_aggregate {
+ aggregate: eventPassOrderSums_aggregate_fields
+ nodes: [eventPassOrderSums!]!
+}
+
+"""
+aggregate fields of "eventPassOrderSums"
+"""
+type eventPassOrderSums_aggregate_fields {
+ avg: eventPassOrderSums_avg_fields
+ count(columns: [eventPassOrderSums_select_column!], distinct: Boolean): Int!
+ max: eventPassOrderSums_max_fields
+ min: eventPassOrderSums_min_fields
+ stddev: eventPassOrderSums_stddev_fields
+ stddev_pop: eventPassOrderSums_stddev_pop_fields
+ stddev_samp: eventPassOrderSums_stddev_samp_fields
+ sum: eventPassOrderSums_sum_fields
+ var_pop: eventPassOrderSums_var_pop_fields
+ var_samp: eventPassOrderSums_var_samp_fields
+ variance: eventPassOrderSums_variance_fields
+}
+
+"""aggregate avg on columns"""
+type eventPassOrderSums_avg_fields {
+ totalReserved: Float
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassOrderSums". All fields are combined with a logical 'AND'.
+"""
+input eventPassOrderSums_bool_exp {
+ _and: [eventPassOrderSums_bool_exp!]
+ _not: eventPassOrderSums_bool_exp
+ _or: [eventPassOrderSums_bool_exp!]
+ eventPassId: String_comparison_exp
+ totalReserved: Int_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassOrderSums"
+"""
+enum eventPassOrderSums_constraint {
+ """
+ unique or primary key constraint on columns "eventPassId"
+ """
+ eventPassOrderSums_pkey
+}
+
+"""
+input type for incrementing numeric columns in table "eventPassOrderSums"
+"""
+input eventPassOrderSums_inc_input {
+ totalReserved: Int
+}
+
+"""
+input type for inserting data into table "eventPassOrderSums"
+"""
+input eventPassOrderSums_insert_input {
+ eventPassId: String
+ totalReserved: Int
+}
+
+"""aggregate max on columns"""
+type eventPassOrderSums_max_fields {
+ eventPassId: String
+ totalReserved: Int
+}
+
+"""aggregate min on columns"""
+type eventPassOrderSums_min_fields {
+ eventPassId: String
+ totalReserved: Int
+}
+
+"""
+response of any mutation on the table "eventPassOrderSums"
+"""
+type eventPassOrderSums_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassOrderSums!]!
+}
+
+"""
+input type for inserting object relation for remote table "eventPassOrderSums"
+"""
+input eventPassOrderSums_obj_rel_insert_input {
+ data: eventPassOrderSums_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassOrderSums_on_conflict
+}
+
+"""
+on_conflict condition type for table "eventPassOrderSums"
+"""
+input eventPassOrderSums_on_conflict {
+ constraint: eventPassOrderSums_constraint!
+ update_columns: [eventPassOrderSums_update_column!]! = []
+ where: eventPassOrderSums_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassOrderSums"."""
+input eventPassOrderSums_order_by {
+ eventPassId: order_by
+ totalReserved: order_by
+}
+
+"""primary key columns input for table: eventPassOrderSums"""
+input eventPassOrderSums_pk_columns_input {
+ eventPassId: String!
+}
+
+"""
+select columns of table "eventPassOrderSums"
+"""
+enum eventPassOrderSums_select_column {
+ """column name"""
+ eventPassId
+
+ """column name"""
+ totalReserved
+}
+
+"""
+input type for updating data in table "eventPassOrderSums"
+"""
+input eventPassOrderSums_set_input {
+ eventPassId: String
+ totalReserved: Int
+}
+
+"""aggregate stddev on columns"""
+type eventPassOrderSums_stddev_fields {
+ totalReserved: Float
+}
+
+"""aggregate stddev_pop on columns"""
+type eventPassOrderSums_stddev_pop_fields {
+ totalReserved: Float
+}
+
+"""aggregate stddev_samp on columns"""
+type eventPassOrderSums_stddev_samp_fields {
+ totalReserved: Float
+}
+
+"""
+Streaming cursor of the table "eventPassOrderSums"
+"""
+input eventPassOrderSums_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassOrderSums_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassOrderSums_stream_cursor_value_input {
+ eventPassId: String
+ totalReserved: Int
+}
+
+"""aggregate sum on columns"""
+type eventPassOrderSums_sum_fields {
+ totalReserved: Int
+}
+
+"""
+update columns of table "eventPassOrderSums"
+"""
+enum eventPassOrderSums_update_column {
+ """column name"""
+ eventPassId
+
+ """column name"""
+ totalReserved
+}
+
+input eventPassOrderSums_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassOrderSums_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassOrderSums_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassOrderSums_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type eventPassOrderSums_var_pop_fields {
+ totalReserved: Float
+}
+
+"""aggregate var_samp on columns"""
+type eventPassOrderSums_var_samp_fields {
+ totalReserved: Float
+}
+
+"""aggregate variance on columns"""
+type eventPassOrderSums_variance_fields {
+ totalReserved: Float
+}
+
+"""Defines the types of event passes."""
+type eventPassType {
+ """Type name for event pass."""
+ value: String!
+}
+
+"""
+aggregated selection of "eventPassType"
+"""
+type eventPassType_aggregate {
+ aggregate: eventPassType_aggregate_fields
+ nodes: [eventPassType!]!
+}
+
+"""
+aggregate fields of "eventPassType"
+"""
+type eventPassType_aggregate_fields {
+ count(columns: [eventPassType_select_column!], distinct: Boolean): Int!
+ max: eventPassType_max_fields
+ min: eventPassType_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassType". All fields are combined with a logical 'AND'.
+"""
+input eventPassType_bool_exp {
+ _and: [eventPassType_bool_exp!]
+ _not: eventPassType_bool_exp
+ _or: [eventPassType_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassType"
+"""
+enum eventPassType_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ eventPassType_pkey
+}
+
+enum eventPassType_enum {
+ event_access
+ redeemable
+}
+
+"""
+Boolean expression to compare columns of type "eventPassType_enum". All fields are combined with logical 'AND'.
+"""
+input eventPassType_enum_comparison_exp {
+ _eq: eventPassType_enum
+ _in: [eventPassType_enum!]
+ _is_null: Boolean
+ _neq: eventPassType_enum
+ _nin: [eventPassType_enum!]
+}
+
+"""
+input type for inserting data into table "eventPassType"
+"""
+input eventPassType_insert_input {
+ """Type name for event pass."""
+ value: String
+}
+
+"""aggregate max on columns"""
+type eventPassType_max_fields {
+ """Type name for event pass."""
+ value: String
+}
+
+"""aggregate min on columns"""
+type eventPassType_min_fields {
+ """Type name for event pass."""
+ value: String
+}
+
+"""
+response of any mutation on the table "eventPassType"
+"""
+type eventPassType_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassType!]!
+}
+
+"""
+on_conflict condition type for table "eventPassType"
+"""
+input eventPassType_on_conflict {
+ constraint: eventPassType_constraint!
+ update_columns: [eventPassType_update_column!]! = []
+ where: eventPassType_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassType"."""
+input eventPassType_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: eventPassType"""
+input eventPassType_pk_columns_input {
+ """Type name for event pass."""
+ value: String!
+}
+
+"""
+select columns of table "eventPassType"
+"""
+enum eventPassType_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "eventPassType"
+"""
+input eventPassType_set_input {
+ """Type name for event pass."""
+ value: String
+}
+
+"""
+Streaming cursor of the table "eventPassType"
+"""
+input eventPassType_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassType_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassType_stream_cursor_value_input {
+ """Type name for event pass."""
+ value: String
+}
+
+"""
+update columns of table "eventPassType"
+"""
+enum eventPassType_update_column {
+ """column name"""
+ value
+}
+
+input eventPassType_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassType_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassType_bool_exp!
+}
+
+"""Defines the types of validation for event passes."""
+type eventPassValidationType {
+ """Type name for event pass validation."""
+ value: String!
+}
+
+"""
+aggregated selection of "eventPassValidationType"
+"""
+type eventPassValidationType_aggregate {
+ aggregate: eventPassValidationType_aggregate_fields
+ nodes: [eventPassValidationType!]!
+}
+
+"""
+aggregate fields of "eventPassValidationType"
+"""
+type eventPassValidationType_aggregate_fields {
+ count(columns: [eventPassValidationType_select_column!], distinct: Boolean): Int!
+ max: eventPassValidationType_max_fields
+ min: eventPassValidationType_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "eventPassValidationType". All fields are combined with a logical 'AND'.
+"""
+input eventPassValidationType_bool_exp {
+ _and: [eventPassValidationType_bool_exp!]
+ _not: eventPassValidationType_bool_exp
+ _or: [eventPassValidationType_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventPassValidationType"
+"""
+enum eventPassValidationType_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ eventPassValidationType_pkey
+}
+
+enum eventPassValidationType_enum {
+ external
+ manual
+ nft
+}
+
+"""
+Boolean expression to compare columns of type "eventPassValidationType_enum". All fields are combined with logical 'AND'.
+"""
+input eventPassValidationType_enum_comparison_exp {
+ _eq: eventPassValidationType_enum
+ _in: [eventPassValidationType_enum!]
+ _is_null: Boolean
+ _neq: eventPassValidationType_enum
+ _nin: [eventPassValidationType_enum!]
+}
+
+"""
+input type for inserting data into table "eventPassValidationType"
+"""
+input eventPassValidationType_insert_input {
+ """Type name for event pass validation."""
+ value: String
+}
+
+"""aggregate max on columns"""
+type eventPassValidationType_max_fields {
+ """Type name for event pass validation."""
+ value: String
+}
+
+"""aggregate min on columns"""
+type eventPassValidationType_min_fields {
+ """Type name for event pass validation."""
+ value: String
+}
+
+"""
+response of any mutation on the table "eventPassValidationType"
+"""
+type eventPassValidationType_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventPassValidationType!]!
+}
+
+"""
+on_conflict condition type for table "eventPassValidationType"
+"""
+input eventPassValidationType_on_conflict {
+ constraint: eventPassValidationType_constraint!
+ update_columns: [eventPassValidationType_update_column!]! = []
+ where: eventPassValidationType_bool_exp
+}
+
+"""Ordering options when selecting data from "eventPassValidationType"."""
+input eventPassValidationType_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: eventPassValidationType"""
+input eventPassValidationType_pk_columns_input {
+ """Type name for event pass validation."""
+ value: String!
+}
+
+"""
+select columns of table "eventPassValidationType"
+"""
+enum eventPassValidationType_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "eventPassValidationType"
+"""
+input eventPassValidationType_set_input {
+ """Type name for event pass validation."""
+ value: String
+}
+
+"""
+Streaming cursor of the table "eventPassValidationType"
+"""
+input eventPassValidationType_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventPassValidationType_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventPassValidationType_stream_cursor_value_input {
+ """Type name for event pass validation."""
+ value: String
+}
+
+"""
+update columns of table "eventPassValidationType"
+"""
+enum eventPassValidationType_update_column {
+ """column name"""
+ value
+}
+
+input eventPassValidationType_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassValidationType_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassValidationType_bool_exp!
+}
+
+"""
+columns and relationships of "eventStatus"
+"""
+type eventStatus {
+ value: String!
+}
+
+"""
+aggregated selection of "eventStatus"
+"""
+type eventStatus_aggregate {
+ aggregate: eventStatus_aggregate_fields
+ nodes: [eventStatus!]!
+}
+
+"""
+aggregate fields of "eventStatus"
+"""
+type eventStatus_aggregate_fields {
+ count(columns: [eventStatus_select_column!], distinct: Boolean): Int!
+ max: eventStatus_max_fields
+ min: eventStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "eventStatus". All fields are combined with a logical 'AND'.
+"""
+input eventStatus_bool_exp {
+ _and: [eventStatus_bool_exp!]
+ _not: eventStatus_bool_exp
+ _or: [eventStatus_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "eventStatus"
+"""
+enum eventStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ eventStatus_pkey
+}
+
+enum eventStatus_enum {
+ DRAFT
+ PUBLISHED
+}
+
+"""
+Boolean expression to compare columns of type "eventStatus_enum". All fields are combined with logical 'AND'.
+"""
+input eventStatus_enum_comparison_exp {
+ _eq: eventStatus_enum
+ _in: [eventStatus_enum!]
+ _is_null: Boolean
+ _neq: eventStatus_enum
+ _nin: [eventStatus_enum!]
+}
+
+"""
+input type for inserting data into table "eventStatus"
+"""
+input eventStatus_insert_input {
+ value: String
+}
+
+"""aggregate max on columns"""
+type eventStatus_max_fields {
+ value: String
+}
+
+"""aggregate min on columns"""
+type eventStatus_min_fields {
+ value: String
+}
+
+"""
+response of any mutation on the table "eventStatus"
+"""
+type eventStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [eventStatus!]!
+}
+
+"""
+on_conflict condition type for table "eventStatus"
+"""
+input eventStatus_on_conflict {
+ constraint: eventStatus_constraint!
+ update_columns: [eventStatus_update_column!]! = []
+ where: eventStatus_bool_exp
+}
+
+"""Ordering options when selecting data from "eventStatus"."""
+input eventStatus_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: eventStatus"""
+input eventStatus_pk_columns_input {
+ value: String!
+}
+
+"""
+select columns of table "eventStatus"
+"""
+enum eventStatus_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "eventStatus"
+"""
+input eventStatus_set_input {
+ value: String
+}
+
+"""
+Streaming cursor of the table "eventStatus"
+"""
+input eventStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: eventStatus_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input eventStatus_stream_cursor_value_input {
+ value: String
+}
+
+"""
+update columns of table "eventStatus"
+"""
+enum eventStatus_update_column {
+ """column name"""
+ value
+}
+
+input eventStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventStatus_bool_exp!
+}
+
+"""
+Stores follow relationships. Each row represents an account following an organizer.
+"""
+type follow {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid!
+ created_at: timestamptz!
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String!
+}
+
+"""
+aggregated selection of "follow"
+"""
+type follow_aggregate {
+ aggregate: follow_aggregate_fields
+ nodes: [follow!]!
+}
+
+"""
+aggregate fields of "follow"
+"""
+type follow_aggregate_fields {
+ count(columns: [follow_select_column!], distinct: Boolean): Int!
+ max: follow_max_fields
+ min: follow_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "follow". All fields are combined with a logical 'AND'.
+"""
+input follow_bool_exp {
+ _and: [follow_bool_exp!]
+ _not: follow_bool_exp
+ _or: [follow_bool_exp!]
+ accountId: uuid_comparison_exp
+ created_at: timestamptz_comparison_exp
+ organizerSlug: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "follow"
+"""
+enum follow_constraint {
+ """
+ unique or primary key constraint on columns "accountId", "organizerSlug"
+ """
+ follow_pkey
+}
+
+"""
+input type for inserting data into table "follow"
+"""
+input follow_insert_input {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid
+ created_at: timestamptz
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String
+}
+
+"""aggregate max on columns"""
+type follow_max_fields {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid
+ created_at: timestamptz
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String
+}
+
+"""aggregate min on columns"""
+type follow_min_fields {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid
+ created_at: timestamptz
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String
+}
+
+"""
+response of any mutation on the table "follow"
+"""
+type follow_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [follow!]!
+}
+
+"""
+on_conflict condition type for table "follow"
+"""
+input follow_on_conflict {
+ constraint: follow_constraint!
+ update_columns: [follow_update_column!]! = []
+ where: follow_bool_exp
+}
+
+"""Ordering options when selecting data from "follow"."""
+input follow_order_by {
+ accountId: order_by
+ created_at: order_by
+ organizerSlug: order_by
+}
+
+"""primary key columns input for table: follow"""
+input follow_pk_columns_input {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid!
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String!
+}
+
+"""
+select columns of table "follow"
+"""
+enum follow_select_column {
+ """column name"""
+ accountId
+
+ """column name"""
+ created_at
+
+ """column name"""
+ organizerSlug
+}
+
+"""
+input type for updating data in table "follow"
+"""
+input follow_set_input {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid
+ created_at: timestamptz
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String
+}
+
+"""
+Streaming cursor of the table "follow"
+"""
+input follow_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: follow_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input follow_stream_cursor_value_input {
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid
+ created_at: timestamptz
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String
+}
+
+"""
+update columns of table "follow"
+"""
+enum follow_update_column {
+ """column name"""
+ accountId
+
+ """column name"""
+ created_at
+
+ """column name"""
+ organizerSlug
+}
+
+input follow_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: follow_set_input
+
+ """filter the rows which have to be updated"""
+ where: follow_bool_exp!
+}
+
+scalar jsonb
+
+input jsonb_cast_exp {
+ String: String_comparison_exp
+}
+
+"""
+Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.
+"""
+input jsonb_comparison_exp {
+ _cast: jsonb_cast_exp
+
+ """is the column contained in the given json value"""
+ _contained_in: jsonb
+
+ """does the column contain the given json value at the top level"""
+ _contains: jsonb
+ _eq: jsonb
+ _gt: jsonb
+ _gte: jsonb
+
+ """does the string exist as a top-level key in the column"""
+ _has_key: String
+
+ """do all of these strings exist as top-level keys in the column"""
+ _has_keys_all: [String!]
+
+ """do any of these strings exist as top-level keys in the column"""
+ _has_keys_any: [String!]
+ _in: [jsonb!]
+ _is_null: Boolean
+ _lt: jsonb
+ _lte: jsonb
+ _neq: jsonb
+ _nin: [jsonb!]
+}
+
+"""
+columns and relationships of "kyc"
+"""
+type kyc {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz!
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid!
+
+ """Level of KYC verification, referring to kycLevelName."""
+ levelName: kycLevelName_enum
+
+ """Status of the applicant’s review in Sumsub, referring to kycStatus."""
+ reviewStatus: kycStatus_enum
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""KYC levels representing the level of verification for the applicant."""
+type kycLevelName {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String!
+}
+
+"""
+aggregated selection of "kycLevelName"
+"""
+type kycLevelName_aggregate {
+ aggregate: kycLevelName_aggregate_fields
+ nodes: [kycLevelName!]!
+}
+
+"""
+aggregate fields of "kycLevelName"
+"""
+type kycLevelName_aggregate_fields {
+ count(columns: [kycLevelName_select_column!], distinct: Boolean): Int!
+ max: kycLevelName_max_fields
+ min: kycLevelName_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "kycLevelName". All fields are combined with a logical 'AND'.
+"""
+input kycLevelName_bool_exp {
+ _and: [kycLevelName_bool_exp!]
+ _not: kycLevelName_bool_exp
+ _or: [kycLevelName_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "kycLevelName"
+"""
+enum kycLevelName_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ kycLevelName_pkey
+}
+
+enum kycLevelName_enum {
+ advanced_kyc_level
+ basic_kyc_level
+}
+
+"""
+Boolean expression to compare columns of type "kycLevelName_enum". All fields are combined with logical 'AND'.
+"""
+input kycLevelName_enum_comparison_exp {
+ _eq: kycLevelName_enum
+ _in: [kycLevelName_enum!]
+ _is_null: Boolean
+ _neq: kycLevelName_enum
+ _nin: [kycLevelName_enum!]
+}
+
+"""
+input type for inserting data into table "kycLevelName"
+"""
+input kycLevelName_insert_input {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String
+}
+
+"""aggregate max on columns"""
+type kycLevelName_max_fields {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String
+}
+
+"""aggregate min on columns"""
+type kycLevelName_min_fields {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String
+}
+
+"""
+response of any mutation on the table "kycLevelName"
+"""
+type kycLevelName_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [kycLevelName!]!
+}
+
+"""
+on_conflict condition type for table "kycLevelName"
+"""
+input kycLevelName_on_conflict {
+ constraint: kycLevelName_constraint!
+ update_columns: [kycLevelName_update_column!]! = []
+ where: kycLevelName_bool_exp
+}
+
+"""Ordering options when selecting data from "kycLevelName"."""
+input kycLevelName_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: kycLevelName"""
+input kycLevelName_pk_columns_input {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String!
+}
+
+"""
+select columns of table "kycLevelName"
+"""
+enum kycLevelName_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "kycLevelName"
+"""
+input kycLevelName_set_input {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String
+}
+
+"""
+Streaming cursor of the table "kycLevelName"
+"""
+input kycLevelName_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: kycLevelName_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input kycLevelName_stream_cursor_value_input {
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String
+}
+
+"""
+update columns of table "kycLevelName"
+"""
+enum kycLevelName_update_column {
+ """column name"""
+ value
+}
+
+input kycLevelName_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycLevelName_set_input
+
+ """filter the rows which have to be updated"""
+ where: kycLevelName_bool_exp!
+}
+
+"""Statuses of Know Your Customer (KYC) processes."""
+type kycStatus {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String!
+}
+
+"""
+aggregated selection of "kycStatus"
+"""
+type kycStatus_aggregate {
+ aggregate: kycStatus_aggregate_fields
+ nodes: [kycStatus!]!
+}
+
+"""
+aggregate fields of "kycStatus"
+"""
+type kycStatus_aggregate_fields {
+ count(columns: [kycStatus_select_column!], distinct: Boolean): Int!
+ max: kycStatus_max_fields
+ min: kycStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "kycStatus". All fields are combined with a logical 'AND'.
+"""
+input kycStatus_bool_exp {
+ _and: [kycStatus_bool_exp!]
+ _not: kycStatus_bool_exp
+ _or: [kycStatus_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "kycStatus"
+"""
+enum kycStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ kycStatus_pkey
+}
+
+enum kycStatus_enum {
+ completed
+ init
+ onHold
+ pending
+ prechecked
+ queued
+}
+
+"""
+Boolean expression to compare columns of type "kycStatus_enum". All fields are combined with logical 'AND'.
+"""
+input kycStatus_enum_comparison_exp {
+ _eq: kycStatus_enum
+ _in: [kycStatus_enum!]
+ _is_null: Boolean
+ _neq: kycStatus_enum
+ _nin: [kycStatus_enum!]
+}
+
+"""
+input type for inserting data into table "kycStatus"
+"""
+input kycStatus_insert_input {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String
+}
+
+"""aggregate max on columns"""
+type kycStatus_max_fields {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String
+}
+
+"""aggregate min on columns"""
+type kycStatus_min_fields {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String
+}
+
+"""
+response of any mutation on the table "kycStatus"
+"""
+type kycStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [kycStatus!]!
+}
+
+"""
+on_conflict condition type for table "kycStatus"
+"""
+input kycStatus_on_conflict {
+ constraint: kycStatus_constraint!
+ update_columns: [kycStatus_update_column!]! = []
+ where: kycStatus_bool_exp
+}
+
+"""Ordering options when selecting data from "kycStatus"."""
+input kycStatus_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: kycStatus"""
+input kycStatus_pk_columns_input {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String!
+}
+
+"""
+select columns of table "kycStatus"
+"""
+enum kycStatus_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "kycStatus"
+"""
+input kycStatus_set_input {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String
+}
+
+"""
+Streaming cursor of the table "kycStatus"
+"""
+input kycStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: kycStatus_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input kycStatus_stream_cursor_value_input {
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String
+}
+
+"""
+update columns of table "kycStatus"
+"""
+enum kycStatus_update_column {
+ """column name"""
+ value
+}
+
+input kycStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: kycStatus_bool_exp!
+}
+
+"""
+aggregated selection of "kyc"
+"""
+type kyc_aggregate {
+ aggregate: kyc_aggregate_fields
+ nodes: [kyc!]!
+}
+
+"""
+aggregate fields of "kyc"
+"""
+type kyc_aggregate_fields {
+ count(columns: [kyc_select_column!], distinct: Boolean): Int!
+ max: kyc_max_fields
+ min: kyc_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "kyc". All fields are combined with a logical 'AND'.
+"""
+input kyc_bool_exp {
+ _and: [kyc_bool_exp!]
+ _not: kyc_bool_exp
+ _or: [kyc_bool_exp!]
+ applicantId: String_comparison_exp
+ createDate: timestamptz_comparison_exp
+ externalUserId: uuid_comparison_exp
+ levelName: kycLevelName_enum_comparison_exp
+ reviewStatus: kycStatus_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "kyc"
+"""
+enum kyc_constraint {
+ """
+ unique or primary key constraint on columns "externalUserId"
+ """
+ kyc_externalUserId_key
+
+ """
+ unique or primary key constraint on columns "externalUserId"
+ """
+ kyc_pkey
+}
+
+"""
+input type for inserting data into table "kyc"
+"""
+input kyc_insert_input {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid
+
+ """Level of KYC verification, referring to kycLevelName."""
+ levelName: kycLevelName_enum
+
+ """Status of the applicant’s review in Sumsub, referring to kycStatus."""
+ reviewStatus: kycStatus_enum
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type kyc_max_fields {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type kyc_min_fields {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "kyc"
+"""
+type kyc_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [kyc!]!
+}
+
+"""
+input type for inserting object relation for remote table "kyc"
+"""
+input kyc_obj_rel_insert_input {
+ data: kyc_insert_input!
+
+ """upsert condition"""
+ on_conflict: kyc_on_conflict
+}
+
+"""
+on_conflict condition type for table "kyc"
+"""
+input kyc_on_conflict {
+ constraint: kyc_constraint!
+ update_columns: [kyc_update_column!]! = []
+ where: kyc_bool_exp
+}
+
+"""Ordering options when selecting data from "kyc"."""
+input kyc_order_by {
+ applicantId: order_by
+ createDate: order_by
+ externalUserId: order_by
+ levelName: order_by
+ reviewStatus: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: kyc"""
+input kyc_pk_columns_input {
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid!
+}
+
+"""
+select columns of table "kyc"
+"""
+enum kyc_select_column {
+ """column name"""
+ applicantId
+
+ """column name"""
+ createDate
+
+ """column name"""
+ externalUserId
+
+ """column name"""
+ levelName
+
+ """column name"""
+ reviewStatus
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "kyc"
+"""
+input kyc_set_input {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid
+
+ """Level of KYC verification, referring to kycLevelName."""
+ levelName: kycLevelName_enum
+
+ """Status of the applicant’s review in Sumsub, referring to kycStatus."""
+ reviewStatus: kycStatus_enum
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "kyc"
+"""
+input kyc_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: kyc_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input kyc_stream_cursor_value_input {
+ """Unique identifier for the applicant provided by Sumsub."""
+ applicantId: String
+
+ """
+ The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
+ """
+ createDate: timestamptz
+
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid
+
+ """Level of KYC verification, referring to kycLevelName."""
+ levelName: kycLevelName_enum
+
+ """Status of the applicant’s review in Sumsub, referring to kycStatus."""
+ reviewStatus: kycStatus_enum
+
+ """Timestamp automatically updated whenever the kyc row changes."""
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "kyc"
+"""
+enum kyc_update_column {
+ """column name"""
+ applicantId
+
+ """column name"""
+ createDate
+
+ """column name"""
+ externalUserId
+
+ """column name"""
+ levelName
+
+ """column name"""
+ reviewStatus
+
+ """column name"""
+ updated_at
+}
+
+input kyc_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: kyc_set_input
+
+ """filter the rows which have to be updated"""
+ where: kyc_bool_exp!
+}
+
+"""
+The lotteryParameters model is designed to define properties on a lottery, including details like the lotteryId and activityWebhookId. It manages various timestamps and settings related to the lottery, ensuring efficient and accurate management of lottery events.
+"""
+type lotteryParameters {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz!
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid!
+ lotteryId: String!
+ organizerId: String!
+ status: lotteryStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String!
+ updated_at: timestamptz!
+}
+
+"""
+aggregated selection of "lotteryParameters"
+"""
+type lotteryParameters_aggregate {
+ aggregate: lotteryParameters_aggregate_fields
+ nodes: [lotteryParameters!]!
+}
+
+"""
+aggregate fields of "lotteryParameters"
+"""
+type lotteryParameters_aggregate_fields {
+ count(columns: [lotteryParameters_select_column!], distinct: Boolean): Int!
+ max: lotteryParameters_max_fields
+ min: lotteryParameters_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "lotteryParameters". All fields are combined with a logical 'AND'.
+"""
+input lotteryParameters_bool_exp {
+ _and: [lotteryParameters_bool_exp!]
+ _not: lotteryParameters_bool_exp
+ _or: [lotteryParameters_bool_exp!]
+ activityWebhookId: String_comparison_exp
+ activityWebhookSigningKey: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ dateSaleEnd: timestamp_comparison_exp
+ dateSaleStart: timestamp_comparison_exp
+ id: uuid_comparison_exp
+ lotteryId: String_comparison_exp
+ organizerId: String_comparison_exp
+ status: lotteryStatus_enum_comparison_exp
+ timezone: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "lotteryParameters"
+"""
+enum lotteryParameters_constraint {
+ """
+ unique or primary key constraint on columns "lotteryId"
+ """
+ lotteryParameters_lotteryId_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ lotteryParameters_pkey
+
+ """
+ unique or primary key constraint on columns "activityWebhookSigningKey"
+ """
+ lotteryParameters_signingKey_key
+}
+
+"""
+input type for inserting data into table "lotteryParameters"
+"""
+input lotteryParameters_insert_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid
+ lotteryId: String
+ organizerId: String
+ status: lotteryStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type lotteryParameters_max_fields {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid
+ lotteryId: String
+ organizerId: String
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type lotteryParameters_min_fields {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid
+ lotteryId: String
+ organizerId: String
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "lotteryParameters"
+"""
+type lotteryParameters_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [lotteryParameters!]!
+}
+
+"""
+on_conflict condition type for table "lotteryParameters"
+"""
+input lotteryParameters_on_conflict {
+ constraint: lotteryParameters_constraint!
+ update_columns: [lotteryParameters_update_column!]! = []
+ where: lotteryParameters_bool_exp
+}
+
+"""Ordering options when selecting data from "lotteryParameters"."""
+input lotteryParameters_order_by {
+ activityWebhookId: order_by
+ activityWebhookSigningKey: order_by
+ created_at: order_by
+ dateSaleEnd: order_by
+ dateSaleStart: order_by
+ id: order_by
+ lotteryId: order_by
+ organizerId: order_by
+ status: order_by
+ timezone: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: lotteryParameters"""
+input lotteryParameters_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "lotteryParameters"
+"""
+enum lotteryParameters_select_column {
+ """column name"""
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ dateSaleEnd
+
+ """column name"""
+ dateSaleStart
+
+ """column name"""
+ id
+
+ """column name"""
+ lotteryId
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ timezone
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "lotteryParameters"
+"""
+input lotteryParameters_set_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid
+ lotteryId: String
+ organizerId: String
+ status: lotteryStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "lotteryParameters"
+"""
+input lotteryParameters_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: lotteryParameters_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input lotteryParameters_stream_cursor_value_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ """
+ activityWebhookId: String
+ activityWebhookSigningKey: String
+ created_at: timestamptz
+
+ """
+ Optional column
+ for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ """
+ dateSaleEnd: timestamp
+
+ """
+ Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ """
+ dateSaleStart: timestamp
+ id: uuid
+ lotteryId: String
+ organizerId: String
+ status: lotteryStatus_enum
+
+ """
+ The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ """
+ timezone: String
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "lotteryParameters"
+"""
+enum lotteryParameters_update_column {
+ """column name"""
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ dateSaleEnd
+
+ """column name"""
+ dateSaleStart
+
+ """column name"""
+ id
+
+ """column name"""
+ lotteryId
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ timezone
+
+ """column name"""
+ updated_at
+}
+
+input lotteryParameters_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: lotteryParameters_bool_exp!
+}
+
+"""
+columns and relationships of "lotteryStatus"
+"""
+type lotteryStatus {
+ value: String!
+}
+
+"""
+aggregated selection of "lotteryStatus"
+"""
+type lotteryStatus_aggregate {
+ aggregate: lotteryStatus_aggregate_fields
+ nodes: [lotteryStatus!]!
+}
+
+"""
+aggregate fields of "lotteryStatus"
+"""
+type lotteryStatus_aggregate_fields {
+ count(columns: [lotteryStatus_select_column!], distinct: Boolean): Int!
+ max: lotteryStatus_max_fields
+ min: lotteryStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "lotteryStatus". All fields are combined with a logical 'AND'.
+"""
+input lotteryStatus_bool_exp {
+ _and: [lotteryStatus_bool_exp!]
+ _not: lotteryStatus_bool_exp
+ _or: [lotteryStatus_bool_exp!]
+ value: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "lotteryStatus"
+"""
+enum lotteryStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ lotteryStatus_pkey
+}
+
+enum lotteryStatus_enum {
+ DRAFT
+ PUBLISHED
+}
+
+"""
+Boolean expression to compare columns of type "lotteryStatus_enum". All fields are combined with logical 'AND'.
+"""
+input lotteryStatus_enum_comparison_exp {
+ _eq: lotteryStatus_enum
+ _in: [lotteryStatus_enum!]
+ _is_null: Boolean
+ _neq: lotteryStatus_enum
+ _nin: [lotteryStatus_enum!]
+}
+
+"""
+input type for inserting data into table "lotteryStatus"
+"""
+input lotteryStatus_insert_input {
+ value: String
+}
+
+"""aggregate max on columns"""
+type lotteryStatus_max_fields {
+ value: String
+}
+
+"""aggregate min on columns"""
+type lotteryStatus_min_fields {
+ value: String
+}
+
+"""
+response of any mutation on the table "lotteryStatus"
+"""
+type lotteryStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [lotteryStatus!]!
+}
+
+"""
+on_conflict condition type for table "lotteryStatus"
+"""
+input lotteryStatus_on_conflict {
+ constraint: lotteryStatus_constraint!
+ update_columns: [lotteryStatus_update_column!]! = []
+ where: lotteryStatus_bool_exp
+}
+
+"""Ordering options when selecting data from "lotteryStatus"."""
+input lotteryStatus_order_by {
+ value: order_by
+}
+
+"""primary key columns input for table: lotteryStatus"""
+input lotteryStatus_pk_columns_input {
+ value: String!
+}
+
+"""
+select columns of table "lotteryStatus"
+"""
+enum lotteryStatus_select_column {
+ """column name"""
+ value
+}
+
+"""
+input type for updating data in table "lotteryStatus"
+"""
+input lotteryStatus_set_input {
+ value: String
+}
+
+"""
+Streaming cursor of the table "lotteryStatus"
+"""
+input lotteryStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: lotteryStatus_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input lotteryStatus_stream_cursor_value_input {
+ value: String
+}
+
+"""
+update columns of table "lotteryStatus"
+"""
+enum lotteryStatus_update_column {
+ """column name"""
+ value
+}
+
+input lotteryStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: lotteryStatus_bool_exp!
+}
+
+"""
+The loyaltyCardNft model stores NFTs delivered by the loyaltyCardNftContract, each uniquely associated with a loyalty card. These NFTs are soulbound to a specific owner and not transferable, though they can be burned, indicating the end of their lifecycle. The structure allows for the dynamic update of NFT metadata by contract admins, adhering to the loyalty card contract stipulations.
+"""
+type loyaltyCardNft {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String!
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String!
+ created_at: timestamptz!
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+ id: uuid!
+ loyaltyCard(
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): LoyaltyCard
+
+ """
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
+ """
+ loyaltyCardId: String!
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata(
+ """JSON select path"""
+ path: String
+ ): jsonb
+ organizer(
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftorganizer!
+ ): Organizer
+
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String!
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String!
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
+ updated_at: timestamptz!
+}
+
+"""
+The loyaltyCardNftContract model is designed to store metadata associated with NFT contracts that act as loyalty cards for organizers. This table captures critical details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. It includes organizerId to link each loyalty card contract directly with an organizer, facilitating the management and interaction with NFT-based loyalty programs.
+"""
+type loyaltyCardNftContract {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String!
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String!
+ created_at: timestamptz!
+ id: uuid!
+ loyaltyCard(
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): LoyaltyCard
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String!
"""An object relationship"""
- stripeCustomer: stripeCustomer
+ loyaltyCardParameter: loyaltyCardParameters
+ organizer(
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftContractorganizer!
+ ): Organizer
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String!
+ updated_at: timestamptz!
+}
+
+"""
+aggregated selection of "loyaltyCardNftContract"
+"""
+type loyaltyCardNftContract_aggregate {
+ aggregate: loyaltyCardNftContract_aggregate_fields
+ nodes: [loyaltyCardNftContract!]!
+}
+
+"""
+aggregate fields of "loyaltyCardNftContract"
+"""
+type loyaltyCardNftContract_aggregate_fields {
+ count(columns: [loyaltyCardNftContract_select_column!], distinct: Boolean): Int!
+ max: loyaltyCardNftContract_max_fields
+ min: loyaltyCardNftContract_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "loyaltyCardNftContract". All fields are combined with a logical 'AND'.
+"""
+input loyaltyCardNftContract_bool_exp {
+ _and: [loyaltyCardNftContract_bool_exp!]
+ _not: loyaltyCardNftContract_bool_exp
+ _or: [loyaltyCardNftContract_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ loyaltyCardId: String_comparison_exp
+ loyaltyCardParameter: loyaltyCardParameters_bool_exp
+ organizerId: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "loyaltyCardNftContract"
+"""
+enum loyaltyCardNftContract_constraint {
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress"
+ """
+ loyaltyCardNftContract_contractAddress_chainId_key
+
+ """
+ unique or primary key constraint on columns "loyaltyCardId"
+ """
+ loyaltyCardNftContract_loyaltyCardId_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ loyaltyCardNftContract_pkey
+}
+
+"""
+input type for inserting data into table "loyaltyCardNftContract"
+"""
+input loyaltyCardNftContract_insert_input {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String
+ loyaltyCardParameter: loyaltyCardParameters_obj_rel_insert_input
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type loyaltyCardNftContract_max_fields {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type loyaltyCardNftContract_min_fields {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
updated_at: timestamptz
}
"""
-aggregated selection of "account"
+response of any mutation on the table "loyaltyCardNftContract"
"""
-type account_aggregate {
- aggregate: account_aggregate_fields
- nodes: [account!]!
+type loyaltyCardNftContract_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [loyaltyCardNftContract!]!
}
"""
-aggregate fields of "account"
+input type for inserting object relation for remote table "loyaltyCardNftContract"
"""
-type account_aggregate_fields {
- count(columns: [account_select_column!], distinct: Boolean): Int!
- max: account_max_fields
- min: account_min_fields
+input loyaltyCardNftContract_obj_rel_insert_input {
+ data: loyaltyCardNftContract_insert_input!
+
+ """upsert condition"""
+ on_conflict: loyaltyCardNftContract_on_conflict
}
"""
-Boolean expression to filter rows from the table "account". All fields are combined with a logical 'AND'.
+on_conflict condition type for table "loyaltyCardNftContract"
"""
-input account_bool_exp {
- _and: [account_bool_exp!]
- _not: account_bool_exp
- _or: [account_bool_exp!]
- address: String_comparison_exp
+input loyaltyCardNftContract_on_conflict {
+ constraint: loyaltyCardNftContract_constraint!
+ update_columns: [loyaltyCardNftContract_update_column!]! = []
+ where: loyaltyCardNftContract_bool_exp
+}
+
+"""Ordering options when selecting data from "loyaltyCardNftContract"."""
+input loyaltyCardNftContract_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ id: order_by
+ loyaltyCardId: order_by
+ loyaltyCardParameter: loyaltyCardParameters_order_by
+ organizerId: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: loyaltyCardNftContract"""
+input loyaltyCardNftContract_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "loyaltyCardNftContract"
+"""
+enum loyaltyCardNftContract_select_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "loyaltyCardNftContract"
+"""
+input loyaltyCardNftContract_set_input {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""
+Streaming cursor of the table "loyaltyCardNftContract"
+"""
+input loyaltyCardNftContract_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: loyaltyCardNftContract_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input loyaltyCardNftContract_stream_cursor_value_input {
+ """
+ Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ """
+ chainId: String
+
+ """
+ Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
+
+"""
+update columns of table "loyaltyCardNftContract"
+"""
+enum loyaltyCardNftContract_update_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ updated_at
+}
+
+input loyaltyCardNftContract_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardNftContract_set_input
+
+ """filter the rows which have to be updated"""
+ where: loyaltyCardNftContract_bool_exp!
+}
+
+"""
+aggregated selection of "loyaltyCardNft"
+"""
+type loyaltyCardNft_aggregate {
+ aggregate: loyaltyCardNft_aggregate_fields
+ nodes: [loyaltyCardNft!]!
+}
+
+"""
+aggregate fields of "loyaltyCardNft"
+"""
+type loyaltyCardNft_aggregate_fields {
+ avg: loyaltyCardNft_avg_fields
+ count(columns: [loyaltyCardNft_select_column!], distinct: Boolean): Int!
+ max: loyaltyCardNft_max_fields
+ min: loyaltyCardNft_min_fields
+ stddev: loyaltyCardNft_stddev_fields
+ stddev_pop: loyaltyCardNft_stddev_pop_fields
+ stddev_samp: loyaltyCardNft_stddev_samp_fields
+ sum: loyaltyCardNft_sum_fields
+ var_pop: loyaltyCardNft_var_pop_fields
+ var_samp: loyaltyCardNft_var_samp_fields
+ variance: loyaltyCardNft_variance_fields
+}
+
+"""append existing jsonb value of filtered columns with new jsonb value"""
+input loyaltyCardNft_append_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: jsonb
+}
+
+"""aggregate avg on columns"""
+type loyaltyCardNft_avg_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""
+Boolean expression to filter rows from the table "loyaltyCardNft". All fields are combined with a logical 'AND'.
+"""
+input loyaltyCardNft_bool_exp {
+ _and: [loyaltyCardNft_bool_exp!]
+ _not: loyaltyCardNft_bool_exp
+ _or: [loyaltyCardNft_bool_exp!]
+ burnedTransferId: uuid_comparison_exp
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
created_at: timestamptz_comparison_exp
+ error: String_comparison_exp
id: uuid_comparison_exp
- kyc: kyc_bool_exp
- roles: roleAssignment_bool_exp
- roles_aggregate: roleAssignment_aggregate_bool_exp
- stripeCustomer: stripeCustomer_bool_exp
+ loyaltyCardId: String_comparison_exp
+ metadata: jsonb_comparison_exp
+ organizerId: String_comparison_exp
+ ownerAddress: String_comparison_exp
+ status: nftStatus_enum_comparison_exp
+ tokenId: bigint_comparison_exp
+ tokenUri: String_comparison_exp
updated_at: timestamptz_comparison_exp
}
-"""
-unique or primary key constraints on table "account"
-"""
-enum account_constraint {
+"""
+unique or primary key constraints on table "loyaltyCardNft"
+"""
+enum loyaltyCardNft_constraint {
+ """
+ unique or primary key constraint on columns "ownerAddress"
+ """
+ idx_loyaltycardnft_owneraddress_active
+
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress", "tokenId"
+ """
+ loyaltyCardNft_contractAddress_tokenId_chainId_idx
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ loyaltyCardNft_pkey
+}
+
+"""
+delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+"""
+input loyaltyCardNft_delete_at_path_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: [String!]
+}
+
+"""
+delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+"""
+input loyaltyCardNft_delete_elem_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: Int
+}
+
+"""
+delete key/value pair or string element. key/value pairs are matched based on their key value
+"""
+input loyaltyCardNft_delete_key_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: String
+}
+
+"""
+input type for incrementing numeric columns in table "loyaltyCardNft"
+"""
+input loyaltyCardNft_inc_input {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+}
+
+"""
+input type for inserting data into table "loyaltyCardNft"
+"""
+input loyaltyCardNft_insert_input {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
+ id: uuid
+
"""
- unique or primary key constraint on columns "address"
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
"""
- account_address_key
+ loyaltyCardId: String
"""
- unique or primary key constraint on columns "id"
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
"""
- account_pkey
-}
+ metadata: jsonb
-"""
-input type for inserting data into table "account"
-"""
-input account_insert_input {
- address: String
- created_at: timestamptz
- id: uuid
- kyc: kyc_obj_rel_insert_input
- roles: roleAssignment_arr_rel_insert_input
- stripeCustomer: stripeCustomer_obj_rel_insert_input
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
updated_at: timestamptz
}
"""aggregate max on columns"""
-type account_max_fields {
- address: String
+type loyaltyCardNft_max_fields {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String
created_at: timestamptz
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
id: uuid
+
+ """
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
updated_at: timestamptz
}
"""aggregate min on columns"""
-type account_min_fields {
- address: String
+type loyaltyCardNft_min_fields {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String
created_at: timestamptz
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
id: uuid
+
+ """
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
+ """
+ loyaltyCardId: String
+
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
updated_at: timestamptz
}
"""
-response of any mutation on the table "account"
+response of any mutation on the table "loyaltyCardNft"
"""
-type account_mutation_response {
+type loyaltyCardNft_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [account!]!
-}
-
-"""
-input type for inserting object relation for remote table "account"
-"""
-input account_obj_rel_insert_input {
- data: account_insert_input!
-
- """upsert condition"""
- on_conflict: account_on_conflict
+ returning: [loyaltyCardNft!]!
}
"""
-on_conflict condition type for table "account"
+on_conflict condition type for table "loyaltyCardNft"
"""
-input account_on_conflict {
- constraint: account_constraint!
- update_columns: [account_update_column!]! = []
- where: account_bool_exp
+input loyaltyCardNft_on_conflict {
+ constraint: loyaltyCardNft_constraint!
+ update_columns: [loyaltyCardNft_update_column!]! = []
+ where: loyaltyCardNft_bool_exp
}
-"""Ordering options when selecting data from "account"."""
-input account_order_by {
- address: order_by
+"""Ordering options when selecting data from "loyaltyCardNft"."""
+input loyaltyCardNft_order_by {
+ burnedTransferId: order_by
+ chainId: order_by
+ contractAddress: order_by
created_at: order_by
+ error: order_by
id: order_by
- kyc: kyc_order_by
- roles_aggregate: roleAssignment_aggregate_order_by
- stripeCustomer: stripeCustomer_order_by
+ loyaltyCardId: order_by
+ metadata: order_by
+ organizerId: order_by
+ ownerAddress: order_by
+ status: order_by
+ tokenId: order_by
+ tokenUri: order_by
updated_at: order_by
}
-"""primary key columns input for table: account"""
-input account_pk_columns_input {
+"""primary key columns input for table: loyaltyCardNft"""
+input loyaltyCardNft_pk_columns_input {
id: uuid!
}
+"""prepend existing jsonb value of filtered columns with new jsonb value"""
+input loyaltyCardNft_prepend_input {
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: jsonb
+}
+
"""
-select columns of table "account"
+select columns of table "loyaltyCardNft"
"""
-enum account_select_column {
+enum loyaltyCardNft_select_column {
"""column name"""
- address
+ burnedTransferId
+
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
"""column name"""
created_at
+ """column name"""
+ error
+
"""column name"""
id
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ metadata
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ ownerAddress
+
+ """column name"""
+ status
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
"""column name"""
updated_at
}
"""
-input type for updating data in table "account"
+input type for updating data in table "loyaltyCardNft"
"""
-input account_set_input {
- address: String
+input loyaltyCardNft_set_input {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String
created_at: timestamptz
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
id: uuid
+
+ """
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
+ """
+ loyaltyCardId: String
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: jsonb
+
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
updated_at: timestamptz
}
+"""aggregate stddev on columns"""
+type loyaltyCardNft_stddev_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""aggregate stddev_pop on columns"""
+type loyaltyCardNft_stddev_pop_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""aggregate stddev_samp on columns"""
+type loyaltyCardNft_stddev_samp_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
"""
-Streaming cursor of the table "account"
+Streaming cursor of the table "loyaltyCardNft"
"""
-input account_stream_cursor_input {
+input loyaltyCardNft_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: account_stream_cursor_value_input!
+ initial_value: loyaltyCardNft_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input account_stream_cursor_value_input {
- address: String
+input loyaltyCardNft_stream_cursor_value_input {
+ """
+ If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.
+ """
+ burnedTransferId: uuid
+
+ """Denotes the specific blockchain or network of the loyalty card NFT."""
+ chainId: String
+
+ """
+ Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.
+ """
+ contractAddress: String
created_at: timestamptz
+
+ """
+ Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ """
+ error: String
id: uuid
+
+ """
+ A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.
+ """
+ loyaltyCardId: String
+
+ """
+ The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.
+ """
+ metadata: jsonb
+
+ """
+ A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.
+ """
+ organizerId: String
+
+ """
+ The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.
+ """
+ ownerAddress: String
+ status: nftStatus_enum
+
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+
+ """
+ The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.
+ """
+ tokenUri: String
updated_at: timestamptz
}
+"""aggregate sum on columns"""
+type loyaltyCardNft_sum_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: bigint
+}
+
"""
-update columns of table "account"
+update columns of table "loyaltyCardNft"
"""
-enum account_update_column {
+enum loyaltyCardNft_update_column {
"""column name"""
- address
+ burnedTransferId
+
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
"""column name"""
created_at
+ """column name"""
+ error
+
"""column name"""
id
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ metadata
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ ownerAddress
+
+ """column name"""
+ status
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
"""column name"""
updated_at
}
-input account_updates {
+input loyaltyCardNft_updates {
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: loyaltyCardNft_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: loyaltyCardNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: loyaltyCardNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: loyaltyCardNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: loyaltyCardNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: loyaltyCardNft_prepend_input
+
"""sets the columns of the filtered rows to the given values"""
- _set: account_set_input
+ _set: loyaltyCardNft_set_input
"""filter the rows which have to be updated"""
- where: account_bool_exp!
+ where: loyaltyCardNft_bool_exp!
}
-scalar bigint
+"""aggregate var_pop on columns"""
+type loyaltyCardNft_var_pop_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
-"""
-Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.
-"""
-input bigint_comparison_exp {
- _eq: bigint
- _gt: bigint
- _gte: bigint
- _in: [bigint!]
- _is_null: Boolean
- _lt: bigint
- _lte: bigint
- _neq: bigint
- _nin: [bigint!]
+"""aggregate var_samp on columns"""
+type loyaltyCardNft_var_samp_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
+}
+
+"""aggregate variance on columns"""
+type loyaltyCardNft_variance_fields {
+ """
+ The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.
+ """
+ tokenId: Float
}
"""
-The contentSpaceParameters model is designed to define properties specifically for content spaces. This table includes essential details like the contentSpaceId, which links to the specific content space. By centralizing this information, our system can effectively manage and control parameters tied to each content space, enhancing functionality and flexibility.
+The loyaltyCardParameters model is designed to define properties on a loyalty card, including details like the loyaltyCardId and activityWebhookId. It manages various settings and metadata related to the loyalty card, ensuring efficient and accurate management of loyalty card programs.
"""
-type contentSpaceParameters {
- contentSpace(
- """
- Defines which locales should be returned.
-
- Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: ContentSpaceWhereUniqueInput_remote_rel_contentSpaceParameterscontentSpace!
- ): ContentSpace
+type loyaltyCardParameters {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
+ """
+ activityWebhookId: String
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
"""
- contentSpaceId: String!
+ activityWebhookSigningKey: String
created_at: timestamptz!
id: uuid!
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String!
+
+ """An object relationship"""
+ loyaltyCardNftContract: loyaltyCardNftContract
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String!
- status: contentSpaceStatus_enum
+
+ """
+ Represents the current status of the loyalty card, either "DRAFT" or "PUBLISHED".
+ """
+ status: loyaltyCardStatus_enum
updated_at: timestamptz!
}
"""
-aggregated selection of "contentSpaceParameters"
+aggregated selection of "loyaltyCardParameters"
"""
-type contentSpaceParameters_aggregate {
- aggregate: contentSpaceParameters_aggregate_fields
- nodes: [contentSpaceParameters!]!
+type loyaltyCardParameters_aggregate {
+ aggregate: loyaltyCardParameters_aggregate_fields
+ nodes: [loyaltyCardParameters!]!
}
"""
-aggregate fields of "contentSpaceParameters"
+aggregate fields of "loyaltyCardParameters"
"""
-type contentSpaceParameters_aggregate_fields {
- count(columns: [contentSpaceParameters_select_column!], distinct: Boolean): Int!
- max: contentSpaceParameters_max_fields
- min: contentSpaceParameters_min_fields
+type loyaltyCardParameters_aggregate_fields {
+ count(columns: [loyaltyCardParameters_select_column!], distinct: Boolean): Int!
+ max: loyaltyCardParameters_max_fields
+ min: loyaltyCardParameters_min_fields
}
"""
-Boolean expression to filter rows from the table "contentSpaceParameters". All fields are combined with a logical 'AND'.
+Boolean expression to filter rows from the table "loyaltyCardParameters". All fields are combined with a logical 'AND'.
"""
-input contentSpaceParameters_bool_exp {
- _and: [contentSpaceParameters_bool_exp!]
- _not: contentSpaceParameters_bool_exp
- _or: [contentSpaceParameters_bool_exp!]
- contentSpaceId: String_comparison_exp
+input loyaltyCardParameters_bool_exp {
+ _and: [loyaltyCardParameters_bool_exp!]
+ _not: loyaltyCardParameters_bool_exp
+ _or: [loyaltyCardParameters_bool_exp!]
+ activityWebhookId: String_comparison_exp
+ activityWebhookSigningKey: String_comparison_exp
created_at: timestamptz_comparison_exp
id: uuid_comparison_exp
+ loyaltyCardId: String_comparison_exp
+ loyaltyCardNftContract: loyaltyCardNftContract_bool_exp
+ metadataUpdateWebhookId: String_comparison_exp
+ metadataUpdateWebhookSigningKey: String_comparison_exp
organizerId: String_comparison_exp
- status: contentSpaceStatus_enum_comparison_exp
+ status: loyaltyCardStatus_enum_comparison_exp
updated_at: timestamptz_comparison_exp
}
"""
-unique or primary key constraints on table "contentSpaceParameters"
+unique or primary key constraints on table "loyaltyCardParameters"
"""
-enum contentSpaceParameters_constraint {
+enum loyaltyCardParameters_constraint {
"""
- unique or primary key constraint on columns "contentSpaceId"
+ unique or primary key constraint on columns "activityWebhookSigningKey"
"""
- contentSpaceParameters_contentSpaceId_key
+ loyaltyCardParameters_activityWebhookSigningKey_key
+
+ """
+ unique or primary key constraint on columns "loyaltyCardId"
+ """
+ loyaltyCardParameters_loyaltyCardId_key
+
+ """
+ unique or primary key constraint on columns "metadataUpdateWebhookSigningKey"
+ """
+ loyaltyCardParameters_metadataUpdateWebhookSigningKey_key
"""
unique or primary key constraint on columns "id"
"""
- contentSpaceParameters_pkey
+ loyaltyCardParameters_pkey
}
"""
-input type for inserting data into table "contentSpaceParameters"
+input type for inserting data into table "loyaltyCardParameters"
"""
-input contentSpaceParameters_insert_input {
+input loyaltyCardParameters_insert_input {
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
"""
- contentSpaceId: String
+ activityWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
+ """
+ activityWebhookSigningKey: String
created_at: timestamptz
id: uuid
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String
+ loyaltyCardNftContract: loyaltyCardNftContract_obj_rel_insert_input
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String
- status: contentSpaceStatus_enum
+
+ """
+ Represents the current status of the loyalty card, either "DRAFT" or "PUBLISHED".
+ """
+ status: loyaltyCardStatus_enum
updated_at: timestamptz
}
"""aggregate max on columns"""
-type contentSpaceParameters_max_fields {
+type loyaltyCardParameters_max_fields {
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
"""
- contentSpaceId: String
+ activityWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
+ """
+ activityWebhookSigningKey: String
created_at: timestamptz
id: uuid
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String
updated_at: timestamptz
}
"""aggregate min on columns"""
-type contentSpaceParameters_min_fields {
+type loyaltyCardParameters_min_fields {
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
"""
- contentSpaceId: String
+ activityWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
+ """
+ activityWebhookSigningKey: String
created_at: timestamptz
id: uuid
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String
updated_at: timestamptz
}
"""
-response of any mutation on the table "contentSpaceParameters"
+response of any mutation on the table "loyaltyCardParameters"
"""
-type contentSpaceParameters_mutation_response {
+type loyaltyCardParameters_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [contentSpaceParameters!]!
+ returning: [loyaltyCardParameters!]!
}
"""
-on_conflict condition type for table "contentSpaceParameters"
+input type for inserting object relation for remote table "loyaltyCardParameters"
"""
-input contentSpaceParameters_on_conflict {
- constraint: contentSpaceParameters_constraint!
- update_columns: [contentSpaceParameters_update_column!]! = []
- where: contentSpaceParameters_bool_exp
+input loyaltyCardParameters_obj_rel_insert_input {
+ data: loyaltyCardParameters_insert_input!
+
+ """upsert condition"""
+ on_conflict: loyaltyCardParameters_on_conflict
}
-"""Ordering options when selecting data from "contentSpaceParameters"."""
-input contentSpaceParameters_order_by {
- contentSpaceId: order_by
+"""
+on_conflict condition type for table "loyaltyCardParameters"
+"""
+input loyaltyCardParameters_on_conflict {
+ constraint: loyaltyCardParameters_constraint!
+ update_columns: [loyaltyCardParameters_update_column!]! = []
+ where: loyaltyCardParameters_bool_exp
+}
+
+"""Ordering options when selecting data from "loyaltyCardParameters"."""
+input loyaltyCardParameters_order_by {
+ activityWebhookId: order_by
+ activityWebhookSigningKey: order_by
created_at: order_by
id: order_by
+ loyaltyCardId: order_by
+ loyaltyCardNftContract: loyaltyCardNftContract_order_by
+ metadataUpdateWebhookId: order_by
+ metadataUpdateWebhookSigningKey: order_by
organizerId: order_by
status: order_by
updated_at: order_by
}
-"""primary key columns input for table: contentSpaceParameters"""
-input contentSpaceParameters_pk_columns_input {
+"""primary key columns input for table: loyaltyCardParameters"""
+input loyaltyCardParameters_pk_columns_input {
id: uuid!
}
"""
-select columns of table "contentSpaceParameters"
+select columns of table "loyaltyCardParameters"
"""
-enum contentSpaceParameters_select_column {
+enum loyaltyCardParameters_select_column {
"""column name"""
- contentSpaceId
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
"""column name"""
created_at
@@ -10589,6 +18233,15 @@ enum contentSpaceParameters_select_column {
"""column name"""
id
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ metadataUpdateWebhookId
+
+ """column name"""
+ metadataUpdateWebhookSigningKey
+
"""column name"""
organizerId
@@ -10600,50 +18253,105 @@ enum contentSpaceParameters_select_column {
}
"""
-input type for updating data in table "contentSpaceParameters"
+input type for updating data in table "loyaltyCardParameters"
"""
-input contentSpaceParameters_set_input {
+input loyaltyCardParameters_set_input {
+ """
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
+ """
+ activityWebhookId: String
+
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
"""
- contentSpaceId: String
+ activityWebhookSigningKey: String
created_at: timestamptz
id: uuid
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String
- status: contentSpaceStatus_enum
+
+ """
+ Represents the current status of the loyalty card, either "DRAFT" or "PUBLISHED".
+ """
+ status: loyaltyCardStatus_enum
updated_at: timestamptz
}
"""
-Streaming cursor of the table "contentSpaceParameters"
+Streaming cursor of the table "loyaltyCardParameters"
"""
-input contentSpaceParameters_stream_cursor_input {
+input loyaltyCardParameters_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: contentSpaceParameters_stream_cursor_value_input!
+ initial_value: loyaltyCardParameters_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input contentSpaceParameters_stream_cursor_value_input {
+input loyaltyCardParameters_stream_cursor_value_input {
"""
- It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.
+ The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.
"""
- contentSpaceId: String
+ activityWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card activity webhook.
+ """
+ activityWebhookSigningKey: String
created_at: timestamptz
id: uuid
+
+ """
+ Unique identifier for each loyalty card, ensuring no duplicates in the system.
+ """
+ loyaltyCardId: String
+
+ """
+ The "metadataUpdateWebhookId" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.
+ """
+ metadataUpdateWebhookId: String
+
+ """
+ Unique signing key used for secure operations related to the loyalty card metadata update webhook.
+ """
+ metadataUpdateWebhookSigningKey: String
+
+ """Identifier for the organizer responsible for the loyalty card."""
organizerId: String
- status: contentSpaceStatus_enum
+
+ """
+ Represents the current status of the loyalty card, either "DRAFT" or "PUBLISHED".
+ """
+ status: loyaltyCardStatus_enum
updated_at: timestamptz
}
"""
-update columns of table "contentSpaceParameters"
+update columns of table "loyaltyCardParameters"
"""
-enum contentSpaceParameters_update_column {
+enum loyaltyCardParameters_update_column {
"""column name"""
- contentSpaceId
+ activityWebhookId
+
+ """column name"""
+ activityWebhookSigningKey
"""column name"""
created_at
@@ -10651,6 +18359,15 @@ enum contentSpaceParameters_update_column {
"""column name"""
id
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ metadataUpdateWebhookId
+
+ """column name"""
+ metadataUpdateWebhookSigningKey
+
"""column name"""
organizerId
@@ -10661,11497 +18378,12610 @@ enum contentSpaceParameters_update_column {
updated_at
}
-input contentSpaceParameters_updates {
+input loyaltyCardParameters_updates {
"""sets the columns of the filtered rows to the given values"""
- _set: contentSpaceParameters_set_input
+ _set: loyaltyCardParameters_set_input
"""filter the rows which have to be updated"""
- where: contentSpaceParameters_bool_exp!
+ where: loyaltyCardParameters_bool_exp!
}
"""
-columns and relationships of "contentSpaceStatus"
+columns and relationships of "loyaltyCardStatus"
"""
-type contentSpaceStatus {
+type loyaltyCardStatus {
value: String!
}
"""
-aggregated selection of "contentSpaceStatus"
+aggregated selection of "loyaltyCardStatus"
"""
-type contentSpaceStatus_aggregate {
- aggregate: contentSpaceStatus_aggregate_fields
- nodes: [contentSpaceStatus!]!
+type loyaltyCardStatus_aggregate {
+ aggregate: loyaltyCardStatus_aggregate_fields
+ nodes: [loyaltyCardStatus!]!
}
"""
-aggregate fields of "contentSpaceStatus"
+aggregate fields of "loyaltyCardStatus"
"""
-type contentSpaceStatus_aggregate_fields {
- count(columns: [contentSpaceStatus_select_column!], distinct: Boolean): Int!
- max: contentSpaceStatus_max_fields
- min: contentSpaceStatus_min_fields
+type loyaltyCardStatus_aggregate_fields {
+ count(columns: [loyaltyCardStatus_select_column!], distinct: Boolean): Int!
+ max: loyaltyCardStatus_max_fields
+ min: loyaltyCardStatus_min_fields
}
"""
-Boolean expression to filter rows from the table "contentSpaceStatus". All fields are combined with a logical 'AND'.
+Boolean expression to filter rows from the table "loyaltyCardStatus". All fields are combined with a logical 'AND'.
"""
-input contentSpaceStatus_bool_exp {
- _and: [contentSpaceStatus_bool_exp!]
- _not: contentSpaceStatus_bool_exp
- _or: [contentSpaceStatus_bool_exp!]
+input loyaltyCardStatus_bool_exp {
+ _and: [loyaltyCardStatus_bool_exp!]
+ _not: loyaltyCardStatus_bool_exp
+ _or: [loyaltyCardStatus_bool_exp!]
value: String_comparison_exp
}
"""
-unique or primary key constraints on table "contentSpaceStatus"
+unique or primary key constraints on table "loyaltyCardStatus"
"""
-enum contentSpaceStatus_constraint {
+enum loyaltyCardStatus_constraint {
"""
unique or primary key constraint on columns "value"
"""
- contentSpaceStatus_pkey
+ loyaltyCardStatus_pkey
}
-enum contentSpaceStatus_enum {
+enum loyaltyCardStatus_enum {
DRAFT
PUBLISHED
}
"""
-Boolean expression to compare columns of type "contentSpaceStatus_enum". All fields are combined with logical 'AND'.
+Boolean expression to compare columns of type "loyaltyCardStatus_enum". All fields are combined with logical 'AND'.
"""
-input contentSpaceStatus_enum_comparison_exp {
- _eq: contentSpaceStatus_enum
- _in: [contentSpaceStatus_enum!]
+input loyaltyCardStatus_enum_comparison_exp {
+ _eq: loyaltyCardStatus_enum
+ _in: [loyaltyCardStatus_enum!]
_is_null: Boolean
- _neq: contentSpaceStatus_enum
- _nin: [contentSpaceStatus_enum!]
+ _neq: loyaltyCardStatus_enum
+ _nin: [loyaltyCardStatus_enum!]
}
"""
-input type for inserting data into table "contentSpaceStatus"
+input type for inserting data into table "loyaltyCardStatus"
"""
-input contentSpaceStatus_insert_input {
+input loyaltyCardStatus_insert_input {
value: String
}
"""aggregate max on columns"""
-type contentSpaceStatus_max_fields {
+type loyaltyCardStatus_max_fields {
value: String
}
"""aggregate min on columns"""
-type contentSpaceStatus_min_fields {
+type loyaltyCardStatus_min_fields {
value: String
}
"""
-response of any mutation on the table "contentSpaceStatus"
+response of any mutation on the table "loyaltyCardStatus"
"""
-type contentSpaceStatus_mutation_response {
+type loyaltyCardStatus_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [contentSpaceStatus!]!
+ returning: [loyaltyCardStatus!]!
}
"""
-on_conflict condition type for table "contentSpaceStatus"
+on_conflict condition type for table "loyaltyCardStatus"
"""
-input contentSpaceStatus_on_conflict {
- constraint: contentSpaceStatus_constraint!
- update_columns: [contentSpaceStatus_update_column!]! = []
- where: contentSpaceStatus_bool_exp
+input loyaltyCardStatus_on_conflict {
+ constraint: loyaltyCardStatus_constraint!
+ update_columns: [loyaltyCardStatus_update_column!]! = []
+ where: loyaltyCardStatus_bool_exp
}
-"""Ordering options when selecting data from "contentSpaceStatus"."""
-input contentSpaceStatus_order_by {
+"""Ordering options when selecting data from "loyaltyCardStatus"."""
+input loyaltyCardStatus_order_by {
value: order_by
}
-"""primary key columns input for table: contentSpaceStatus"""
-input contentSpaceStatus_pk_columns_input {
+"""primary key columns input for table: loyaltyCardStatus"""
+input loyaltyCardStatus_pk_columns_input {
value: String!
}
"""
-select columns of table "contentSpaceStatus"
+select columns of table "loyaltyCardStatus"
"""
-enum contentSpaceStatus_select_column {
+enum loyaltyCardStatus_select_column {
"""column name"""
value
}
"""
-input type for updating data in table "contentSpaceStatus"
+input type for updating data in table "loyaltyCardStatus"
"""
-input contentSpaceStatus_set_input {
+input loyaltyCardStatus_set_input {
value: String
}
"""
-Streaming cursor of the table "contentSpaceStatus"
+Streaming cursor of the table "loyaltyCardStatus"
"""
-input contentSpaceStatus_stream_cursor_input {
+input loyaltyCardStatus_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: contentSpaceStatus_stream_cursor_value_input!
+ initial_value: loyaltyCardStatus_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input contentSpaceStatus_stream_cursor_value_input {
+input loyaltyCardStatus_stream_cursor_value_input {
value: String
}
"""
-update columns of table "contentSpaceStatus"
+update columns of table "loyaltyCardStatus"
"""
-enum contentSpaceStatus_update_column {
+enum loyaltyCardStatus_update_column {
"""column name"""
value
}
-input contentSpaceStatus_updates {
+input loyaltyCardStatus_updates {
"""sets the columns of the filtered rows to the given values"""
- _set: contentSpaceStatus_set_input
+ _set: loyaltyCardStatus_set_input
"""filter the rows which have to be updated"""
- where: contentSpaceStatus_bool_exp!
+ where: loyaltyCardStatus_bool_exp!
}
"""
-Currencies code following the standard ISO 4217 (https://en.wikipedia.org/wiki/ISO_4217)
+Temporary wallet information for minters, including optional links to event passes and packs.
"""
-type currency {
- value: String!
+type minterTemporaryWallet {
+ """The blockchain address of the temporary wallet."""
+ address: String!
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz!
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String!
}
"""
-aggregated selection of "currency"
+aggregated selection of "minterTemporaryWallet"
"""
-type currency_aggregate {
- aggregate: currency_aggregate_fields
- nodes: [currency!]!
+type minterTemporaryWallet_aggregate {
+ aggregate: minterTemporaryWallet_aggregate_fields
+ nodes: [minterTemporaryWallet!]!
}
"""
-aggregate fields of "currency"
+aggregate fields of "minterTemporaryWallet"
"""
-type currency_aggregate_fields {
- count(columns: [currency_select_column!], distinct: Boolean): Int!
- max: currency_max_fields
- min: currency_min_fields
+type minterTemporaryWallet_aggregate_fields {
+ count(columns: [minterTemporaryWallet_select_column!], distinct: Boolean): Int!
+ max: minterTemporaryWallet_max_fields
+ min: minterTemporaryWallet_min_fields
}
"""
-Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'.
+Boolean expression to filter rows from the table "minterTemporaryWallet". All fields are combined with a logical 'AND'.
"""
-input currency_bool_exp {
- _and: [currency_bool_exp!]
- _not: currency_bool_exp
- _or: [currency_bool_exp!]
- value: String_comparison_exp
+input minterTemporaryWallet_bool_exp {
+ _and: [minterTemporaryWallet_bool_exp!]
+ _not: minterTemporaryWallet_bool_exp
+ _or: [minterTemporaryWallet_bool_exp!]
+ address: String_comparison_exp
+ campaignId: String_comparison_exp
+ createdAt: timestamptz_comparison_exp
+ eventPassId: String_comparison_exp
+ loyaltyCardId: String_comparison_exp
+ packId: String_comparison_exp
+ privateKey: String_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "minterTemporaryWallet"
+"""
+enum minterTemporaryWallet_constraint {
+ """
+ unique or primary key constraint on columns "address"
+ """
+ minterTemporaryWallet_pkey
+}
+
+"""
+input type for inserting data into table "minterTemporaryWallet"
+"""
+input minterTemporaryWallet_insert_input {
+ """The blockchain address of the temporary wallet."""
+ address: String
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String
+}
+
+"""aggregate max on columns"""
+type minterTemporaryWallet_max_fields {
+ """The blockchain address of the temporary wallet."""
+ address: String
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String
+}
+
+"""aggregate min on columns"""
+type minterTemporaryWallet_min_fields {
+ """The blockchain address of the temporary wallet."""
+ address: String
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String
+}
+
+"""
+response of any mutation on the table "minterTemporaryWallet"
+"""
+type minterTemporaryWallet_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [minterTemporaryWallet!]!
+}
+
+"""
+on_conflict condition type for table "minterTemporaryWallet"
+"""
+input minterTemporaryWallet_on_conflict {
+ constraint: minterTemporaryWallet_constraint!
+ update_columns: [minterTemporaryWallet_update_column!]! = []
+ where: minterTemporaryWallet_bool_exp
+}
+
+"""Ordering options when selecting data from "minterTemporaryWallet"."""
+input minterTemporaryWallet_order_by {
+ address: order_by
+ campaignId: order_by
+ createdAt: order_by
+ eventPassId: order_by
+ loyaltyCardId: order_by
+ packId: order_by
+ privateKey: order_by
+}
+
+"""primary key columns input for table: minterTemporaryWallet"""
+input minterTemporaryWallet_pk_columns_input {
+ """The blockchain address of the temporary wallet."""
+ address: String!
+}
+
+"""
+select columns of table "minterTemporaryWallet"
+"""
+enum minterTemporaryWallet_select_column {
+ """column name"""
+ address
+
+ """column name"""
+ campaignId
+
+ """column name"""
+ createdAt
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ packId
+
+ """column name"""
+ privateKey
+}
+
+"""
+input type for updating data in table "minterTemporaryWallet"
+"""
+input minterTemporaryWallet_set_input {
+ """The blockchain address of the temporary wallet."""
+ address: String
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String
+}
+
+"""
+Streaming cursor of the table "minterTemporaryWallet"
+"""
+input minterTemporaryWallet_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: minterTemporaryWallet_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input minterTemporaryWallet_stream_cursor_value_input {
+ """The blockchain address of the temporary wallet."""
+ address: String
+
+ """
+ Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.
+ """
+ campaignId: String
+
+ """The timestamp when the temporary wallet was created."""
+ createdAt: timestamptz
+
+ """Optional identifier for an event pass associated with this wallet."""
+ eventPassId: String
+
+ """
+ Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.
+ """
+ loyaltyCardId: String
+
+ """Optional identifier for a pack associated with this wallet."""
+ packId: String
+
+ """
+ The private key for the temporary wallet, necessary for signing transactions.
+ """
+ privateKey: String
+}
+
+"""
+update columns of table "minterTemporaryWallet"
+"""
+enum minterTemporaryWallet_update_column {
+ """column name"""
+ address
+
+ """column name"""
+ campaignId
+
+ """column name"""
+ createdAt
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ loyaltyCardId
+
+ """column name"""
+ packId
+
+ """column name"""
+ privateKey
+}
+
+input minterTemporaryWallet_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: minterTemporaryWallet_set_input
+
+ """filter the rows which have to be updated"""
+ where: minterTemporaryWallet_bool_exp!
}
-"""
-unique or primary key constraints on table "currency"
-"""
-enum currency_constraint {
- """
- unique or primary key constraint on columns "value"
- """
- currency_pkey
-}
+"""mutation root"""
+type mutation_root {
+ """Create one asset"""
+ createAsset(data: AssetCreateInput!): Asset
+
+ """Create one contentSpace"""
+ createContentSpace(data: ContentSpaceCreateInput!): ContentSpace
+
+ """Create one event"""
+ createEvent(data: EventCreateInput!): Event
+
+ """Create one eventPass"""
+ createEventPass(data: EventPassCreateInput!): EventPass
+
+ """Create one eventPassDelayedRevealed"""
+ createEventPassDelayedRevealed(data: EventPassDelayedRevealedCreateInput!): EventPassDelayedRevealed
+
+ """Create one loyaltyCard"""
+ createLoyaltyCard(data: LoyaltyCardCreateInput!): LoyaltyCard
+
+ """Create one organizer"""
+ createOrganizer(data: OrganizerCreateInput!): Organizer
+
+ """Create one pack"""
+ createPack(data: PackCreateInput!): Pack
+
+ """Create one scheduledRelease"""
+ createScheduledRelease(data: ScheduledReleaseCreateInput!): ScheduledRelease
+
+ """Delete one asset from _all_ existing stages. Returns deleted document."""
+ deleteAsset(
+ """Document to delete"""
+ where: AssetWhereUniqueInput!
+ ): Asset
+
+ """
+ Delete one contentSpace from _all_ existing stages. Returns deleted document.
+ """
+ deleteContentSpace(
+ """Document to delete"""
+ where: ContentSpaceWhereUniqueInput!
+ ): ContentSpace
+
+ """Delete one event from _all_ existing stages. Returns deleted document."""
+ deleteEvent(
+ """Document to delete"""
+ where: EventWhereUniqueInput!
+ ): Event
+
+ """
+ Delete one eventPass from _all_ existing stages. Returns deleted document.
+ """
+ deleteEventPass(
+ """Document to delete"""
+ where: EventPassWhereUniqueInput!
+ ): EventPass
+
+ """
+ Delete one eventPassDelayedRevealed from _all_ existing stages. Returns deleted document.
+ """
+ deleteEventPassDelayedRevealed(
+ """Document to delete"""
+ where: EventPassDelayedRevealedWhereUniqueInput!
+ ): EventPassDelayedRevealed
+
+ """
+ Delete one loyaltyCard from _all_ existing stages. Returns deleted document.
+ """
+ deleteLoyaltyCard(
+ """Document to delete"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
+ """Delete many Asset documents"""
+ deleteManyAssets(
+ """Documents to delete"""
+ where: AssetManyWhereInput
+ ): BatchPayload!
+
+ """Delete many Asset documents, return deleted documents"""
+ deleteManyAssetsConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
+
+ """Documents to delete"""
+ where: AssetManyWhereInput
+ ): AssetConnection!
+
+ """Delete many ContentSpace documents"""
+ deleteManyContentSpaces(
+ """Documents to delete"""
+ where: ContentSpaceManyWhereInput
+ ): BatchPayload!
+
+ """Delete many ContentSpace documents, return deleted documents"""
+ deleteManyContentSpacesConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
+
+ """Documents to delete"""
+ where: ContentSpaceManyWhereInput
+ ): ContentSpaceConnection!
-enum currency_enum {
- AED
- CNY
- EUR
- GBP
- QAR
- SGD
- USD
-}
+ """Delete many EventPass documents"""
+ deleteManyEventPasses(
+ """Documents to delete"""
+ where: EventPassManyWhereInput
+ ): BatchPayload!
-"""
-Boolean expression to compare columns of type "currency_enum". All fields are combined with logical 'AND'.
-"""
-input currency_enum_comparison_exp {
- _eq: currency_enum
- _in: [currency_enum!]
- _is_null: Boolean
- _neq: currency_enum
- _nin: [currency_enum!]
-}
+ """Delete many EventPass documents, return deleted documents"""
+ deleteManyEventPassesConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
-"""
-input type for inserting data into table "currency"
-"""
-input currency_insert_input {
- value: String
-}
+ """Documents to delete"""
+ where: EventPassManyWhereInput
+ ): EventPassConnection!
-"""aggregate max on columns"""
-type currency_max_fields {
- value: String
-}
+ """Delete many EventPassDelayedRevealed documents"""
+ deleteManyEventPassesDelayedRevealed(
+ """Documents to delete"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): BatchPayload!
-"""aggregate min on columns"""
-type currency_min_fields {
- value: String
-}
+ """
+ Delete many EventPassDelayedRevealed documents, return deleted documents
+ """
+ deleteManyEventPassesDelayedRevealedConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
-"""
-response of any mutation on the table "currency"
-"""
-type currency_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Documents to delete"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): EventPassDelayedRevealedConnection!
- """data from the rows affected by the mutation"""
- returning: [currency!]!
-}
+ """Delete many Event documents"""
+ deleteManyEvents(
+ """Documents to delete"""
+ where: EventManyWhereInput
+ ): BatchPayload!
-"""
-on_conflict condition type for table "currency"
-"""
-input currency_on_conflict {
- constraint: currency_constraint!
- update_columns: [currency_update_column!]! = []
- where: currency_bool_exp
-}
+ """Delete many Event documents, return deleted documents"""
+ deleteManyEventsConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
-"""Ordering options when selecting data from "currency"."""
-input currency_order_by {
- value: order_by
-}
+ """Documents to delete"""
+ where: EventManyWhereInput
+ ): EventConnection!
-"""primary key columns input for table: currency"""
-input currency_pk_columns_input {
- value: String!
-}
+ """Delete many LoyaltyCard documents"""
+ deleteManyLoyaltyCards(
+ """Documents to delete"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
-"""
-select columns of table "currency"
-"""
-enum currency_select_column {
- """column name"""
- value
-}
+ """Delete many LoyaltyCard documents, return deleted documents"""
+ deleteManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
-"""
-input type for updating data in table "currency"
-"""
-input currency_set_input {
- value: String
-}
+ """Documents to delete"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
-"""
-Streaming cursor of the table "currency"
-"""
-input currency_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: currency_stream_cursor_value_input!
+ """Delete many Organizer documents"""
+ deleteManyOrganizers(
+ """Documents to delete"""
+ where: OrganizerManyWhereInput
+ ): BatchPayload!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Delete many Organizer documents, return deleted documents"""
+ deleteManyOrganizersConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
-"""Initial value of the column from where the streaming should start"""
-input currency_stream_cursor_value_input {
- value: String
-}
+ """Documents to delete"""
+ where: OrganizerManyWhereInput
+ ): OrganizerConnection!
-"""
-update columns of table "currency"
-"""
-enum currency_update_column {
- """column name"""
- value
-}
+ """Delete many Pack documents"""
+ deleteManyPacks(
+ """Documents to delete"""
+ where: PackManyWhereInput
+ ): BatchPayload!
-input currency_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: currency_set_input
+ """Delete many Pack documents, return deleted documents"""
+ deleteManyPacksConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
- """filter the rows which have to be updated"""
- where: currency_bool_exp!
-}
+ """Documents to delete"""
+ where: PackManyWhereInput
+ ): PackConnection!
-"""ordering argument of a cursor"""
-enum cursor_ordering {
- """ascending ordering of the cursor"""
- ASC
+ """
+ Delete one organizer from _all_ existing stages. Returns deleted document.
+ """
+ deleteOrganizer(
+ """Document to delete"""
+ where: OrganizerWhereUniqueInput!
+ ): Organizer
- """descending ordering of the cursor"""
- DESC
-}
+ """Delete one pack from _all_ existing stages. Returns deleted document."""
+ deletePack(
+ """Document to delete"""
+ where: PackWhereUniqueInput!
+ ): Pack
+
+ """Delete and return scheduled operation"""
+ deleteScheduledOperation(
+ """Document to delete"""
+ where: ScheduledOperationWhereUniqueInput!
+ ): ScheduledOperation
-"""
-The eventParameters model is designed to define properties on an event involving all event passes. This table includes critical details like the eventId and activityWebhookId, which aids in monitoring and processing events or changes related to the event parameters. By centralizing this information, our system can effectively manage and control parameters tied to specific events, enhancing the overall functionality and flexibility of event handling.
-"""
-type eventParameters {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ Delete one scheduledRelease from _all_ existing stages. Returns deleted document.
"""
- activityWebhookId: String
- created_at: timestamptz!
+ deleteScheduledRelease(
+ """Document to delete"""
+ where: ScheduledReleaseWhereUniqueInput!
+ ): ScheduledRelease
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete data from the table: "account"
"""
- dateEnd: timestamp
+ delete_account(
+ """filter the rows which have to be deleted"""
+ where: account_bool_exp!
+ ): account_mutation_response
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete single row from the table: "account"
"""
- dateSaleEnd: timestamp
+ delete_account_by_pk(id: uuid!): account
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete data from the table: "apiKeyStatus"
"""
- dateSaleStart: timestamp
+ delete_apiKeyStatus(
+ """filter the rows which have to be deleted"""
+ where: apiKeyStatus_bool_exp!
+ ): apiKeyStatus_mutation_response
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete single row from the table: "apiKeyStatus"
"""
- dateStart: timestamp
- event(
+ delete_apiKeyStatus_by_pk(
"""
- Defines which locales should be returned.
-
- Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
"""
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: EventWhereUniqueInput_remote_rel_eventParametersevent!
- ): Event
- eventId: String!
-
- """An array relationship"""
- eventPassNftContracts(
- """distinct select on columns"""
- distinct_on: [eventPassNftContract_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContract_order_by!]
-
- """filter the rows returned"""
- where: eventPassNftContract_bool_exp
- ): [eventPassNftContract!]!
-
- """An aggregate relationship"""
- eventPassNftContracts_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNftContract_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContract_order_by!]
-
- """filter the rows returned"""
- where: eventPassNftContract_bool_exp
- ): eventPassNftContract_aggregate!
+ value: String!
+ ): apiKeyStatus
- """An array relationship"""
- eventPassNfts(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ """
+ delete data from the table: "apiKeyType"
+ """
+ delete_apiKeyType(
+ """filter the rows which have to be deleted"""
+ where: apiKeyType_bool_exp!
+ ): apiKeyType_mutation_response
- """limit the number of rows returned"""
- limit: Int
+ """
+ delete single row from the table: "apiKeyType"
+ """
+ delete_apiKeyType_by_pk(
+ """The type of the API key"""
+ value: String!
+ ): apiKeyType
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ delete data from the table: "contentSpaceParameters"
+ """
+ delete_contentSpaceParameters(
+ """filter the rows which have to be deleted"""
+ where: contentSpaceParameters_bool_exp!
+ ): contentSpaceParameters_mutation_response
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ """
+ delete single row from the table: "contentSpaceParameters"
+ """
+ delete_contentSpaceParameters_by_pk(id: uuid!): contentSpaceParameters
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): [eventPassNft!]!
+ """
+ delete data from the table: "contentSpaceStatus"
+ """
+ delete_contentSpaceStatus(
+ """filter the rows which have to be deleted"""
+ where: contentSpaceStatus_bool_exp!
+ ): contentSpaceStatus_mutation_response
- """An aggregate relationship"""
- eventPassNfts_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ """
+ delete single row from the table: "contentSpaceStatus"
+ """
+ delete_contentSpaceStatus_by_pk(value: String!): contentSpaceStatus
- """limit the number of rows returned"""
- limit: Int
+ """
+ delete data from the table: "currency"
+ """
+ delete_currency(
+ """filter the rows which have to be deleted"""
+ where: currency_bool_exp!
+ ): currency_mutation_response
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ delete single row from the table: "currency"
+ """
+ delete_currency_by_pk(value: String!): currency
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ """
+ delete data from the table: "eventParameters"
+ """
+ delete_eventParameters(
+ """filter the rows which have to be deleted"""
+ where: eventParameters_bool_exp!
+ ): eventParameters_mutation_response
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): eventPassNft_aggregate!
- id: uuid!
+ """
+ delete single row from the table: "eventParameters"
+ """
+ delete_eventParameters_by_pk(id: uuid!): eventParameters
"""
- A computed field, executes function "is_event_ongoing"
+ delete data from the table: "eventPassNft"
"""
- isOngoing: Boolean
+ delete_eventPassNft(
+ """filter the rows which have to be deleted"""
+ where: eventPassNft_bool_exp!
+ ): eventPassNft_mutation_response
"""
- A computed field, executes function "is_sale_ongoing"
+ delete data from the table: "eventPassNftContract"
"""
- isSaleOngoing: Boolean
- organizer(
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer!
- ): Organizer
- organizerId: String!
- signingKey: String
- status: eventStatus_enum
+ delete_eventPassNftContract(
+ """filter the rows which have to be deleted"""
+ where: eventPassNftContract_bool_exp!
+ ): eventPassNftContract_mutation_response
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete data from the table: "eventPassNftContractType"
"""
- timezone: String!
- updated_at: timestamptz!
-}
+ delete_eventPassNftContractType(
+ """filter the rows which have to be deleted"""
+ where: eventPassNftContractType_bool_exp!
+ ): eventPassNftContractType_mutation_response
-"""
-aggregated selection of "eventParameters"
-"""
-type eventParameters_aggregate {
- aggregate: eventParameters_aggregate_fields
- nodes: [eventParameters!]!
-}
+ """
+ delete single row from the table: "eventPassNftContractType"
+ """
+ delete_eventPassNftContractType_by_pk(
+ """Type name for event pass NFT contract."""
+ value: String!
+ ): eventPassNftContractType
-"""
-aggregate fields of "eventParameters"
-"""
-type eventParameters_aggregate_fields {
- count(columns: [eventParameters_select_column!], distinct: Boolean): Int!
- max: eventParameters_max_fields
- min: eventParameters_min_fields
-}
+ """
+ delete single row from the table: "eventPassNftContract"
+ """
+ delete_eventPassNftContract_by_pk(id: uuid!): eventPassNftContract
-"""
-Boolean expression to filter rows from the table "eventParameters". All fields are combined with a logical 'AND'.
-"""
-input eventParameters_bool_exp {
- _and: [eventParameters_bool_exp!]
- _not: eventParameters_bool_exp
- _or: [eventParameters_bool_exp!]
- activityWebhookId: String_comparison_exp
- created_at: timestamptz_comparison_exp
- dateEnd: timestamp_comparison_exp
- dateSaleEnd: timestamp_comparison_exp
- dateSaleStart: timestamp_comparison_exp
- dateStart: timestamp_comparison_exp
- eventId: String_comparison_exp
- eventPassNftContracts: eventPassNftContract_bool_exp
- eventPassNftContracts_aggregate: eventPassNftContract_aggregate_bool_exp
- eventPassNfts: eventPassNft_bool_exp
- eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
- id: uuid_comparison_exp
- isOngoing: Boolean_comparison_exp
- isSaleOngoing: Boolean_comparison_exp
- organizerId: String_comparison_exp
- signingKey: String_comparison_exp
- status: eventStatus_enum_comparison_exp
- timezone: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """
+ delete single row from the table: "eventPassNft"
+ """
+ delete_eventPassNft_by_pk(id: uuid!): eventPassNft
-"""
-unique or primary key constraints on table "eventParameters"
-"""
-enum eventParameters_constraint {
"""
- unique or primary key constraint on columns "eventId"
+ delete data from the table: "eventPassOrderSums"
"""
- eventParameters_eventId_key
+ delete_eventPassOrderSums(
+ """filter the rows which have to be deleted"""
+ where: eventPassOrderSums_bool_exp!
+ ): eventPassOrderSums_mutation_response
"""
- unique or primary key constraint on columns "id"
+ delete single row from the table: "eventPassOrderSums"
"""
- eventParameters_pkey
+ delete_eventPassOrderSums_by_pk(eventPassId: String!): eventPassOrderSums
"""
- unique or primary key constraint on columns "signingKey"
+ delete data from the table: "eventPassType"
"""
- eventParameters_signingKey_key
-}
+ delete_eventPassType(
+ """filter the rows which have to be deleted"""
+ where: eventPassType_bool_exp!
+ ): eventPassType_mutation_response
-"""
-input type for inserting data into table "eventParameters"
-"""
-input eventParameters_insert_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ delete single row from the table: "eventPassType"
"""
- activityWebhookId: String
- created_at: timestamptz
+ delete_eventPassType_by_pk(
+ """Type name for event pass."""
+ value: String!
+ ): eventPassType
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete data from the table: "eventPassValidationType"
"""
- dateEnd: timestamp
+ delete_eventPassValidationType(
+ """filter the rows which have to be deleted"""
+ where: eventPassValidationType_bool_exp!
+ ): eventPassValidationType_mutation_response
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete single row from the table: "eventPassValidationType"
"""
- dateSaleEnd: timestamp
+ delete_eventPassValidationType_by_pk(
+ """Type name for event pass validation."""
+ value: String!
+ ): eventPassValidationType
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete data from the table: "eventStatus"
"""
- dateSaleStart: timestamp
+ delete_eventStatus(
+ """filter the rows which have to be deleted"""
+ where: eventStatus_bool_exp!
+ ): eventStatus_mutation_response
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete single row from the table: "eventStatus"
"""
- dateStart: timestamp
- eventId: String
- eventPassNftContracts: eventPassNftContract_arr_rel_insert_input
- eventPassNfts: eventPassNft_arr_rel_insert_input
- id: uuid
- organizerId: String
- signingKey: String
- status: eventStatus_enum
+ delete_eventStatus_by_pk(value: String!): eventStatus
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete data from the table: "follow"
"""
- timezone: String
- updated_at: timestamptz
-}
+ delete_follow(
+ """filter the rows which have to be deleted"""
+ where: follow_bool_exp!
+ ): follow_mutation_response
-"""aggregate max on columns"""
-type eventParameters_max_fields {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ delete single row from the table: "follow"
"""
- activityWebhookId: String
- created_at: timestamptz
+ delete_follow_by_pk(
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid!
+
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String!
+ ): follow
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete data from the table: "kyc"
"""
- dateEnd: timestamp
+ delete_kyc(
+ """filter the rows which have to be deleted"""
+ where: kyc_bool_exp!
+ ): kyc_mutation_response
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete data from the table: "kycLevelName"
"""
- dateSaleEnd: timestamp
+ delete_kycLevelName(
+ """filter the rows which have to be deleted"""
+ where: kycLevelName_bool_exp!
+ ): kycLevelName_mutation_response
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete single row from the table: "kycLevelName"
"""
- dateSaleStart: timestamp
+ delete_kycLevelName_by_pk(
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String!
+ ): kycLevelName
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete data from the table: "kycStatus"
"""
- dateStart: timestamp
- eventId: String
- id: uuid
- organizerId: String
- signingKey: String
+ delete_kycStatus(
+ """filter the rows which have to be deleted"""
+ where: kycStatus_bool_exp!
+ ): kycStatus_mutation_response
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete single row from the table: "kycStatus"
"""
- timezone: String
- updated_at: timestamptz
-}
+ delete_kycStatus_by_pk(
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String!
+ ): kycStatus
-"""aggregate min on columns"""
-type eventParameters_min_fields {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ delete single row from the table: "kyc"
"""
- activityWebhookId: String
- created_at: timestamptz
+ delete_kyc_by_pk(
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid!
+ ): kyc
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete data from the table: "lotteryParameters"
"""
- dateEnd: timestamp
+ delete_lotteryParameters(
+ """filter the rows which have to be deleted"""
+ where: lotteryParameters_bool_exp!
+ ): lotteryParameters_mutation_response
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete single row from the table: "lotteryParameters"
"""
- dateSaleEnd: timestamp
+ delete_lotteryParameters_by_pk(id: uuid!): lotteryParameters
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete data from the table: "lotteryStatus"
"""
- dateSaleStart: timestamp
+ delete_lotteryStatus(
+ """filter the rows which have to be deleted"""
+ where: lotteryStatus_bool_exp!
+ ): lotteryStatus_mutation_response
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete single row from the table: "lotteryStatus"
"""
- dateStart: timestamp
- eventId: String
- id: uuid
- organizerId: String
- signingKey: String
+ delete_lotteryStatus_by_pk(value: String!): lotteryStatus
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete data from the table: "loyaltyCardNft"
"""
- timezone: String
- updated_at: timestamptz
-}
-
-"""
-response of any mutation on the table "eventParameters"
-"""
-type eventParameters_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
-
- """data from the rows affected by the mutation"""
- returning: [eventParameters!]!
-}
-
-"""
-input type for inserting object relation for remote table "eventParameters"
-"""
-input eventParameters_obj_rel_insert_input {
- data: eventParameters_insert_input!
-
- """upsert condition"""
- on_conflict: eventParameters_on_conflict
-}
-
-"""
-on_conflict condition type for table "eventParameters"
-"""
-input eventParameters_on_conflict {
- constraint: eventParameters_constraint!
- update_columns: [eventParameters_update_column!]! = []
- where: eventParameters_bool_exp
-}
-
-"""Ordering options when selecting data from "eventParameters"."""
-input eventParameters_order_by {
- activityWebhookId: order_by
- created_at: order_by
- dateEnd: order_by
- dateSaleEnd: order_by
- dateSaleStart: order_by
- dateStart: order_by
- eventId: order_by
- eventPassNftContracts_aggregate: eventPassNftContract_aggregate_order_by
- eventPassNfts_aggregate: eventPassNft_aggregate_order_by
- id: order_by
- isOngoing: order_by
- isSaleOngoing: order_by
- organizerId: order_by
- signingKey: order_by
- status: order_by
- timezone: order_by
- updated_at: order_by
-}
-
-"""primary key columns input for table: eventParameters"""
-input eventParameters_pk_columns_input {
- id: uuid!
-}
-
-"""
-select columns of table "eventParameters"
-"""
-enum eventParameters_select_column {
- """column name"""
- activityWebhookId
-
- """column name"""
- created_at
-
- """column name"""
- dateEnd
-
- """column name"""
- dateSaleEnd
-
- """column name"""
- dateSaleStart
-
- """column name"""
- dateStart
-
- """column name"""
- eventId
-
- """column name"""
- id
-
- """column name"""
- organizerId
-
- """column name"""
- signingKey
-
- """column name"""
- status
-
- """column name"""
- timezone
-
- """column name"""
- updated_at
-}
+ delete_loyaltyCardNft(
+ """filter the rows which have to be deleted"""
+ where: loyaltyCardNft_bool_exp!
+ ): loyaltyCardNft_mutation_response
-"""
-input type for updating data in table "eventParameters"
-"""
-input eventParameters_set_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ delete data from the table: "loyaltyCardNftContract"
"""
- activityWebhookId: String
- created_at: timestamptz
+ delete_loyaltyCardNftContract(
+ """filter the rows which have to be deleted"""
+ where: loyaltyCardNftContract_bool_exp!
+ ): loyaltyCardNftContract_mutation_response
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete single row from the table: "loyaltyCardNftContract"
"""
- dateEnd: timestamp
+ delete_loyaltyCardNftContract_by_pk(id: uuid!): loyaltyCardNftContract
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete single row from the table: "loyaltyCardNft"
"""
- dateSaleEnd: timestamp
+ delete_loyaltyCardNft_by_pk(id: uuid!): loyaltyCardNft
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete data from the table: "loyaltyCardParameters"
"""
- dateSaleStart: timestamp
+ delete_loyaltyCardParameters(
+ """filter the rows which have to be deleted"""
+ where: loyaltyCardParameters_bool_exp!
+ ): loyaltyCardParameters_mutation_response
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete single row from the table: "loyaltyCardParameters"
"""
- dateStart: timestamp
- eventId: String
- id: uuid
- organizerId: String
- signingKey: String
- status: eventStatus_enum
+ delete_loyaltyCardParameters_by_pk(id: uuid!): loyaltyCardParameters
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete data from the table: "loyaltyCardStatus"
"""
- timezone: String
- updated_at: timestamptz
-}
-
-"""
-Streaming cursor of the table "eventParameters"
-"""
-input eventParameters_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventParameters_stream_cursor_value_input!
-
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ delete_loyaltyCardStatus(
+ """filter the rows which have to be deleted"""
+ where: loyaltyCardStatus_bool_exp!
+ ): loyaltyCardStatus_mutation_response
-"""Initial value of the column from where the streaming should start"""
-input eventParameters_stream_cursor_value_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.
+ delete single row from the table: "loyaltyCardStatus"
"""
- activityWebhookId: String
- created_at: timestamptz
+ delete_loyaltyCardStatus_by_pk(value: String!): loyaltyCardStatus
"""
- The "dateEnd" column specifies the end date and time of the event. Similar to "dateStart", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.
+ delete data from the table: "minterTemporaryWallet"
"""
- dateEnd: timestamp
+ delete_minterTemporaryWallet(
+ """filter the rows which have to be deleted"""
+ where: minterTemporaryWallet_bool_exp!
+ ): minterTemporaryWallet_mutation_response
"""
- The "dateSaleEnd" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.
+ delete single row from the table: "minterTemporaryWallet"
"""
- dateSaleEnd: timestamp
+ delete_minterTemporaryWallet_by_pk(
+ """The blockchain address of the temporary wallet."""
+ address: String!
+ ): minterTemporaryWallet
"""
- The "dateSaleStart" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.
+ delete data from the table: "nftMintPassword"
"""
- dateSaleStart: timestamp
+ delete_nftMintPassword(
+ """filter the rows which have to be deleted"""
+ where: nftMintPassword_bool_exp!
+ ): nftMintPassword_mutation_response
"""
- The "dateStart" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.
+ delete single row from the table: "nftMintPassword"
"""
- dateStart: timestamp
- eventId: String
- id: uuid
- organizerId: String
- signingKey: String
- status: eventStatus_enum
+ delete_nftMintPassword_by_pk(id: uuid!): nftMintPassword
"""
- The "timezone" column contains the timezone identifier for the event. All event-related timestamps, such as "dateStart", "dateEnd", "dateSaleStart", and "dateSaleEnd", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.
+ delete data from the table: "nftStatus"
"""
- timezone: String
- updated_at: timestamptz
-}
-
-"""
-update columns of table "eventParameters"
-"""
-enum eventParameters_update_column {
- """column name"""
- activityWebhookId
-
- """column name"""
- created_at
-
- """column name"""
- dateEnd
-
- """column name"""
- dateSaleEnd
-
- """column name"""
- dateSaleStart
-
- """column name"""
- dateStart
-
- """column name"""
- eventId
-
- """column name"""
- id
-
- """column name"""
- organizerId
-
- """column name"""
- signingKey
-
- """column name"""
- status
-
- """column name"""
- timezone
-
- """column name"""
- updated_at
-}
-
-input eventParameters_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventParameters_set_input
-
- """filter the rows which have to be updated"""
- where: eventParameters_bool_exp!
-}
-
-"""
-columns and relationships of "eventPassNft"
-"""
-type eventPassNft {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String!
+ delete_nftStatus(
+ """filter the rows which have to be deleted"""
+ where: nftStatus_bool_exp!
+ ): nftStatus_mutation_response
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ delete single row from the table: "nftStatus"
"""
- contractAddress: String!
- created_at: timestamptz!
+ delete_nftStatus_by_pk(value: String!): nftStatus
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ delete data from the table: "nftTransfer"
"""
- currentOwnerAddress: String
+ delete_nftTransfer(
+ """filter the rows which have to be deleted"""
+ where: nftTransfer_bool_exp!
+ ): nftTransfer_mutation_response
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ delete single row from the table: "nftTransfer"
"""
- error: String
- event(
- """
- Defines which locales should be returned.
-
- Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: EventWhereUniqueInput_remote_rel_eventPassNftevent!
- ): Event
-
- """A reference to the event associated with the event pass NFT"""
- eventId: String!
-
- """An object relationship"""
- eventParameters: eventParameters
- eventPass(
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
-
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String!
-
- """An object relationship"""
- eventPassNftContract: eventPassNftContract
- id: uuid!
-
- """Indicates whether the event pass NFT has been delivered to the owner."""
- isDelivered: Boolean!
+ delete_nftTransfer_by_pk(id: uuid!): nftTransfer
"""
- Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ delete data from the table: "order"
"""
- isRevealed: Boolean!
-
- """An object relationship"""
- lastNftTransfer: nftTransfer
+ delete_order(
+ """filter the rows which have to be deleted"""
+ where: order_bool_exp!
+ ): order_mutation_response
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ delete data from the table: "orderStatus"
"""
- lastNftTransferId: uuid
+ delete_orderStatus(
+ """filter the rows which have to be deleted"""
+ where: orderStatus_bool_exp!
+ ): orderStatus_mutation_response
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ delete single row from the table: "orderStatus"
"""
- metadata(
- """JSON select path"""
- path: String
- ): jsonb!
-
- """An array relationship"""
- nftTransfers(
- """distinct select on columns"""
- distinct_on: [nftTransfer_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [nftTransfer_order_by!]
-
- """filter the rows returned"""
- where: nftTransfer_bool_exp
- ): [nftTransfer!]!
-
- """An aggregate relationship"""
- nftTransfers_aggregate(
- """distinct select on columns"""
- distinct_on: [nftTransfer_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [nftTransfer_order_by!]
-
- """filter the rows returned"""
- where: nftTransfer_bool_exp
- ): nftTransfer_aggregate!
- organizer(
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer!
- ): Organizer
-
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String!
-
- """An object relationship"""
- packAmount: passAmount
- packId: String
-
- """An object relationship"""
- packPricing: passPricing
-
- """An object relationship"""
- passAmount: passAmount
+ delete_orderStatus_by_pk(value: String!): orderStatus
- """An object relationship"""
- passPricing: passPricing
+ """
+ delete single row from the table: "order"
+ """
+ delete_order_by_pk(id: uuid!): order
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ delete data from the table: "packEventPassNft"
"""
- tokenId: bigint!
+ delete_packEventPassNft(
+ """filter the rows which have to be deleted"""
+ where: packEventPassNft_bool_exp!
+ ): packEventPassNft_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ delete single row from the table: "packEventPassNft"
"""
- tokenUri: String
- updated_at: timestamptz!
-}
+ delete_packEventPassNft_by_pk(
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid!
+
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid!
+ ): packEventPassNft
-"""
-The eventPassNftContract model is designed to store metadata associated with NFT contracts linked to specific event passes. This table captures critical, immutable details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. Additionally, this table includes information specific to each event pass, like the eventPassId and organizerId, allowing for precise management and interaction with NFT contracts tied to individual event passes. By centralizing this information, our system can effectively manage, reference, and interact with NFT contracts related to particular event passes.
-"""
-type eventPassNftContract {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ delete data from the table: "packNftContract"
"""
- chainId: String!
+ delete_packNftContract(
+ """filter the rows which have to be deleted"""
+ where: packNftContract_bool_exp!
+ ): packNftContract_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ delete data from the table: "packNftContractEventPass"
"""
- contractAddress: String!
- created_at: timestamptz!
+ delete_packNftContractEventPass(
+ """filter the rows which have to be deleted"""
+ where: packNftContractEventPass_bool_exp!
+ ): packNftContractEventPass_mutation_response
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ delete single row from the table: "packNftContractEventPass"
"""
- eventId: String!
- eventPass(
+ delete_packNftContractEventPass_by_pk(
"""
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
"""
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
- eventPassId: String!
-
- """An array relationship"""
- eventPassNfts(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
-
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): [eventPassNft!]!
-
- """An aggregate relationship"""
- eventPassNfts_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ eventPassId: String!
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): eventPassNft_aggregate!
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid!
+ ): packNftContractEventPass
- """An object relationship"""
- eventPassOrderSums: eventPassOrderSums
- id: uuid!
+ """
+ delete single row from the table: "packNftContract"
+ """
+ delete_packNftContract_by_pk(
+ """Unique identifier for each pack NFT contract."""
+ id: uuid!
+ ): packNftContract
- """Flag indicating whether the event pass NFT is airdropped."""
- isAirdrop: Boolean!
+ """
+ delete data from the table: "packNftSupply"
+ """
+ delete_packNftSupply(
+ """filter the rows which have to be deleted"""
+ where: packNftSupply_bool_exp!
+ ): packNftSupply_mutation_response
"""
- Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ delete single row from the table: "packNftSupply"
"""
- isDelayedRevealed: Boolean!
+ delete_packNftSupply_by_pk(id: uuid!): packNftSupply
- """An array relationship"""
- orders(
- """distinct select on columns"""
- distinct_on: [order_select_column!]
+ """
+ delete data from the table: "packOrderSums"
+ """
+ delete_packOrderSums(
+ """filter the rows which have to be deleted"""
+ where: packOrderSums_bool_exp!
+ ): packOrderSums_mutation_response
- """limit the number of rows returned"""
- limit: Int
+ """
+ delete single row from the table: "packOrderSums"
+ """
+ delete_packOrderSums_by_pk(packId: String!): packOrderSums
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ delete data from the table: "passAmount"
+ """
+ delete_passAmount(
+ """filter the rows which have to be deleted"""
+ where: passAmount_bool_exp!
+ ): passAmount_mutation_response
- """sort the rows by one or more columns"""
- order_by: [order_order_by!]
+ """
+ delete single row from the table: "passAmount"
+ """
+ delete_passAmount_by_pk(id: uuid!): passAmount
- """filter the rows returned"""
- where: order_bool_exp
- ): [order!]!
+ """
+ delete data from the table: "passPricing"
+ """
+ delete_passPricing(
+ """filter the rows which have to be deleted"""
+ where: passPricing_bool_exp!
+ ): passPricing_mutation_response
- """An aggregate relationship"""
- orders_aggregate(
- """distinct select on columns"""
- distinct_on: [order_select_column!]
+ """
+ delete single row from the table: "passPricing"
+ """
+ delete_passPricing_by_pk(id: uuid!): passPricing
- """limit the number of rows returned"""
- limit: Int
+ """
+ delete data from the table: "pendingOrder"
+ """
+ delete_pendingOrder(
+ """filter the rows which have to be deleted"""
+ where: pendingOrder_bool_exp!
+ ): pendingOrder_mutation_response
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ delete single row from the table: "pendingOrder"
+ """
+ delete_pendingOrder_by_pk(id: uuid!): pendingOrder
- """sort the rows by one or more columns"""
- order_by: [order_order_by!]
+ """
+ delete data from the table: "publishableApiKey"
+ """
+ delete_publishableApiKey(
+ """filter the rows which have to be deleted"""
+ where: publishableApiKey_bool_exp!
+ ): publishableApiKey_mutation_response
- """filter the rows returned"""
- where: order_bool_exp
- ): order_aggregate!
- organizerId: String!
+ """
+ delete single row from the table: "publishableApiKey"
+ """
+ delete_publishableApiKey_by_pk(id: uuid!): publishableApiKey
- """An object relationship"""
- passAmount: passAmount
+ """
+ delete data from the table: "roleAssignment"
+ """
+ delete_roleAssignment(
+ """filter the rows which have to be deleted"""
+ where: roleAssignment_bool_exp!
+ ): roleAssignment_mutation_response
- """An object relationship"""
- passPricing: passPricing
+ """
+ delete data from the table: "roles"
+ """
+ delete_roles(
+ """filter the rows which have to be deleted"""
+ where: roles_bool_exp!
+ ): roles_mutation_response
- """Type of the pass, referencing the eventPassType table."""
- passType: eventPassType_enum!
+ """
+ delete single row from the table: "roles"
+ """
+ delete_roles_by_pk(
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String!
+ ): roles
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ delete data from the table: "secretApiKey"
"""
- password: String
+ delete_secretApiKey(
+ """filter the rows which have to be deleted"""
+ where: secretApiKey_bool_exp!
+ ): secretApiKey_mutation_response
- """Type of the event pass NFT contract."""
- type: eventPassNftContractType_enum!
- updated_at: timestamptz!
+ """
+ delete single row from the table: "secretApiKey"
+ """
+ delete_secretApiKey_by_pk(id: uuid!): secretApiKey
"""
- The method of validation for the event pass, referencing the eventPassValidationType table.
+ delete data from the table: "shopifyCampaignParameters"
"""
- validationType: eventPassValidationType_enum!
-}
+ delete_shopifyCampaignParameters(
+ """filter the rows which have to be deleted"""
+ where: shopifyCampaignParameters_bool_exp!
+ ): shopifyCampaignParameters_mutation_response
-"""Contract types representing the nature of the event pass NFT contract."""
-type eventPassNftContractType {
- """Type name for event pass NFT contract."""
- value: String!
-}
+ """
+ delete single row from the table: "shopifyCampaignParameters"
+ """
+ delete_shopifyCampaignParameters_by_pk(
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String!
+ ): shopifyCampaignParameters
-"""
-aggregated selection of "eventPassNftContractType"
-"""
-type eventPassNftContractType_aggregate {
- aggregate: eventPassNftContractType_aggregate_fields
- nodes: [eventPassNftContractType!]!
-}
+ """
+ delete data from the table: "shopifyCampaignStatus"
+ """
+ delete_shopifyCampaignStatus(
+ """filter the rows which have to be deleted"""
+ where: shopifyCampaignStatus_bool_exp!
+ ): shopifyCampaignStatus_mutation_response
-"""
-aggregate fields of "eventPassNftContractType"
-"""
-type eventPassNftContractType_aggregate_fields {
- count(columns: [eventPassNftContractType_select_column!], distinct: Boolean): Int!
- max: eventPassNftContractType_max_fields
- min: eventPassNftContractType_min_fields
-}
+ """
+ delete single row from the table: "shopifyCampaignStatus"
+ """
+ delete_shopifyCampaignStatus_by_pk(value: String!): shopifyCampaignStatus
-"""
-Boolean expression to filter rows from the table "eventPassNftContractType". All fields are combined with a logical 'AND'.
-"""
-input eventPassNftContractType_bool_exp {
- _and: [eventPassNftContractType_bool_exp!]
- _not: eventPassNftContractType_bool_exp
- _or: [eventPassNftContractType_bool_exp!]
- value: String_comparison_exp
-}
+ """
+ delete data from the table: "shopifyCustomer"
+ """
+ delete_shopifyCustomer(
+ """filter the rows which have to be deleted"""
+ where: shopifyCustomer_bool_exp!
+ ): shopifyCustomer_mutation_response
-"""
-unique or primary key constraints on table "eventPassNftContractType"
-"""
-enum eventPassNftContractType_constraint {
"""
- unique or primary key constraint on columns "value"
+ delete data from the table: "shopifyDomain"
"""
- eventPassNftContractType_pkey
-}
+ delete_shopifyDomain(
+ """filter the rows which have to be deleted"""
+ where: shopifyDomain_bool_exp!
+ ): shopifyDomain_mutation_response
-enum eventPassNftContractType_enum {
- delayed_reveal
- normal
-}
+ """
+ delete single row from the table: "shopifyDomain"
+ """
+ delete_shopifyDomain_by_pk(
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String!
+ ): shopifyDomain
-"""
-Boolean expression to compare columns of type "eventPassNftContractType_enum". All fields are combined with logical 'AND'.
-"""
-input eventPassNftContractType_enum_comparison_exp {
- _eq: eventPassNftContractType_enum
- _in: [eventPassNftContractType_enum!]
- _is_null: Boolean
- _neq: eventPassNftContractType_enum
- _nin: [eventPassNftContractType_enum!]
-}
+ """
+ delete data from the table: "stampNft"
+ """
+ delete_stampNft(
+ """filter the rows which have to be deleted"""
+ where: stampNft_bool_exp!
+ ): stampNft_mutation_response
-"""
-input type for inserting data into table "eventPassNftContractType"
-"""
-input eventPassNftContractType_insert_input {
- """Type name for event pass NFT contract."""
- value: String
-}
+ """
+ delete data from the table: "stampNftContract"
+ """
+ delete_stampNftContract(
+ """filter the rows which have to be deleted"""
+ where: stampNftContract_bool_exp!
+ ): stampNftContract_mutation_response
-"""aggregate max on columns"""
-type eventPassNftContractType_max_fields {
- """Type name for event pass NFT contract."""
- value: String
-}
+ """
+ delete data from the table: "stampNftContractType"
+ """
+ delete_stampNftContractType(
+ """filter the rows which have to be deleted"""
+ where: stampNftContractType_bool_exp!
+ ): stampNftContractType_mutation_response
-"""aggregate min on columns"""
-type eventPassNftContractType_min_fields {
- """Type name for event pass NFT contract."""
- value: String
-}
+ """
+ delete single row from the table: "stampNftContractType"
+ """
+ delete_stampNftContractType_by_pk(
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String!
+ ): stampNftContractType
-"""
-response of any mutation on the table "eventPassNftContractType"
-"""
-type eventPassNftContractType_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ delete single row from the table: "stampNftContract"
+ """
+ delete_stampNftContract_by_pk(
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String!
- """data from the rows affected by the mutation"""
- returning: [eventPassNftContractType!]!
-}
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String!
+ ): stampNftContract
-"""
-on_conflict condition type for table "eventPassNftContractType"
-"""
-input eventPassNftContractType_on_conflict {
- constraint: eventPassNftContractType_constraint!
- update_columns: [eventPassNftContractType_update_column!]! = []
- where: eventPassNftContractType_bool_exp
-}
+ """
+ delete data from the table: "stampNftSupply"
+ """
+ delete_stampNftSupply(
+ """filter the rows which have to be deleted"""
+ where: stampNftSupply_bool_exp!
+ ): stampNftSupply_mutation_response
-"""Ordering options when selecting data from "eventPassNftContractType"."""
-input eventPassNftContractType_order_by {
- value: order_by
-}
+ """
+ delete single row from the table: "stampNftSupply"
+ """
+ delete_stampNftSupply_by_pk(id: uuid!): stampNftSupply
-"""primary key columns input for table: eventPassNftContractType"""
-input eventPassNftContractType_pk_columns_input {
- """Type name for event pass NFT contract."""
- value: String!
-}
+ """
+ delete single row from the table: "stampNft"
+ """
+ delete_stampNft_by_pk(id: uuid!): stampNft
-"""
-select columns of table "eventPassNftContractType"
-"""
-enum eventPassNftContractType_select_column {
- """column name"""
- value
-}
+ """
+ delete data from the table: "stripeCheckoutSession"
+ """
+ delete_stripeCheckoutSession(
+ """filter the rows which have to be deleted"""
+ where: stripeCheckoutSession_bool_exp!
+ ): stripeCheckoutSession_mutation_response
-"""
-input type for updating data in table "eventPassNftContractType"
-"""
-input eventPassNftContractType_set_input {
- """Type name for event pass NFT contract."""
- value: String
-}
+ """
+ delete data from the table: "stripeCheckoutSessionType"
+ """
+ delete_stripeCheckoutSessionType(
+ """filter the rows which have to be deleted"""
+ where: stripeCheckoutSessionType_bool_exp!
+ ): stripeCheckoutSessionType_mutation_response
-"""
-Streaming cursor of the table "eventPassNftContractType"
-"""
-input eventPassNftContractType_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassNftContractType_stream_cursor_value_input!
+ """
+ delete single row from the table: "stripeCheckoutSessionType"
+ """
+ delete_stripeCheckoutSessionType_by_pk(
+ """Type value."""
+ value: String!
+ ): stripeCheckoutSessionType
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ delete single row from the table: "stripeCheckoutSession"
+ """
+ delete_stripeCheckoutSession_by_pk(
+ """Unique identifier for the Stripe Checkout Session."""
+ stripeSessionId: String!
+ ): stripeCheckoutSession
-"""Initial value of the column from where the streaming should start"""
-input eventPassNftContractType_stream_cursor_value_input {
- """Type name for event pass NFT contract."""
- value: String
-}
+ """
+ delete data from the table: "stripeCustomer"
+ """
+ delete_stripeCustomer(
+ """filter the rows which have to be deleted"""
+ where: stripeCustomer_bool_exp!
+ ): stripeCustomer_mutation_response
-"""
-update columns of table "eventPassNftContractType"
-"""
-enum eventPassNftContractType_update_column {
- """column name"""
- value
-}
+ """
+ delete single row from the table: "stripeCustomer"
+ """
+ delete_stripeCustomer_by_pk(
+ """Unique identifier for the Stripe Customer."""
+ stripeCustomerId: String!
+ ): stripeCustomer
-input eventPassNftContractType_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContractType_set_input
+ """
+ delete data from the table: "timezone"
+ """
+ delete_timezone(
+ """filter the rows which have to be deleted"""
+ where: timezone_bool_exp!
+ ): timezone_mutation_response
- """filter the rows which have to be updated"""
- where: eventPassNftContractType_bool_exp!
-}
+ """
+ delete single row from the table: "timezone"
+ """
+ delete_timezone_by_pk(value: String!): timezone
-"""
-aggregated selection of "eventPassNftContract"
-"""
-type eventPassNftContract_aggregate {
- aggregate: eventPassNftContract_aggregate_fields
- nodes: [eventPassNftContract!]!
-}
+ """
+ insert data into the table: "account"
+ """
+ insert_account(
+ """the rows to be inserted"""
+ objects: [account_insert_input!]!
-input eventPassNftContract_aggregate_bool_exp {
- bool_and: eventPassNftContract_aggregate_bool_exp_bool_and
- bool_or: eventPassNftContract_aggregate_bool_exp_bool_or
- count: eventPassNftContract_aggregate_bool_exp_count
-}
+ """upsert condition"""
+ on_conflict: account_on_conflict
+ ): account_mutation_response
-input eventPassNftContract_aggregate_bool_exp_bool_and {
- arguments: eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns!
- distinct: Boolean
- filter: eventPassNftContract_bool_exp
- predicate: Boolean_comparison_exp!
-}
+ """
+ insert a single row into the table: "account"
+ """
+ insert_account_one(
+ """the row to be inserted"""
+ object: account_insert_input!
-input eventPassNftContract_aggregate_bool_exp_bool_or {
- arguments: eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns!
- distinct: Boolean
- filter: eventPassNftContract_bool_exp
- predicate: Boolean_comparison_exp!
-}
+ """upsert condition"""
+ on_conflict: account_on_conflict
+ ): account
-input eventPassNftContract_aggregate_bool_exp_count {
- arguments: [eventPassNftContract_select_column!]
- distinct: Boolean
- filter: eventPassNftContract_bool_exp
- predicate: Int_comparison_exp!
-}
+ """
+ insert data into the table: "apiKeyStatus"
+ """
+ insert_apiKeyStatus(
+ """the rows to be inserted"""
+ objects: [apiKeyStatus_insert_input!]!
-"""
-aggregate fields of "eventPassNftContract"
-"""
-type eventPassNftContract_aggregate_fields {
- count(columns: [eventPassNftContract_select_column!], distinct: Boolean): Int!
- max: eventPassNftContract_max_fields
- min: eventPassNftContract_min_fields
-}
+ """upsert condition"""
+ on_conflict: apiKeyStatus_on_conflict
+ ): apiKeyStatus_mutation_response
-"""
-order by aggregate values of table "eventPassNftContract"
-"""
-input eventPassNftContract_aggregate_order_by {
- count: order_by
- max: eventPassNftContract_max_order_by
- min: eventPassNftContract_min_order_by
-}
+ """
+ insert a single row into the table: "apiKeyStatus"
+ """
+ insert_apiKeyStatus_one(
+ """the row to be inserted"""
+ object: apiKeyStatus_insert_input!
-"""
-input type for inserting array relation for remote table "eventPassNftContract"
-"""
-input eventPassNftContract_arr_rel_insert_input {
- data: [eventPassNftContract_insert_input!]!
+ """upsert condition"""
+ on_conflict: apiKeyStatus_on_conflict
+ ): apiKeyStatus
- """upsert condition"""
- on_conflict: eventPassNftContract_on_conflict
-}
+ """
+ insert data into the table: "apiKeyType"
+ """
+ insert_apiKeyType(
+ """the rows to be inserted"""
+ objects: [apiKeyType_insert_input!]!
-"""
-Boolean expression to filter rows from the table "eventPassNftContract". All fields are combined with a logical 'AND'.
-"""
-input eventPassNftContract_bool_exp {
- _and: [eventPassNftContract_bool_exp!]
- _not: eventPassNftContract_bool_exp
- _or: [eventPassNftContract_bool_exp!]
- chainId: String_comparison_exp
- contractAddress: String_comparison_exp
- created_at: timestamptz_comparison_exp
- eventId: String_comparison_exp
- eventPassId: String_comparison_exp
- eventPassNfts: eventPassNft_bool_exp
- eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
- eventPassOrderSums: eventPassOrderSums_bool_exp
- id: uuid_comparison_exp
- isAirdrop: Boolean_comparison_exp
- isDelayedRevealed: Boolean_comparison_exp
- orders: order_bool_exp
- orders_aggregate: order_aggregate_bool_exp
- organizerId: String_comparison_exp
- passAmount: passAmount_bool_exp
- passPricing: passPricing_bool_exp
- passType: eventPassType_enum_comparison_exp
- password: String_comparison_exp
- type: eventPassNftContractType_enum_comparison_exp
- updated_at: timestamptz_comparison_exp
- validationType: eventPassValidationType_enum_comparison_exp
-}
+ """upsert condition"""
+ on_conflict: apiKeyType_on_conflict
+ ): apiKeyType_mutation_response
-"""
-unique or primary key constraints on table "eventPassNftContract"
-"""
-enum eventPassNftContract_constraint {
"""
- unique or primary key constraint on columns "eventPassId"
+ insert a single row into the table: "apiKeyType"
"""
- eventPassId_unique
+ insert_apiKeyType_one(
+ """the row to be inserted"""
+ object: apiKeyType_insert_input!
+
+ """upsert condition"""
+ on_conflict: apiKeyType_on_conflict
+ ): apiKeyType
"""
- unique or primary key constraint on columns "chainId", "contractAddress"
+ insert data into the table: "contentSpaceParameters"
"""
- eventPassNftContract_contractAddress_chainId_key
+ insert_contentSpaceParameters(
+ """the rows to be inserted"""
+ objects: [contentSpaceParameters_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: contentSpaceParameters_on_conflict
+ ): contentSpaceParameters_mutation_response
"""
- unique or primary key constraint on columns "id"
+ insert a single row into the table: "contentSpaceParameters"
"""
- eventPassNftContract_pkey
-}
+ insert_contentSpaceParameters_one(
+ """the row to be inserted"""
+ object: contentSpaceParameters_insert_input!
+
+ """upsert condition"""
+ on_conflict: contentSpaceParameters_on_conflict
+ ): contentSpaceParameters
-"""
-input type for inserting data into table "eventPassNftContract"
-"""
-input eventPassNftContract_insert_input {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert data into the table: "contentSpaceStatus"
"""
- chainId: String
+ insert_contentSpaceStatus(
+ """the rows to be inserted"""
+ objects: [contentSpaceStatus_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: contentSpaceStatus_on_conflict
+ ): contentSpaceStatus_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "contentSpaceStatus"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_contentSpaceStatus_one(
+ """the row to be inserted"""
+ object: contentSpaceStatus_insert_input!
+
+ """upsert condition"""
+ on_conflict: contentSpaceStatus_on_conflict
+ ): contentSpaceStatus
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "currency"
"""
- eventId: String
- eventPassId: String
- eventPassNfts: eventPassNft_arr_rel_insert_input
- eventPassOrderSums: eventPassOrderSums_obj_rel_insert_input
- id: uuid
+ insert_currency(
+ """the rows to be inserted"""
+ objects: [currency_insert_input!]!
- """Flag indicating whether the event pass NFT is airdropped."""
- isAirdrop: Boolean
+ """upsert condition"""
+ on_conflict: currency_on_conflict
+ ): currency_mutation_response
"""
- Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ insert a single row into the table: "currency"
"""
- isDelayedRevealed: Boolean
- orders: order_arr_rel_insert_input
- organizerId: String
- passAmount: passAmount_obj_rel_insert_input
- passPricing: passPricing_obj_rel_insert_input
+ insert_currency_one(
+ """the row to be inserted"""
+ object: currency_insert_input!
- """Type of the pass, referencing the eventPassType table."""
- passType: eventPassType_enum
+ """upsert condition"""
+ on_conflict: currency_on_conflict
+ ): currency
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert data into the table: "eventParameters"
"""
- password: String
+ insert_eventParameters(
+ """the rows to be inserted"""
+ objects: [eventParameters_insert_input!]!
- """Type of the event pass NFT contract."""
- type: eventPassNftContractType_enum
- updated_at: timestamptz
+ """upsert condition"""
+ on_conflict: eventParameters_on_conflict
+ ): eventParameters_mutation_response
"""
- The method of validation for the event pass, referencing the eventPassValidationType table.
+ insert a single row into the table: "eventParameters"
"""
- validationType: eventPassValidationType_enum
-}
+ insert_eventParameters_one(
+ """the row to be inserted"""
+ object: eventParameters_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventParameters_on_conflict
+ ): eventParameters
-"""aggregate max on columns"""
-type eventPassNftContract_max_fields {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert data into the table: "eventPassNft"
"""
- chainId: String
+ insert_eventPassNft(
+ """the rows to be inserted"""
+ objects: [eventPassNft_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassNft_on_conflict
+ ): eventPassNft_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert data into the table: "eventPassNftContract"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_eventPassNftContract(
+ """the rows to be inserted"""
+ objects: [eventPassNftContract_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContract_on_conflict
+ ): eventPassNftContract_mutation_response
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "eventPassNftContractType"
"""
- eventId: String
- eventPassId: String
- id: uuid
- organizerId: String
+ insert_eventPassNftContractType(
+ """the rows to be inserted"""
+ objects: [eventPassNftContractType_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContractType_on_conflict
+ ): eventPassNftContractType_mutation_response
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert a single row into the table: "eventPassNftContractType"
"""
- password: String
- updated_at: timestamptz
-}
+ insert_eventPassNftContractType_one(
+ """the row to be inserted"""
+ object: eventPassNftContractType_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContractType_on_conflict
+ ): eventPassNftContractType
-"""
-order by max() on columns of table "eventPassNftContract"
-"""
-input eventPassNftContract_max_order_by {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert a single row into the table: "eventPassNftContract"
"""
- chainId: order_by
+ insert_eventPassNftContract_one(
+ """the row to be inserted"""
+ object: eventPassNftContract_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassNftContract_on_conflict
+ ): eventPassNftContract
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "eventPassNft"
"""
- contractAddress: order_by
- created_at: order_by
+ insert_eventPassNft_one(
+ """the row to be inserted"""
+ object: eventPassNft_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassNft_on_conflict
+ ): eventPassNft
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "eventPassOrderSums"
"""
- eventId: order_by
- eventPassId: order_by
- id: order_by
- organizerId: order_by
+ insert_eventPassOrderSums(
+ """the rows to be inserted"""
+ objects: [eventPassOrderSums_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassOrderSums_on_conflict
+ ): eventPassOrderSums_mutation_response
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert a single row into the table: "eventPassOrderSums"
"""
- password: order_by
- updated_at: order_by
-}
+ insert_eventPassOrderSums_one(
+ """the row to be inserted"""
+ object: eventPassOrderSums_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassOrderSums_on_conflict
+ ): eventPassOrderSums
-"""aggregate min on columns"""
-type eventPassNftContract_min_fields {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert data into the table: "eventPassType"
"""
- chainId: String
+ insert_eventPassType(
+ """the rows to be inserted"""
+ objects: [eventPassType_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassType_on_conflict
+ ): eventPassType_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "eventPassType"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_eventPassType_one(
+ """the row to be inserted"""
+ object: eventPassType_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassType_on_conflict
+ ): eventPassType
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "eventPassValidationType"
"""
- eventId: String
- eventPassId: String
- id: uuid
- organizerId: String
+ insert_eventPassValidationType(
+ """the rows to be inserted"""
+ objects: [eventPassValidationType_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventPassValidationType_on_conflict
+ ): eventPassValidationType_mutation_response
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert a single row into the table: "eventPassValidationType"
"""
- password: String
- updated_at: timestamptz
-}
+ insert_eventPassValidationType_one(
+ """the row to be inserted"""
+ object: eventPassValidationType_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventPassValidationType_on_conflict
+ ): eventPassValidationType
-"""
-order by min() on columns of table "eventPassNftContract"
-"""
-input eventPassNftContract_min_order_by {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert data into the table: "eventStatus"
"""
- chainId: order_by
+ insert_eventStatus(
+ """the rows to be inserted"""
+ objects: [eventStatus_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: eventStatus_on_conflict
+ ): eventStatus_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "eventStatus"
"""
- contractAddress: order_by
- created_at: order_by
+ insert_eventStatus_one(
+ """the row to be inserted"""
+ object: eventStatus_insert_input!
+
+ """upsert condition"""
+ on_conflict: eventStatus_on_conflict
+ ): eventStatus
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "follow"
"""
- eventId: order_by
- eventPassId: order_by
- id: order_by
- organizerId: order_by
+ insert_follow(
+ """the rows to be inserted"""
+ objects: [follow_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: follow_on_conflict
+ ): follow_mutation_response
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert a single row into the table: "follow"
"""
- password: order_by
- updated_at: order_by
-}
+ insert_follow_one(
+ """the row to be inserted"""
+ object: follow_insert_input!
-"""
-response of any mutation on the table "eventPassNftContract"
-"""
-type eventPassNftContract_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """upsert condition"""
+ on_conflict: follow_on_conflict
+ ): follow
- """data from the rows affected by the mutation"""
- returning: [eventPassNftContract!]!
-}
+ """
+ insert data into the table: "kyc"
+ """
+ insert_kyc(
+ """the rows to be inserted"""
+ objects: [kyc_insert_input!]!
-"""
-input type for inserting object relation for remote table "eventPassNftContract"
-"""
-input eventPassNftContract_obj_rel_insert_input {
- data: eventPassNftContract_insert_input!
+ """upsert condition"""
+ on_conflict: kyc_on_conflict
+ ): kyc_mutation_response
- """upsert condition"""
- on_conflict: eventPassNftContract_on_conflict
-}
+ """
+ insert data into the table: "kycLevelName"
+ """
+ insert_kycLevelName(
+ """the rows to be inserted"""
+ objects: [kycLevelName_insert_input!]!
-"""
-on_conflict condition type for table "eventPassNftContract"
-"""
-input eventPassNftContract_on_conflict {
- constraint: eventPassNftContract_constraint!
- update_columns: [eventPassNftContract_update_column!]! = []
- where: eventPassNftContract_bool_exp
-}
+ """upsert condition"""
+ on_conflict: kycLevelName_on_conflict
+ ): kycLevelName_mutation_response
-"""Ordering options when selecting data from "eventPassNftContract"."""
-input eventPassNftContract_order_by {
- chainId: order_by
- contractAddress: order_by
- created_at: order_by
- eventId: order_by
- eventPassId: order_by
- eventPassNfts_aggregate: eventPassNft_aggregate_order_by
- eventPassOrderSums: eventPassOrderSums_order_by
- id: order_by
- isAirdrop: order_by
- isDelayedRevealed: order_by
- orders_aggregate: order_aggregate_order_by
- organizerId: order_by
- passAmount: passAmount_order_by
- passPricing: passPricing_order_by
- passType: order_by
- password: order_by
- type: order_by
- updated_at: order_by
- validationType: order_by
-}
+ """
+ insert a single row into the table: "kycLevelName"
+ """
+ insert_kycLevelName_one(
+ """the row to be inserted"""
+ object: kycLevelName_insert_input!
-"""primary key columns input for table: eventPassNftContract"""
-input eventPassNftContract_pk_columns_input {
- id: uuid!
-}
+ """upsert condition"""
+ on_conflict: kycLevelName_on_conflict
+ ): kycLevelName
-"""
-select columns of table "eventPassNftContract"
-"""
-enum eventPassNftContract_select_column {
- """column name"""
- chainId
+ """
+ insert data into the table: "kycStatus"
+ """
+ insert_kycStatus(
+ """the rows to be inserted"""
+ objects: [kycStatus_insert_input!]!
- """column name"""
- contractAddress
+ """upsert condition"""
+ on_conflict: kycStatus_on_conflict
+ ): kycStatus_mutation_response
- """column name"""
- created_at
+ """
+ insert a single row into the table: "kycStatus"
+ """
+ insert_kycStatus_one(
+ """the row to be inserted"""
+ object: kycStatus_insert_input!
- """column name"""
- eventId
+ """upsert condition"""
+ on_conflict: kycStatus_on_conflict
+ ): kycStatus
- """column name"""
- eventPassId
+ """
+ insert a single row into the table: "kyc"
+ """
+ insert_kyc_one(
+ """the row to be inserted"""
+ object: kyc_insert_input!
- """column name"""
- id
+ """upsert condition"""
+ on_conflict: kyc_on_conflict
+ ): kyc
- """column name"""
- isAirdrop
+ """
+ insert data into the table: "lotteryParameters"
+ """
+ insert_lotteryParameters(
+ """the rows to be inserted"""
+ objects: [lotteryParameters_insert_input!]!
- """column name"""
- isDelayedRevealed
+ """upsert condition"""
+ on_conflict: lotteryParameters_on_conflict
+ ): lotteryParameters_mutation_response
- """column name"""
- organizerId
+ """
+ insert a single row into the table: "lotteryParameters"
+ """
+ insert_lotteryParameters_one(
+ """the row to be inserted"""
+ object: lotteryParameters_insert_input!
- """column name"""
- passType
+ """upsert condition"""
+ on_conflict: lotteryParameters_on_conflict
+ ): lotteryParameters
- """column name"""
- password
+ """
+ insert data into the table: "lotteryStatus"
+ """
+ insert_lotteryStatus(
+ """the rows to be inserted"""
+ objects: [lotteryStatus_insert_input!]!
- """column name"""
- type
+ """upsert condition"""
+ on_conflict: lotteryStatus_on_conflict
+ ): lotteryStatus_mutation_response
- """column name"""
- updated_at
+ """
+ insert a single row into the table: "lotteryStatus"
+ """
+ insert_lotteryStatus_one(
+ """the row to be inserted"""
+ object: lotteryStatus_insert_input!
- """column name"""
- validationType
-}
+ """upsert condition"""
+ on_conflict: lotteryStatus_on_conflict
+ ): lotteryStatus
-"""
-select "eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns" columns of table "eventPassNftContract"
-"""
-enum eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns {
- """column name"""
- isAirdrop
+ """
+ insert data into the table: "loyaltyCardNft"
+ """
+ insert_loyaltyCardNft(
+ """the rows to be inserted"""
+ objects: [loyaltyCardNft_insert_input!]!
- """column name"""
- isDelayedRevealed
-}
+ """upsert condition"""
+ on_conflict: loyaltyCardNft_on_conflict
+ ): loyaltyCardNft_mutation_response
-"""
-select "eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns" columns of table "eventPassNftContract"
-"""
-enum eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns {
- """column name"""
- isAirdrop
+ """
+ insert data into the table: "loyaltyCardNftContract"
+ """
+ insert_loyaltyCardNftContract(
+ """the rows to be inserted"""
+ objects: [loyaltyCardNftContract_insert_input!]!
- """column name"""
- isDelayedRevealed
-}
+ """upsert condition"""
+ on_conflict: loyaltyCardNftContract_on_conflict
+ ): loyaltyCardNftContract_mutation_response
-"""
-input type for updating data in table "eventPassNftContract"
-"""
-input eventPassNftContract_set_input {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert a single row into the table: "loyaltyCardNftContract"
"""
- chainId: String
+ insert_loyaltyCardNftContract_one(
+ """the row to be inserted"""
+ object: loyaltyCardNftContract_insert_input!
+
+ """upsert condition"""
+ on_conflict: loyaltyCardNftContract_on_conflict
+ ): loyaltyCardNftContract
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "loyaltyCardNft"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_loyaltyCardNft_one(
+ """the row to be inserted"""
+ object: loyaltyCardNft_insert_input!
+
+ """upsert condition"""
+ on_conflict: loyaltyCardNft_on_conflict
+ ): loyaltyCardNft
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "loyaltyCardParameters"
"""
- eventId: String
- eventPassId: String
- id: uuid
+ insert_loyaltyCardParameters(
+ """the rows to be inserted"""
+ objects: [loyaltyCardParameters_insert_input!]!
- """Flag indicating whether the event pass NFT is airdropped."""
- isAirdrop: Boolean
+ """upsert condition"""
+ on_conflict: loyaltyCardParameters_on_conflict
+ ): loyaltyCardParameters_mutation_response
"""
- Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ insert a single row into the table: "loyaltyCardParameters"
"""
- isDelayedRevealed: Boolean
- organizerId: String
+ insert_loyaltyCardParameters_one(
+ """the row to be inserted"""
+ object: loyaltyCardParameters_insert_input!
- """Type of the pass, referencing the eventPassType table."""
- passType: eventPassType_enum
+ """upsert condition"""
+ on_conflict: loyaltyCardParameters_on_conflict
+ ): loyaltyCardParameters
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert data into the table: "loyaltyCardStatus"
"""
- password: String
+ insert_loyaltyCardStatus(
+ """the rows to be inserted"""
+ objects: [loyaltyCardStatus_insert_input!]!
- """Type of the event pass NFT contract."""
- type: eventPassNftContractType_enum
- updated_at: timestamptz
+ """upsert condition"""
+ on_conflict: loyaltyCardStatus_on_conflict
+ ): loyaltyCardStatus_mutation_response
"""
- The method of validation for the event pass, referencing the eventPassValidationType table.
+ insert a single row into the table: "loyaltyCardStatus"
"""
- validationType: eventPassValidationType_enum
-}
-
-"""
-Streaming cursor of the table "eventPassNftContract"
-"""
-input eventPassNftContract_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassNftContract_stream_cursor_value_input!
+ insert_loyaltyCardStatus_one(
+ """the row to be inserted"""
+ object: loyaltyCardStatus_insert_input!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """upsert condition"""
+ on_conflict: loyaltyCardStatus_on_conflict
+ ): loyaltyCardStatus
-"""Initial value of the column from where the streaming should start"""
-input eventPassNftContract_stream_cursor_value_input {
"""
- Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.
+ insert data into the table: "minterTemporaryWallet"
"""
- chainId: String
+ insert_minterTemporaryWallet(
+ """the rows to be inserted"""
+ objects: [minterTemporaryWallet_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: minterTemporaryWallet_on_conflict
+ ): minterTemporaryWallet_mutation_response
"""
- Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.
+ insert a single row into the table: "minterTemporaryWallet"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_minterTemporaryWallet_one(
+ """the row to be inserted"""
+ object: minterTemporaryWallet_insert_input!
+
+ """upsert condition"""
+ on_conflict: minterTemporaryWallet_on_conflict
+ ): minterTemporaryWallet
"""
- A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.
+ insert data into the table: "nftMintPassword"
"""
- eventId: String
- eventPassId: String
- id: uuid
+ insert_nftMintPassword(
+ """the rows to be inserted"""
+ objects: [nftMintPassword_insert_input!]!
- """Flag indicating whether the event pass NFT is airdropped."""
- isAirdrop: Boolean
+ """upsert condition"""
+ on_conflict: nftMintPassword_on_conflict
+ ): nftMintPassword_mutation_response
"""
- Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.
+ insert a single row into the table: "nftMintPassword"
"""
- isDelayedRevealed: Boolean
- organizerId: String
+ insert_nftMintPassword_one(
+ """the row to be inserted"""
+ object: nftMintPassword_insert_input!
- """Type of the pass, referencing the eventPassType table."""
- passType: eventPassType_enum
+ """upsert condition"""
+ on_conflict: nftMintPassword_on_conflict
+ ): nftMintPassword
"""
- Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.
+ insert data into the table: "nftStatus"
"""
- password: String
+ insert_nftStatus(
+ """the rows to be inserted"""
+ objects: [nftStatus_insert_input!]!
- """Type of the event pass NFT contract."""
- type: eventPassNftContractType_enum
- updated_at: timestamptz
+ """upsert condition"""
+ on_conflict: nftStatus_on_conflict
+ ): nftStatus_mutation_response
"""
- The method of validation for the event pass, referencing the eventPassValidationType table.
+ insert a single row into the table: "nftStatus"
"""
- validationType: eventPassValidationType_enum
-}
+ insert_nftStatus_one(
+ """the row to be inserted"""
+ object: nftStatus_insert_input!
-"""
-update columns of table "eventPassNftContract"
-"""
-enum eventPassNftContract_update_column {
- """column name"""
- chainId
+ """upsert condition"""
+ on_conflict: nftStatus_on_conflict
+ ): nftStatus
- """column name"""
- contractAddress
+ """
+ insert data into the table: "nftTransfer"
+ """
+ insert_nftTransfer(
+ """the rows to be inserted"""
+ objects: [nftTransfer_insert_input!]!
- """column name"""
- created_at
+ """upsert condition"""
+ on_conflict: nftTransfer_on_conflict
+ ): nftTransfer_mutation_response
- """column name"""
- eventId
+ """
+ insert a single row into the table: "nftTransfer"
+ """
+ insert_nftTransfer_one(
+ """the row to be inserted"""
+ object: nftTransfer_insert_input!
- """column name"""
- eventPassId
+ """upsert condition"""
+ on_conflict: nftTransfer_on_conflict
+ ): nftTransfer
- """column name"""
- id
+ """
+ insert data into the table: "order"
+ """
+ insert_order(
+ """the rows to be inserted"""
+ objects: [order_insert_input!]!
- """column name"""
- isAirdrop
+ """upsert condition"""
+ on_conflict: order_on_conflict
+ ): order_mutation_response
- """column name"""
- isDelayedRevealed
+ """
+ insert data into the table: "orderStatus"
+ """
+ insert_orderStatus(
+ """the rows to be inserted"""
+ objects: [orderStatus_insert_input!]!
- """column name"""
- organizerId
+ """upsert condition"""
+ on_conflict: orderStatus_on_conflict
+ ): orderStatus_mutation_response
- """column name"""
- passType
+ """
+ insert a single row into the table: "orderStatus"
+ """
+ insert_orderStatus_one(
+ """the row to be inserted"""
+ object: orderStatus_insert_input!
- """column name"""
- password
+ """upsert condition"""
+ on_conflict: orderStatus_on_conflict
+ ): orderStatus
- """column name"""
- type
+ """
+ insert a single row into the table: "order"
+ """
+ insert_order_one(
+ """the row to be inserted"""
+ object: order_insert_input!
- """column name"""
- updated_at
+ """upsert condition"""
+ on_conflict: order_on_conflict
+ ): order
- """column name"""
- validationType
-}
+ """
+ insert data into the table: "packEventPassNft"
+ """
+ insert_packEventPassNft(
+ """the rows to be inserted"""
+ objects: [packEventPassNft_insert_input!]!
-input eventPassNftContract_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContract_set_input
+ """upsert condition"""
+ on_conflict: packEventPassNft_on_conflict
+ ): packEventPassNft_mutation_response
- """filter the rows which have to be updated"""
- where: eventPassNftContract_bool_exp!
-}
+ """
+ insert a single row into the table: "packEventPassNft"
+ """
+ insert_packEventPassNft_one(
+ """the row to be inserted"""
+ object: packEventPassNft_insert_input!
-"""
-aggregated selection of "eventPassNft"
-"""
-type eventPassNft_aggregate {
- aggregate: eventPassNft_aggregate_fields
- nodes: [eventPassNft!]!
-}
+ """upsert condition"""
+ on_conflict: packEventPassNft_on_conflict
+ ): packEventPassNft
-input eventPassNft_aggregate_bool_exp {
- bool_and: eventPassNft_aggregate_bool_exp_bool_and
- bool_or: eventPassNft_aggregate_bool_exp_bool_or
- count: eventPassNft_aggregate_bool_exp_count
-}
+ """
+ insert data into the table: "packNftContract"
+ """
+ insert_packNftContract(
+ """the rows to be inserted"""
+ objects: [packNftContract_insert_input!]!
-input eventPassNft_aggregate_bool_exp_bool_and {
- arguments: eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns!
- distinct: Boolean
- filter: eventPassNft_bool_exp
- predicate: Boolean_comparison_exp!
-}
+ """upsert condition"""
+ on_conflict: packNftContract_on_conflict
+ ): packNftContract_mutation_response
-input eventPassNft_aggregate_bool_exp_bool_or {
- arguments: eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns!
- distinct: Boolean
- filter: eventPassNft_bool_exp
- predicate: Boolean_comparison_exp!
-}
+ """
+ insert data into the table: "packNftContractEventPass"
+ """
+ insert_packNftContractEventPass(
+ """the rows to be inserted"""
+ objects: [packNftContractEventPass_insert_input!]!
-input eventPassNft_aggregate_bool_exp_count {
- arguments: [eventPassNft_select_column!]
- distinct: Boolean
- filter: eventPassNft_bool_exp
- predicate: Int_comparison_exp!
-}
+ """upsert condition"""
+ on_conflict: packNftContractEventPass_on_conflict
+ ): packNftContractEventPass_mutation_response
-"""
-aggregate fields of "eventPassNft"
-"""
-type eventPassNft_aggregate_fields {
- avg: eventPassNft_avg_fields
- count(columns: [eventPassNft_select_column!], distinct: Boolean): Int!
- max: eventPassNft_max_fields
- min: eventPassNft_min_fields
- stddev: eventPassNft_stddev_fields
- stddev_pop: eventPassNft_stddev_pop_fields
- stddev_samp: eventPassNft_stddev_samp_fields
- sum: eventPassNft_sum_fields
- var_pop: eventPassNft_var_pop_fields
- var_samp: eventPassNft_var_samp_fields
- variance: eventPassNft_variance_fields
-}
+ """
+ insert a single row into the table: "packNftContractEventPass"
+ """
+ insert_packNftContractEventPass_one(
+ """the row to be inserted"""
+ object: packNftContractEventPass_insert_input!
-"""
-order by aggregate values of table "eventPassNft"
-"""
-input eventPassNft_aggregate_order_by {
- avg: eventPassNft_avg_order_by
- count: order_by
- max: eventPassNft_max_order_by
- min: eventPassNft_min_order_by
- stddev: eventPassNft_stddev_order_by
- stddev_pop: eventPassNft_stddev_pop_order_by
- stddev_samp: eventPassNft_stddev_samp_order_by
- sum: eventPassNft_sum_order_by
- var_pop: eventPassNft_var_pop_order_by
- var_samp: eventPassNft_var_samp_order_by
- variance: eventPassNft_variance_order_by
-}
+ """upsert condition"""
+ on_conflict: packNftContractEventPass_on_conflict
+ ): packNftContractEventPass
-"""append existing jsonb value of filtered columns with new jsonb value"""
-input eventPassNft_append_input {
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ insert a single row into the table: "packNftContract"
"""
- metadata: jsonb
-}
+ insert_packNftContract_one(
+ """the row to be inserted"""
+ object: packNftContract_insert_input!
-"""
-input type for inserting array relation for remote table "eventPassNft"
-"""
-input eventPassNft_arr_rel_insert_input {
- data: [eventPassNft_insert_input!]!
+ """upsert condition"""
+ on_conflict: packNftContract_on_conflict
+ ): packNftContract
- """upsert condition"""
- on_conflict: eventPassNft_on_conflict
-}
+ """
+ insert data into the table: "packNftSupply"
+ """
+ insert_packNftSupply(
+ """the rows to be inserted"""
+ objects: [packNftSupply_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: packNftSupply_on_conflict
+ ): packNftSupply_mutation_response
-"""aggregate avg on columns"""
-type eventPassNft_avg_fields {
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert a single row into the table: "packNftSupply"
"""
- tokenId: Float
-}
+ insert_packNftSupply_one(
+ """the row to be inserted"""
+ object: packNftSupply_insert_input!
+
+ """upsert condition"""
+ on_conflict: packNftSupply_on_conflict
+ ): packNftSupply
-"""
-order by avg() on columns of table "eventPassNft"
-"""
-input eventPassNft_avg_order_by {
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "packOrderSums"
"""
- tokenId: order_by
-}
+ insert_packOrderSums(
+ """the rows to be inserted"""
+ objects: [packOrderSums_insert_input!]!
-"""
-Boolean expression to filter rows from the table "eventPassNft". All fields are combined with a logical 'AND'.
-"""
-input eventPassNft_bool_exp {
- _and: [eventPassNft_bool_exp!]
- _not: eventPassNft_bool_exp
- _or: [eventPassNft_bool_exp!]
- chainId: String_comparison_exp
- contractAddress: String_comparison_exp
- created_at: timestamptz_comparison_exp
- currentOwnerAddress: String_comparison_exp
- error: String_comparison_exp
- eventId: String_comparison_exp
- eventParameters: eventParameters_bool_exp
- eventPassId: String_comparison_exp
- eventPassNftContract: eventPassNftContract_bool_exp
- id: uuid_comparison_exp
- isDelivered: Boolean_comparison_exp
- isRevealed: Boolean_comparison_exp
- lastNftTransfer: nftTransfer_bool_exp
- lastNftTransferId: uuid_comparison_exp
- metadata: jsonb_comparison_exp
- nftTransfers: nftTransfer_bool_exp
- nftTransfers_aggregate: nftTransfer_aggregate_bool_exp
- organizerId: String_comparison_exp
- packAmount: passAmount_bool_exp
- packId: String_comparison_exp
- packPricing: passPricing_bool_exp
- passAmount: passAmount_bool_exp
- passPricing: passPricing_bool_exp
- tokenId: bigint_comparison_exp
- tokenUri: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """upsert condition"""
+ on_conflict: packOrderSums_on_conflict
+ ): packOrderSums_mutation_response
-"""
-unique or primary key constraints on table "eventPassNft"
-"""
-enum eventPassNft_constraint {
"""
- unique or primary key constraint on columns "chainId", "contractAddress", "tokenId"
+ insert a single row into the table: "packOrderSums"
"""
- eventPassNft_contractAddress_tokenId_chainId_key
+ insert_packOrderSums_one(
+ """the row to be inserted"""
+ object: packOrderSums_insert_input!
+
+ """upsert condition"""
+ on_conflict: packOrderSums_on_conflict
+ ): packOrderSums
"""
- unique or primary key constraint on columns "id"
+ insert data into the table: "passAmount"
"""
- eventPassNft_pkey
-}
+ insert_passAmount(
+ """the rows to be inserted"""
+ objects: [passAmount_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: passAmount_on_conflict
+ ): passAmount_mutation_response
-"""
-delete the field or element with specified path (for JSON arrays, negative integers count from the end)
-"""
-input eventPassNft_delete_at_path_input {
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ insert a single row into the table: "passAmount"
"""
- metadata: [String!]
-}
+ insert_passAmount_one(
+ """the row to be inserted"""
+ object: passAmount_insert_input!
+
+ """upsert condition"""
+ on_conflict: passAmount_on_conflict
+ ): passAmount
-"""
-delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
-"""
-input eventPassNft_delete_elem_input {
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ insert data into the table: "passPricing"
"""
- metadata: Int
-}
+ insert_passPricing(
+ """the rows to be inserted"""
+ objects: [passPricing_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: passPricing_on_conflict
+ ): passPricing_mutation_response
-"""
-delete key/value pair or string element. key/value pairs are matched based on their key value
-"""
-input eventPassNft_delete_key_input {
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ insert a single row into the table: "passPricing"
"""
- metadata: String
-}
+ insert_passPricing_one(
+ """the row to be inserted"""
+ object: passPricing_insert_input!
+
+ """upsert condition"""
+ on_conflict: passPricing_on_conflict
+ ): passPricing
-"""
-input type for incrementing numeric columns in table "eventPassNft"
-"""
-input eventPassNft_inc_input {
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "pendingOrder"
"""
- tokenId: bigint
-}
+ insert_pendingOrder(
+ """the rows to be inserted"""
+ objects: [pendingOrder_insert_input!]!
-"""
-input type for inserting data into table "eventPassNft"
-"""
-input eventPassNft_insert_input {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String
+ """upsert condition"""
+ on_conflict: pendingOrder_on_conflict
+ ): pendingOrder_mutation_response
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ insert a single row into the table: "pendingOrder"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_pendingOrder_one(
+ """the row to be inserted"""
+ object: pendingOrder_insert_input!
+
+ """upsert condition"""
+ on_conflict: pendingOrder_on_conflict
+ ): pendingOrder
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ insert data into the table: "publishableApiKey"
"""
- currentOwnerAddress: String
+ insert_publishableApiKey(
+ """the rows to be inserted"""
+ objects: [publishableApiKey_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: publishableApiKey_on_conflict
+ ): publishableApiKey_mutation_response
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ insert a single row into the table: "publishableApiKey"
"""
- error: String
+ insert_publishableApiKey_one(
+ """the row to be inserted"""
+ object: publishableApiKey_insert_input!
- """A reference to the event associated with the event pass NFT"""
- eventId: String
- eventParameters: eventParameters_obj_rel_insert_input
+ """upsert condition"""
+ on_conflict: publishableApiKey_on_conflict
+ ): publishableApiKey
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String
- eventPassNftContract: eventPassNftContract_obj_rel_insert_input
- id: uuid
+ """
+ insert data into the table: "roleAssignment"
+ """
+ insert_roleAssignment(
+ """the rows to be inserted"""
+ objects: [roleAssignment_insert_input!]!
- """Indicates whether the event pass NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """upsert condition"""
+ on_conflict: roleAssignment_on_conflict
+ ): roleAssignment_mutation_response
"""
- Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
+ insert a single row into the table: "roleAssignment"
"""
- isRevealed: Boolean
- lastNftTransfer: nftTransfer_obj_rel_insert_input
+ insert_roleAssignment_one(
+ """the row to be inserted"""
+ object: roleAssignment_insert_input!
+
+ """upsert condition"""
+ on_conflict: roleAssignment_on_conflict
+ ): roleAssignment
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ insert data into the table: "roles"
"""
- lastNftTransferId: uuid
+ insert_roles(
+ """the rows to be inserted"""
+ objects: [roles_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: roles_on_conflict
+ ): roles_mutation_response
"""
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
+ insert a single row into the table: "roles"
"""
- metadata: jsonb
- nftTransfers: nftTransfer_arr_rel_insert_input
+ insert_roles_one(
+ """the row to be inserted"""
+ object: roles_insert_input!
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String
- packAmount: passAmount_obj_rel_insert_input
- packId: String
- packPricing: passPricing_obj_rel_insert_input
- passAmount: passAmount_obj_rel_insert_input
- passPricing: passPricing_obj_rel_insert_input
+ """upsert condition"""
+ on_conflict: roles_on_conflict
+ ): roles
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "secretApiKey"
"""
- tokenId: bigint
+ insert_secretApiKey(
+ """the rows to be inserted"""
+ objects: [secretApiKey_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: secretApiKey_on_conflict
+ ): secretApiKey_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ insert a single row into the table: "secretApiKey"
"""
- tokenUri: String
- updated_at: timestamptz
-}
+ insert_secretApiKey_one(
+ """the row to be inserted"""
+ object: secretApiKey_insert_input!
-"""aggregate max on columns"""
-type eventPassNft_max_fields {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String
+ """upsert condition"""
+ on_conflict: secretApiKey_on_conflict
+ ): secretApiKey
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ insert data into the table: "shopifyCampaignParameters"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_shopifyCampaignParameters(
+ """the rows to be inserted"""
+ objects: [shopifyCampaignParameters_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: shopifyCampaignParameters_on_conflict
+ ): shopifyCampaignParameters_mutation_response
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ insert a single row into the table: "shopifyCampaignParameters"
"""
- currentOwnerAddress: String
+ insert_shopifyCampaignParameters_one(
+ """the row to be inserted"""
+ object: shopifyCampaignParameters_insert_input!
+
+ """upsert condition"""
+ on_conflict: shopifyCampaignParameters_on_conflict
+ ): shopifyCampaignParameters
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ insert data into the table: "shopifyCampaignStatus"
"""
- error: String
-
- """A reference to the event associated with the event pass NFT"""
- eventId: String
+ insert_shopifyCampaignStatus(
+ """the rows to be inserted"""
+ objects: [shopifyCampaignStatus_insert_input!]!
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String
- id: uuid
+ """upsert condition"""
+ on_conflict: shopifyCampaignStatus_on_conflict
+ ): shopifyCampaignStatus_mutation_response
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ insert a single row into the table: "shopifyCampaignStatus"
"""
- lastNftTransferId: uuid
+ insert_shopifyCampaignStatus_one(
+ """the row to be inserted"""
+ object: shopifyCampaignStatus_insert_input!
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String
- packId: String
+ """upsert condition"""
+ on_conflict: shopifyCampaignStatus_on_conflict
+ ): shopifyCampaignStatus
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "shopifyCustomer"
"""
- tokenId: bigint
+ insert_shopifyCustomer(
+ """the rows to be inserted"""
+ objects: [shopifyCustomer_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: shopifyCustomer_on_conflict
+ ): shopifyCustomer_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ insert a single row into the table: "shopifyCustomer"
"""
- tokenUri: String
- updated_at: timestamptz
-}
+ insert_shopifyCustomer_one(
+ """the row to be inserted"""
+ object: shopifyCustomer_insert_input!
-"""
-order by max() on columns of table "eventPassNft"
-"""
-input eventPassNft_max_order_by {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: order_by
+ """upsert condition"""
+ on_conflict: shopifyCustomer_on_conflict
+ ): shopifyCustomer
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ insert data into the table: "shopifyDomain"
"""
- contractAddress: order_by
- created_at: order_by
+ insert_shopifyDomain(
+ """the rows to be inserted"""
+ objects: [shopifyDomain_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: shopifyDomain_on_conflict
+ ): shopifyDomain_mutation_response
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ insert a single row into the table: "shopifyDomain"
"""
- currentOwnerAddress: order_by
+ insert_shopifyDomain_one(
+ """the row to be inserted"""
+ object: shopifyDomain_insert_input!
+
+ """upsert condition"""
+ on_conflict: shopifyDomain_on_conflict
+ ): shopifyDomain
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ insert data into the table: "stampNft"
"""
- error: order_by
-
- """A reference to the event associated with the event pass NFT"""
- eventId: order_by
+ insert_stampNft(
+ """the rows to be inserted"""
+ objects: [stampNft_insert_input!]!
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: order_by
- id: order_by
+ """upsert condition"""
+ on_conflict: stampNft_on_conflict
+ ): stampNft_mutation_response
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ insert data into the table: "stampNftContract"
"""
- lastNftTransferId: order_by
+ insert_stampNftContract(
+ """the rows to be inserted"""
+ objects: [stampNftContract_insert_input!]!
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: order_by
- packId: order_by
+ """upsert condition"""
+ on_conflict: stampNftContract_on_conflict
+ ): stampNftContract_mutation_response
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "stampNftContractType"
"""
- tokenId: order_by
+ insert_stampNftContractType(
+ """the rows to be inserted"""
+ objects: [stampNftContractType_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: stampNftContractType_on_conflict
+ ): stampNftContractType_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ insert a single row into the table: "stampNftContractType"
"""
- tokenUri: order_by
- updated_at: order_by
-}
+ insert_stampNftContractType_one(
+ """the row to be inserted"""
+ object: stampNftContractType_insert_input!
-"""aggregate min on columns"""
-type eventPassNft_min_fields {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String
+ """upsert condition"""
+ on_conflict: stampNftContractType_on_conflict
+ ): stampNftContractType
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ insert a single row into the table: "stampNftContract"
"""
- contractAddress: String
- created_at: timestamptz
+ insert_stampNftContract_one(
+ """the row to be inserted"""
+ object: stampNftContract_insert_input!
+
+ """upsert condition"""
+ on_conflict: stampNftContract_on_conflict
+ ): stampNftContract
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ insert data into the table: "stampNftSupply"
"""
- currentOwnerAddress: String
+ insert_stampNftSupply(
+ """the rows to be inserted"""
+ objects: [stampNftSupply_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: stampNftSupply_on_conflict
+ ): stampNftSupply_mutation_response
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ insert a single row into the table: "stampNftSupply"
"""
- error: String
-
- """A reference to the event associated with the event pass NFT"""
- eventId: String
+ insert_stampNftSupply_one(
+ """the row to be inserted"""
+ object: stampNftSupply_insert_input!
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String
- id: uuid
+ """upsert condition"""
+ on_conflict: stampNftSupply_on_conflict
+ ): stampNftSupply
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ insert a single row into the table: "stampNft"
"""
- lastNftTransferId: uuid
+ insert_stampNft_one(
+ """the row to be inserted"""
+ object: stampNft_insert_input!
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String
- packId: String
+ """upsert condition"""
+ on_conflict: stampNft_on_conflict
+ ): stampNft
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "stripeCheckoutSession"
"""
- tokenId: bigint
+ insert_stripeCheckoutSession(
+ """the rows to be inserted"""
+ objects: [stripeCheckoutSession_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: stripeCheckoutSession_on_conflict
+ ): stripeCheckoutSession_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ insert data into the table: "stripeCheckoutSessionType"
"""
- tokenUri: String
- updated_at: timestamptz
-}
+ insert_stripeCheckoutSessionType(
+ """the rows to be inserted"""
+ objects: [stripeCheckoutSessionType_insert_input!]!
-"""
-order by min() on columns of table "eventPassNft"
-"""
-input eventPassNft_min_order_by {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: order_by
+ """upsert condition"""
+ on_conflict: stripeCheckoutSessionType_on_conflict
+ ): stripeCheckoutSessionType_mutation_response
"""
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ insert a single row into the table: "stripeCheckoutSessionType"
"""
- contractAddress: order_by
- created_at: order_by
+ insert_stripeCheckoutSessionType_one(
+ """the row to be inserted"""
+ object: stripeCheckoutSessionType_insert_input!
+
+ """upsert condition"""
+ on_conflict: stripeCheckoutSessionType_on_conflict
+ ): stripeCheckoutSessionType
"""
- The address currently holding the event pass NFT, allowing tracking of ownership
+ insert a single row into the table: "stripeCheckoutSession"
"""
- currentOwnerAddress: order_by
+ insert_stripeCheckoutSession_one(
+ """the row to be inserted"""
+ object: stripeCheckoutSession_insert_input!
+
+ """upsert condition"""
+ on_conflict: stripeCheckoutSession_on_conflict
+ ): stripeCheckoutSession
"""
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
+ insert data into the table: "stripeCustomer"
"""
- error: order_by
-
- """A reference to the event associated with the event pass NFT"""
- eventId: order_by
+ insert_stripeCustomer(
+ """the rows to be inserted"""
+ objects: [stripeCustomer_insert_input!]!
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: order_by
- id: order_by
+ """upsert condition"""
+ on_conflict: stripeCustomer_on_conflict
+ ): stripeCustomer_mutation_response
"""
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
+ insert a single row into the table: "stripeCustomer"
"""
- lastNftTransferId: order_by
+ insert_stripeCustomer_one(
+ """the row to be inserted"""
+ object: stripeCustomer_insert_input!
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: order_by
- packId: order_by
+ """upsert condition"""
+ on_conflict: stripeCustomer_on_conflict
+ ): stripeCustomer
"""
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
+ insert data into the table: "timezone"
"""
- tokenId: order_by
+ insert_timezone(
+ """the rows to be inserted"""
+ objects: [timezone_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: timezone_on_conflict
+ ): timezone_mutation_response
"""
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
+ insert a single row into the table: "timezone"
"""
- tokenUri: order_by
- updated_at: order_by
-}
+ insert_timezone_one(
+ """the row to be inserted"""
+ object: timezone_insert_input!
-"""
-response of any mutation on the table "eventPassNft"
-"""
-type eventPassNft_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """upsert condition"""
+ on_conflict: timezone_on_conflict
+ ): timezone
- """data from the rows affected by the mutation"""
- returning: [eventPassNft!]!
-}
+ """Publish one asset"""
+ publishAsset(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""
-on_conflict condition type for table "eventPassNft"
-"""
-input eventPassNft_on_conflict {
- constraint: eventPassNft_constraint!
- update_columns: [eventPassNft_update_column!]! = []
- where: eventPassNft_bool_exp
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""Ordering options when selecting data from "eventPassNft"."""
-input eventPassNft_order_by {
- chainId: order_by
- contractAddress: order_by
- created_at: order_by
- currentOwnerAddress: order_by
- error: order_by
- eventId: order_by
- eventParameters: eventParameters_order_by
- eventPassId: order_by
- eventPassNftContract: eventPassNftContract_order_by
- id: order_by
- isDelivered: order_by
- isRevealed: order_by
- lastNftTransfer: nftTransfer_order_by
- lastNftTransferId: order_by
- metadata: order_by
- nftTransfers_aggregate: nftTransfer_aggregate_order_by
- organizerId: order_by
- packAmount: passAmount_order_by
- packId: order_by
- packPricing: passPricing_order_by
- passAmount: passAmount_order_by
- passPricing: passPricing_order_by
- tokenId: order_by
- tokenUri: order_by
- updated_at: order_by
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""primary key columns input for table: eventPassNft"""
-input eventPassNft_pk_columns_input {
- id: uuid!
-}
+ """Document to publish"""
+ where: AssetWhereUniqueInput!
-"""prepend existing jsonb value of filtered columns with new jsonb value"""
-input eventPassNft_prepend_input {
- """
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
- """
- metadata: jsonb
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Asset
-"""
-select columns of table "eventPassNft"
-"""
-enum eventPassNft_select_column {
- """column name"""
- chainId
+ """Publish one contentSpace"""
+ publishContentSpace(
+ """Optional localizations to publish"""
+ locales: [Locale!]
- """column name"""
- contractAddress
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """column name"""
- created_at
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- currentOwnerAddress
+ """Document to publish"""
+ where: ContentSpaceWhereUniqueInput!
- """column name"""
- error
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): ContentSpace
- """column name"""
- eventId
+ """Publish one event"""
+ publishEvent(
+ """Optional localizations to publish"""
+ locales: [Locale!]
- """column name"""
- eventPassId
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """column name"""
- id
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- isDelivered
+ """Document to publish"""
+ where: EventWhereUniqueInput!
- """column name"""
- isRevealed
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Event
- """column name"""
- lastNftTransferId
+ """Publish one eventPass"""
+ publishEventPass(
+ """Optional localizations to publish"""
+ locales: [Locale!]
- """column name"""
- metadata
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """column name"""
- organizerId
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- packId
+ """Document to publish"""
+ where: EventPassWhereUniqueInput!
- """column name"""
- tokenId
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): EventPass
- """column name"""
- tokenUri
+ """Publish one eventPassDelayedRevealed"""
+ publishEventPassDelayedRevealed(
+ """Optional localizations to publish"""
+ locales: [Locale!]
- """column name"""
- updated_at
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-select "eventPassNft_aggregate_bool_exp_bool_and_arguments_columns" columns of table "eventPassNft"
-"""
-enum eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns {
- """column name"""
- isDelivered
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- isRevealed
-}
+ """Document to publish"""
+ where: EventPassDelayedRevealedWhereUniqueInput!
-"""
-select "eventPassNft_aggregate_bool_exp_bool_or_arguments_columns" columns of table "eventPassNft"
-"""
-enum eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns {
- """column name"""
- isDelivered
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): EventPassDelayedRevealed
- """column name"""
- isRevealed
-}
+ """Publish one loyaltyCard"""
+ publishLoyaltyCard(
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-input type for updating data in table "eventPassNft"
-"""
-input eventPassNft_set_input {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String
+ """Document to publish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
- """
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
+ """Publish many Asset documents"""
+ publishManyAssets(
+ """Document localizations to publish"""
+ locales: [Locale!]
- """
- The address currently holding the event pass NFT, allowing tracking of ownership
- """
- currentOwnerAddress: String
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
- """
- error: String
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """A reference to the event associated with the event pass NFT"""
- eventId: String
+ """Identifies documents in each stage to be published"""
+ where: AssetManyWhereInput
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String
- id: uuid
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
- """Indicates whether the event pass NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """Publish many Asset documents"""
+ publishManyAssetsConnection(
+ after: ID
+ before: ID
+ first: Int
- """
- Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
- """
- isRevealed: Boolean
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
- """
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
- """
- lastNftTransferId: uuid
+ """Document localizations to publish"""
+ locales: [Locale!]
- """
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
- """
- metadata: jsonb
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String
- packId: String
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: bigint
+ """Identifies documents in each stage to be published"""
+ where: AssetManyWhereInput
- """
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
- """
- tokenUri: String
- updated_at: timestamptz
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): AssetConnection!
-"""aggregate stddev on columns"""
-type eventPassNft_stddev_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Publish many ContentSpace documents"""
+ publishManyContentSpaces(
+ """Document localizations to publish"""
+ locales: [Locale!]
-"""
-order by stddev() on columns of table "eventPassNft"
-"""
-input eventPassNft_stddev_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""aggregate stddev_pop on columns"""
-type eventPassNft_stddev_pop_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-order by stddev_pop() on columns of table "eventPassNft"
-"""
-input eventPassNft_stddev_pop_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Identifies documents in each stage to be published"""
+ where: ContentSpaceManyWhereInput
-"""aggregate stddev_samp on columns"""
-type eventPassNft_stddev_samp_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
-"""
-order by stddev_samp() on columns of table "eventPassNft"
-"""
-input eventPassNft_stddev_samp_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Publish many ContentSpace documents"""
+ publishManyContentSpacesConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-Streaming cursor of the table "eventPassNft"
-"""
-input eventPassNft_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassNft_stream_cursor_value_input!
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Document localizations to publish"""
+ locales: [Locale!]
-"""Initial value of the column from where the streaming should start"""
-input eventPassNft_stream_cursor_value_input {
- """Denotes the specific blockchain or network of the event pass NFT"""
- chainId: String
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
- """
- Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """
- The address currently holding the event pass NFT, allowing tracking of ownership
- """
- currentOwnerAddress: String
+ """Identifies documents in each stage to be published"""
+ where: ContentSpaceManyWhereInput
- """
- Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.
- """
- error: String
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): ContentSpaceConnection!
- """A reference to the event associated with the event pass NFT"""
- eventId: String
+ """Publish many EventPass documents"""
+ publishManyEventPasses(
+ """Document localizations to publish"""
+ locales: [Locale!]
- """Directly relates to a specific Event Pass within the system"""
- eventPassId: String
- id: uuid
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """Indicates whether the event pass NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """
- Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.
- """
- isRevealed: Boolean
+ """Identifies documents in each stage to be published"""
+ where: EventPassManyWhereInput
- """
- Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.
- """
- lastNftTransferId: uuid
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
- """
- The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.
- """
- metadata: jsonb
+ """Publish many EventPass documents"""
+ publishManyEventPassesConnection(
+ after: ID
+ before: ID
+ first: Int
- """Ties the event pass NFT to a specific organizer within the platform"""
- organizerId: String
- packId: String
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: bigint
+ """Document localizations to publish"""
+ locales: [Locale!]
- """
- The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.
- """
- tokenUri: String
- updated_at: timestamptz
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
-"""aggregate sum on columns"""
-type eventPassNft_sum_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: bigint
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-order by sum() on columns of table "eventPassNft"
-"""
-input eventPassNft_sum_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Identifies documents in each stage to be published"""
+ where: EventPassManyWhereInput
-"""
-update columns of table "eventPassNft"
-"""
-enum eventPassNft_update_column {
- """column name"""
- chainId
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): EventPassConnection!
- """column name"""
- contractAddress
+ """Publish many EventPassDelayedRevealed documents"""
+ publishManyEventPassesDelayedRevealed(
+ """Document localizations to publish"""
+ locales: [Locale!]
- """column name"""
- created_at
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """column name"""
- currentOwnerAddress
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- error
+ """Identifies documents in each stage to be published"""
+ where: EventPassDelayedRevealedManyWhereInput
- """column name"""
- eventId
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
- """column name"""
- eventPassId
+ """Publish many EventPassDelayedRevealed documents"""
+ publishManyEventPassesDelayedRevealedConnection(
+ after: ID
+ before: ID
+ first: Int
- """column name"""
- id
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
- """column name"""
- isDelivered
+ """Document localizations to publish"""
+ locales: [Locale!]
- """column name"""
- isRevealed
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
- """column name"""
- lastNftTransferId
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- metadata
+ """Identifies documents in each stage to be published"""
+ where: EventPassDelayedRevealedManyWhereInput
- """column name"""
- organizerId
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): EventPassDelayedRevealedConnection!
- """column name"""
- packId
+ """Publish many Event documents"""
+ publishManyEvents(
+ """Document localizations to publish"""
+ locales: [Locale!]
- """column name"""
- tokenId
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """column name"""
- tokenUri
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """column name"""
- updated_at
-}
+ """Identifies documents in each stage to be published"""
+ where: EventManyWhereInput
-input eventPassNft_updates {
- """append existing jsonb value of filtered columns with new jsonb value"""
- _append: eventPassNft_append_input
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
- """
- delete the field or element with specified path (for JSON arrays, negative integers count from the end)
- """
- _delete_at_path: eventPassNft_delete_at_path_input
+ """Publish many Event documents"""
+ publishManyEventsConnection(
+ after: ID
+ before: ID
+ first: Int
- """
- delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
- """
- _delete_elem: eventPassNft_delete_elem_input
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
- """
- delete key/value pair or string element. key/value pairs are matched based on their key value
- """
- _delete_key: eventPassNft_delete_key_input
+ """Document localizations to publish"""
+ locales: [Locale!]
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassNft_inc_input
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
- """prepend existing jsonb value of filtered columns with new jsonb value"""
- _prepend: eventPassNft_prepend_input
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNft_set_input
+ """Identifies documents in each stage to be published"""
+ where: EventManyWhereInput
- """filter the rows which have to be updated"""
- where: eventPassNft_bool_exp!
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): EventConnection!
-"""aggregate var_pop on columns"""
-type eventPassNft_var_pop_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Publish many LoyaltyCard documents"""
+ publishManyLoyaltyCards(
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-order by var_pop() on columns of table "eventPassNft"
-"""
-input eventPassNft_var_pop_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Identifies documents in each stage to be published"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
-"""aggregate var_samp on columns"""
-type eventPassNft_var_samp_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Publish many LoyaltyCard documents"""
+ publishManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-order by var_samp() on columns of table "eventPassNft"
-"""
-input eventPassNft_var_samp_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
+ skip: Int
-"""aggregate variance on columns"""
-type eventPassNft_variance_fields {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: Float
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-order by variance() on columns of table "eventPassNft"
-"""
-input eventPassNft_variance_order_by {
- """
- The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
- """
- tokenId: order_by
-}
+ """Identifies documents in each stage to be published"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
-"""Hold the sums for the Event Pass Orders"""
-type eventPassOrderSums {
- eventPassId: String!
- totalReserved: Int!
-}
+ """Publish many Organizer documents"""
+ publishManyOrganizers(
+ """Document localizations to publish"""
+ locales: [Locale!]
-"""
-aggregated selection of "eventPassOrderSums"
-"""
-type eventPassOrderSums_aggregate {
- aggregate: eventPassOrderSums_aggregate_fields
- nodes: [eventPassOrderSums!]!
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-aggregate fields of "eventPassOrderSums"
-"""
-type eventPassOrderSums_aggregate_fields {
- avg: eventPassOrderSums_avg_fields
- count(columns: [eventPassOrderSums_select_column!], distinct: Boolean): Int!
- max: eventPassOrderSums_max_fields
- min: eventPassOrderSums_min_fields
- stddev: eventPassOrderSums_stddev_fields
- stddev_pop: eventPassOrderSums_stddev_pop_fields
- stddev_samp: eventPassOrderSums_stddev_samp_fields
- sum: eventPassOrderSums_sum_fields
- var_pop: eventPassOrderSums_var_pop_fields
- var_samp: eventPassOrderSums_var_samp_fields
- variance: eventPassOrderSums_variance_fields
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""aggregate avg on columns"""
-type eventPassOrderSums_avg_fields {
- totalReserved: Float
-}
+ """Identifies documents in each stage to be published"""
+ where: OrganizerManyWhereInput
-"""
-Boolean expression to filter rows from the table "eventPassOrderSums". All fields are combined with a logical 'AND'.
-"""
-input eventPassOrderSums_bool_exp {
- _and: [eventPassOrderSums_bool_exp!]
- _not: eventPassOrderSums_bool_exp
- _or: [eventPassOrderSums_bool_exp!]
- eventPassId: String_comparison_exp
- totalReserved: Int_comparison_exp
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
-"""
-unique or primary key constraints on table "eventPassOrderSums"
-"""
-enum eventPassOrderSums_constraint {
- """
- unique or primary key constraint on columns "eventPassId"
- """
- eventPassOrderSums_pkey
-}
+ """Publish many Organizer documents"""
+ publishManyOrganizersConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-input type for incrementing numeric columns in table "eventPassOrderSums"
-"""
-input eventPassOrderSums_inc_input {
- totalReserved: Int
-}
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
-"""
-input type for inserting data into table "eventPassOrderSums"
-"""
-input eventPassOrderSums_insert_input {
- eventPassId: String
- totalReserved: Int
-}
+ """Document localizations to publish"""
+ locales: [Locale!]
-"""aggregate max on columns"""
-type eventPassOrderSums_max_fields {
- eventPassId: String
- totalReserved: Int
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
-"""aggregate min on columns"""
-type eventPassOrderSums_min_fields {
- eventPassId: String
- totalReserved: Int
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-response of any mutation on the table "eventPassOrderSums"
-"""
-type eventPassOrderSums_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Identifies documents in each stage to be published"""
+ where: OrganizerManyWhereInput
- """data from the rows affected by the mutation"""
- returning: [eventPassOrderSums!]!
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): OrganizerConnection!
-"""
-input type for inserting object relation for remote table "eventPassOrderSums"
-"""
-input eventPassOrderSums_obj_rel_insert_input {
- data: eventPassOrderSums_insert_input!
+ """Publish many Pack documents"""
+ publishManyPacks(
+ """Document localizations to publish"""
+ locales: [Locale!]
- """upsert condition"""
- on_conflict: eventPassOrderSums_on_conflict
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-on_conflict condition type for table "eventPassOrderSums"
-"""
-input eventPassOrderSums_on_conflict {
- constraint: eventPassOrderSums_constraint!
- update_columns: [eventPassOrderSums_update_column!]! = []
- where: eventPassOrderSums_bool_exp
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""Ordering options when selecting data from "eventPassOrderSums"."""
-input eventPassOrderSums_order_by {
- eventPassId: order_by
- totalReserved: order_by
-}
+ """Identifies documents in each stage to be published"""
+ where: PackManyWhereInput
-"""primary key columns input for table: eventPassOrderSums"""
-input eventPassOrderSums_pk_columns_input {
- eventPassId: String!
-}
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): BatchPayload!
-"""
-select columns of table "eventPassOrderSums"
-"""
-enum eventPassOrderSums_select_column {
- """column name"""
- eventPassId
+ """Publish many Pack documents"""
+ publishManyPacksConnection(
+ after: ID
+ before: ID
+ first: Int
- """column name"""
- totalReserved
-}
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
-"""
-input type for updating data in table "eventPassOrderSums"
-"""
-input eventPassOrderSums_set_input {
- eventPassId: String
- totalReserved: Int
-}
+ """Document localizations to publish"""
+ locales: [Locale!]
-"""aggregate stddev on columns"""
-type eventPassOrderSums_stddev_fields {
- totalReserved: Float
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
+ skip: Int
-"""aggregate stddev_pop on columns"""
-type eventPassOrderSums_stddev_pop_fields {
- totalReserved: Float
-}
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
-"""aggregate stddev_samp on columns"""
-type eventPassOrderSums_stddev_samp_fields {
- totalReserved: Float
-}
+ """Identifies documents in each stage to be published"""
+ where: PackManyWhereInput
-"""
-Streaming cursor of the table "eventPassOrderSums"
-"""
-input eventPassOrderSums_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassOrderSums_stream_cursor_value_input!
+ """Whether to include the default locale when publishBase is true"""
+ withDefaultLocale: Boolean = true
+ ): PackConnection!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Publish one organizer"""
+ publishOrganizer(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""Initial value of the column from where the streaming should start"""
-input eventPassOrderSums_stream_cursor_value_input {
- eventPassId: String
- totalReserved: Int
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""aggregate sum on columns"""
-type eventPassOrderSums_sum_fields {
- totalReserved: Int
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-update columns of table "eventPassOrderSums"
-"""
-enum eventPassOrderSums_update_column {
- """column name"""
- eventPassId
+ """Document to publish"""
+ where: OrganizerWhereUniqueInput!
- """column name"""
- totalReserved
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Organizer
-input eventPassOrderSums_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassOrderSums_inc_input
+ """Publish one pack"""
+ publishPack(
+ """Optional localizations to publish"""
+ locales: [Locale!]
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassOrderSums_set_input
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: eventPassOrderSums_bool_exp!
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""aggregate var_pop on columns"""
-type eventPassOrderSums_var_pop_fields {
- totalReserved: Float
-}
+ """Document to publish"""
+ where: PackWhereUniqueInput!
-"""aggregate var_samp on columns"""
-type eventPassOrderSums_var_samp_fields {
- totalReserved: Float
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Pack
-"""aggregate variance on columns"""
-type eventPassOrderSums_variance_fields {
- totalReserved: Float
-}
+ """Schedule to publish one asset"""
+ schedulePublishAsset(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""Defines the types of event passes."""
-type eventPassType {
- """Type name for event pass."""
- value: String!
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-aggregated selection of "eventPassType"
-"""
-type eventPassType_aggregate {
- aggregate: eventPassType_aggregate_fields
- nodes: [eventPassType!]!
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-aggregate fields of "eventPassType"
-"""
-type eventPassType_aggregate_fields {
- count(columns: [eventPassType_select_column!], distinct: Boolean): Int!
- max: eventPassType_max_fields
- min: eventPassType_min_fields
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-Boolean expression to filter rows from the table "eventPassType". All fields are combined with a logical 'AND'.
-"""
-input eventPassType_bool_exp {
- _and: [eventPassType_bool_exp!]
- _not: eventPassType_bool_exp
- _or: [eventPassType_bool_exp!]
- value: String_comparison_exp
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-unique or primary key constraints on table "eventPassType"
-"""
-enum eventPassType_constraint {
- """
- unique or primary key constraint on columns "value"
- """
- eventPassType_pkey
-}
+ """Document to publish"""
+ where: AssetWhereUniqueInput!
-enum eventPassType_enum {
- event_access
- redeemable
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Asset
-"""
-Boolean expression to compare columns of type "eventPassType_enum". All fields are combined with logical 'AND'.
-"""
-input eventPassType_enum_comparison_exp {
- _eq: eventPassType_enum
- _in: [eventPassType_enum!]
- _is_null: Boolean
- _neq: eventPassType_enum
- _nin: [eventPassType_enum!]
-}
+ """Schedule to publish one contentSpace"""
+ schedulePublishContentSpace(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""
-input type for inserting data into table "eventPassType"
-"""
-input eventPassType_insert_input {
- """Type name for event pass."""
- value: String
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""aggregate max on columns"""
-type eventPassType_max_fields {
- """Type name for event pass."""
- value: String
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""aggregate min on columns"""
-type eventPassType_min_fields {
- """Type name for event pass."""
- value: String
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-response of any mutation on the table "eventPassType"
-"""
-type eventPassType_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """data from the rows affected by the mutation"""
- returning: [eventPassType!]!
-}
+ """Document to publish"""
+ where: ContentSpaceWhereUniqueInput!
-"""
-on_conflict condition type for table "eventPassType"
-"""
-input eventPassType_on_conflict {
- constraint: eventPassType_constraint!
- update_columns: [eventPassType_update_column!]! = []
- where: eventPassType_bool_exp
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): ContentSpace
-"""Ordering options when selecting data from "eventPassType"."""
-input eventPassType_order_by {
- value: order_by
-}
+ """Schedule to publish one event"""
+ schedulePublishEvent(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""primary key columns input for table: eventPassType"""
-input eventPassType_pk_columns_input {
- """Type name for event pass."""
- value: String!
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-select columns of table "eventPassType"
-"""
-enum eventPassType_select_column {
- """column name"""
- value
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-input type for updating data in table "eventPassType"
-"""
-input eventPassType_set_input {
- """Type name for event pass."""
- value: String
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-Streaming cursor of the table "eventPassType"
-"""
-input eventPassType_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassType_stream_cursor_value_input!
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Document to publish"""
+ where: EventWhereUniqueInput!
-"""Initial value of the column from where the streaming should start"""
-input eventPassType_stream_cursor_value_input {
- """Type name for event pass."""
- value: String
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Event
-"""
-update columns of table "eventPassType"
-"""
-enum eventPassType_update_column {
- """column name"""
- value
-}
+ """Schedule to publish one eventPass"""
+ schedulePublishEventPass(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-input eventPassType_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassType_set_input
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: eventPassType_bool_exp!
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""Defines the types of validation for event passes."""
-type eventPassValidationType {
- """Type name for event pass validation."""
- value: String!
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-aggregated selection of "eventPassValidationType"
-"""
-type eventPassValidationType_aggregate {
- aggregate: eventPassValidationType_aggregate_fields
- nodes: [eventPassValidationType!]!
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-aggregate fields of "eventPassValidationType"
-"""
-type eventPassValidationType_aggregate_fields {
- count(columns: [eventPassValidationType_select_column!], distinct: Boolean): Int!
- max: eventPassValidationType_max_fields
- min: eventPassValidationType_min_fields
-}
+ """Document to publish"""
+ where: EventPassWhereUniqueInput!
-"""
-Boolean expression to filter rows from the table "eventPassValidationType". All fields are combined with a logical 'AND'.
-"""
-input eventPassValidationType_bool_exp {
- _and: [eventPassValidationType_bool_exp!]
- _not: eventPassValidationType_bool_exp
- _or: [eventPassValidationType_bool_exp!]
- value: String_comparison_exp
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): EventPass
-"""
-unique or primary key constraints on table "eventPassValidationType"
-"""
-enum eventPassValidationType_constraint {
- """
- unique or primary key constraint on columns "value"
- """
- eventPassValidationType_pkey
-}
+ """Schedule to publish one eventPassDelayedRevealed"""
+ schedulePublishEventPassDelayedRevealed(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-enum eventPassValidationType_enum {
- external
- manual
- nft
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-Boolean expression to compare columns of type "eventPassValidationType_enum". All fields are combined with logical 'AND'.
-"""
-input eventPassValidationType_enum_comparison_exp {
- _eq: eventPassValidationType_enum
- _in: [eventPassValidationType_enum!]
- _is_null: Boolean
- _neq: eventPassValidationType_enum
- _nin: [eventPassValidationType_enum!]
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-input type for inserting data into table "eventPassValidationType"
-"""
-input eventPassValidationType_insert_input {
- """Type name for event pass validation."""
- value: String
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""aggregate max on columns"""
-type eventPassValidationType_max_fields {
- """Type name for event pass validation."""
- value: String
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""aggregate min on columns"""
-type eventPassValidationType_min_fields {
- """Type name for event pass validation."""
- value: String
-}
+ """Document to publish"""
+ where: EventPassDelayedRevealedWhereUniqueInput!
+
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): EventPassDelayedRevealed
+
+ """Schedule to publish one loyaltyCard"""
+ schedulePublishLoyaltyCard(
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-response of any mutation on the table "eventPassValidationType"
-"""
-type eventPassValidationType_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
- """data from the rows affected by the mutation"""
- returning: [eventPassValidationType!]!
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-on_conflict condition type for table "eventPassValidationType"
-"""
-input eventPassValidationType_on_conflict {
- constraint: eventPassValidationType_constraint!
- update_columns: [eventPassValidationType_update_column!]! = []
- where: eventPassValidationType_bool_exp
-}
+ """Document to publish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
-"""Ordering options when selecting data from "eventPassValidationType"."""
-input eventPassValidationType_order_by {
- value: order_by
-}
+ """Schedule to publish one organizer"""
+ schedulePublishOrganizer(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-"""primary key columns input for table: eventPassValidationType"""
-input eventPassValidationType_pk_columns_input {
- """Type name for event pass validation."""
- value: String!
-}
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
-"""
-select columns of table "eventPassValidationType"
-"""
-enum eventPassValidationType_select_column {
- """column name"""
- value
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-input type for updating data in table "eventPassValidationType"
-"""
-input eventPassValidationType_set_input {
- """Type name for event pass validation."""
- value: String
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-Streaming cursor of the table "eventPassValidationType"
-"""
-input eventPassValidationType_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventPassValidationType_stream_cursor_value_input!
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Document to publish"""
+ where: OrganizerWhereUniqueInput!
-"""Initial value of the column from where the streaming should start"""
-input eventPassValidationType_stream_cursor_value_input {
- """Type name for event pass validation."""
- value: String
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Organizer
-"""
-update columns of table "eventPassValidationType"
-"""
-enum eventPassValidationType_update_column {
- """column name"""
- value
-}
+ """Schedule to publish one pack"""
+ schedulePublishPack(
+ """Optional localizations to publish"""
+ locales: [Locale!]
-input eventPassValidationType_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassValidationType_set_input
+ """Whether to publish the base document"""
+ publishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: eventPassValidationType_bool_exp!
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-columns and relationships of "eventStatus"
-"""
-type eventStatus {
- value: String!
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-aggregated selection of "eventStatus"
-"""
-type eventStatus_aggregate {
- aggregate: eventStatus_aggregate_fields
- nodes: [eventStatus!]!
-}
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
-"""
-aggregate fields of "eventStatus"
-"""
-type eventStatus_aggregate_fields {
- count(columns: [eventStatus_select_column!], distinct: Boolean): Int!
- max: eventStatus_max_fields
- min: eventStatus_min_fields
-}
+ """Document to publish"""
+ where: PackWhereUniqueInput!
-"""
-Boolean expression to filter rows from the table "eventStatus". All fields are combined with a logical 'AND'.
-"""
-input eventStatus_bool_exp {
- _and: [eventStatus_bool_exp!]
- _not: eventStatus_bool_exp
- _or: [eventStatus_bool_exp!]
- value: String_comparison_exp
-}
+ """Whether to include the default locale when publishBase is set"""
+ withDefaultLocale: Boolean = true
+ ): Pack
-"""
-unique or primary key constraints on table "eventStatus"
-"""
-enum eventStatus_constraint {
"""
- unique or primary key constraint on columns "value"
+ Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- eventStatus_pkey
-}
-
-enum eventStatus_enum {
- DRAFT
- PUBLISHED
-}
+ scheduleUnpublishAsset(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-Boolean expression to compare columns of type "eventStatus_enum". All fields are combined with logical 'AND'.
-"""
-input eventStatus_enum_comparison_exp {
- _eq: eventStatus_enum
- _in: [eventStatus_enum!]
- _is_null: Boolean
- _neq: eventStatus_enum
- _nin: [eventStatus_enum!]
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""
-input type for inserting data into table "eventStatus"
-"""
-input eventStatus_insert_input {
- value: String
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""aggregate max on columns"""
-type eventStatus_max_fields {
- value: String
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""aggregate min on columns"""
-type eventStatus_min_fields {
- value: String
-}
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
-"""
-response of any mutation on the table "eventStatus"
-"""
-type eventStatus_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Document to unpublish"""
+ where: AssetWhereUniqueInput!
+ ): Asset
- """data from the rows affected by the mutation"""
- returning: [eventStatus!]!
-}
+ """
+ Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ """
+ scheduleUnpublishContentSpace(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-on_conflict condition type for table "eventStatus"
-"""
-input eventStatus_on_conflict {
- constraint: eventStatus_constraint!
- update_columns: [eventStatus_update_column!]! = []
- where: eventStatus_bool_exp
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""Ordering options when selecting data from "eventStatus"."""
-input eventStatus_order_by {
- value: order_by
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""primary key columns input for table: eventStatus"""
-input eventStatus_pk_columns_input {
- value: String!
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-"""
-select columns of table "eventStatus"
-"""
-enum eventStatus_select_column {
- """column name"""
- value
-}
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
-"""
-input type for updating data in table "eventStatus"
-"""
-input eventStatus_set_input {
- value: String
-}
+ """Document to unpublish"""
+ where: ContentSpaceWhereUniqueInput!
+ ): ContentSpace
-"""
-Streaming cursor of the table "eventStatus"
-"""
-input eventStatus_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: eventStatus_stream_cursor_value_input!
+ """
+ Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ """
+ scheduleUnpublishEvent(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""Initial value of the column from where the streaming should start"""
-input eventStatus_stream_cursor_value_input {
- value: String
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-update columns of table "eventStatus"
-"""
-enum eventStatus_update_column {
- """column name"""
- value
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
-input eventStatus_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: eventStatus_set_input
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: eventStatus_bool_exp!
-}
+ """Document to unpublish"""
+ where: EventWhereUniqueInput!
+ ): Event
-"""
-Stores follow relationships. Each row represents an account following an organizer.
-"""
-type follow {
"""
- References the unique identifier of the account that is following an organizer.
+ Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- accountId: uuid!
- created_at: timestamptz!
+ scheduleUnpublishEventPass(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
+
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: EventPassWhereUniqueInput!
+ ): EventPass
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- organizerSlug: String!
-}
+ scheduleUnpublishEventPassDelayedRevealed(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-aggregated selection of "follow"
-"""
-type follow_aggregate {
- aggregate: follow_aggregate_fields
- nodes: [follow!]!
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""
-aggregate fields of "follow"
-"""
-type follow_aggregate_fields {
- count(columns: [follow_select_column!], distinct: Boolean): Int!
- max: follow_max_fields
- min: follow_min_fields
-}
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
-"""
-Boolean expression to filter rows from the table "follow". All fields are combined with a logical 'AND'.
-"""
-input follow_bool_exp {
- _and: [follow_bool_exp!]
- _not: follow_bool_exp
- _or: [follow_bool_exp!]
- accountId: uuid_comparison_exp
- created_at: timestamptz_comparison_exp
- organizerSlug: String_comparison_exp
-}
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: EventPassDelayedRevealedWhereUniqueInput!
+ ): EventPassDelayedRevealed
-"""
-unique or primary key constraints on table "follow"
-"""
-enum follow_constraint {
"""
- unique or primary key constraint on columns "accountId", "organizerSlug"
+ Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- follow_pkey
-}
+ scheduleUnpublishLoyaltyCard(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """Document to unpublish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
-"""
-input type for inserting data into table "follow"
-"""
-input follow_insert_input {
"""
- References the unique identifier of the account that is following an organizer.
+ Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- accountId: uuid
- created_at: timestamptz
+ scheduleUnpublishOrganizer(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
+
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: OrganizerWhereUniqueInput!
+ ): Organizer
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- organizerSlug: String
-}
+ scheduleUnpublishPack(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
+
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: PackWhereUniqueInput!
+ ): Pack
-"""aggregate max on columns"""
-type follow_max_fields {
"""
- References the unique identifier of the account that is following an organizer.
+ Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- accountId: uuid
- created_at: timestamptz
+ unpublishAsset(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: AssetWhereUniqueInput!
+ ): Asset
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- organizerSlug: String
-}
+ unpublishContentSpace(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""aggregate min on columns"""
-type follow_min_fields {
- """
- References the unique identifier of the account that is following an organizer.
- """
- accountId: uuid
- created_at: timestamptz
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: ContentSpaceWhereUniqueInput!
+ ): ContentSpace
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- organizerSlug: String
-}
-
-"""
-response of any mutation on the table "follow"
-"""
-type follow_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ unpublishEvent(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
- """data from the rows affected by the mutation"""
- returning: [follow!]!
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-"""
-on_conflict condition type for table "follow"
-"""
-input follow_on_conflict {
- constraint: follow_constraint!
- update_columns: [follow_update_column!]! = []
- where: follow_bool_exp
-}
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
-"""Ordering options when selecting data from "follow"."""
-input follow_order_by {
- accountId: order_by
- created_at: order_by
- organizerSlug: order_by
-}
+ """Document to unpublish"""
+ where: EventWhereUniqueInput!
+ ): Event
-"""primary key columns input for table: follow"""
-input follow_pk_columns_input {
"""
- References the unique identifier of the account that is following an organizer.
+ Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- accountId: uuid!
+ unpublishEventPass(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
+
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: EventPassWhereUniqueInput!
+ ): EventPass
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- organizerSlug: String!
-}
+ unpublishEventPassDelayedRevealed(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-select columns of table "follow"
-"""
-enum follow_select_column {
- """column name"""
- accountId
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
- """column name"""
- created_at
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
- """column name"""
- organizerSlug
-}
+ """Document to unpublish"""
+ where: EventPassDelayedRevealedWhereUniqueInput!
+ ): EventPassDelayedRevealed
-"""
-input type for updating data in table "follow"
-"""
-input follow_set_input {
"""
- References the unique identifier of the account that is following an organizer.
+ Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- accountId: uuid
- created_at: timestamptz
+ unpublishLoyaltyCard(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
- """
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
- """
- organizerSlug: String
-}
+ """Document to unpublish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
-"""
-Streaming cursor of the table "follow"
-"""
-input follow_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: follow_stream_cursor_value_input!
+ """Unpublish many Asset documents"""
+ unpublishManyAssets(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
-"""Initial value of the column from where the streaming should start"""
-input follow_stream_cursor_value_input {
- """
- References the unique identifier of the account that is following an organizer.
- """
- accountId: uuid
- created_at: timestamptz
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
+
+ """Identifies documents in each stage"""
+ where: AssetManyWhereInput
+ ): BatchPayload!
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ Find many Asset documents that match criteria in specified stage and unpublish from target stages
"""
- organizerSlug: String
-}
+ unpublishManyAssetsConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-update columns of table "follow"
-"""
-enum follow_update_column {
- """column name"""
- accountId
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
- """column name"""
- created_at
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
- """column name"""
- organizerSlug
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-input follow_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: follow_set_input
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: follow_bool_exp!
-}
+ """Identifies documents in draft stage"""
+ where: AssetManyWhereInput
+ ): AssetConnection!
-scalar jsonb
+ """Unpublish many ContentSpace documents"""
+ unpublishManyContentSpaces(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
-input jsonb_cast_exp {
- String: String_comparison_exp
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
-"""
-Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.
-"""
-input jsonb_comparison_exp {
- _cast: jsonb_cast_exp
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
- """is the column contained in the given json value"""
- _contained_in: jsonb
+ """Identifies documents in each stage"""
+ where: ContentSpaceManyWhereInput
+ ): BatchPayload!
- """does the column contain the given json value at the top level"""
- _contains: jsonb
- _eq: jsonb
- _gt: jsonb
- _gte: jsonb
+ """
+ Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages
+ """
+ unpublishManyContentSpacesConnection(
+ after: ID
+ before: ID
+ first: Int
- """does the string exist as a top-level key in the column"""
- _has_key: String
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
- """do all of these strings exist as top-level keys in the column"""
- _has_keys_all: [String!]
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
- """do any of these strings exist as top-level keys in the column"""
- _has_keys_any: [String!]
- _in: [jsonb!]
- _is_null: Boolean
- _lt: jsonb
- _lte: jsonb
- _neq: jsonb
- _nin: [jsonb!]
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-"""
-columns and relationships of "kyc"
-"""
-type kyc {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz!
+ """Identifies documents in draft stage"""
+ where: ContentSpaceManyWhereInput
+ ): ContentSpaceConnection!
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid!
+ """Unpublish many EventPass documents"""
+ unpublishManyEventPasses(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
- """Level of KYC verification, referring to kycLevelName."""
- levelName: kycLevelName_enum
+ """Locales to unpublish"""
+ locales: [Locale!]
- """Status of the applicant’s review in Sumsub, referring to kycStatus."""
- reviewStatus: kycStatus_enum
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Identifies documents in each stage"""
+ where: EventPassManyWhereInput
+ ): BatchPayload!
-"""KYC levels representing the level of verification for the applicant."""
-type kycLevelName {
"""
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
+ Find many EventPass documents that match criteria in specified stage and unpublish from target stages
"""
- value: String!
-}
+ unpublishManyEventPassesConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-aggregated selection of "kycLevelName"
-"""
-type kycLevelName_aggregate {
- aggregate: kycLevelName_aggregate_fields
- nodes: [kycLevelName!]!
-}
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
-"""
-aggregate fields of "kycLevelName"
-"""
-type kycLevelName_aggregate_fields {
- count(columns: [kycLevelName_select_column!], distinct: Boolean): Int!
- max: kycLevelName_max_fields
- min: kycLevelName_min_fields
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
-"""
-Boolean expression to filter rows from the table "kycLevelName". All fields are combined with a logical 'AND'.
-"""
-input kycLevelName_bool_exp {
- _and: [kycLevelName_bool_exp!]
- _not: kycLevelName_bool_exp
- _or: [kycLevelName_bool_exp!]
- value: String_comparison_exp
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-"""
-unique or primary key constraints on table "kycLevelName"
-"""
-enum kycLevelName_constraint {
- """
- unique or primary key constraint on columns "value"
- """
- kycLevelName_pkey
-}
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
-enum kycLevelName_enum {
- advanced_kyc_level
- basic_kyc_level
-}
+ """Identifies documents in draft stage"""
+ where: EventPassManyWhereInput
+ ): EventPassConnection!
-"""
-Boolean expression to compare columns of type "kycLevelName_enum". All fields are combined with logical 'AND'.
-"""
-input kycLevelName_enum_comparison_exp {
- _eq: kycLevelName_enum
- _in: [kycLevelName_enum!]
- _is_null: Boolean
- _neq: kycLevelName_enum
- _nin: [kycLevelName_enum!]
-}
+ """Unpublish many EventPassDelayedRevealed documents"""
+ unpublishManyEventPassesDelayedRevealed(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-input type for inserting data into table "kycLevelName"
-"""
-input kycLevelName_insert_input {
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
-"""aggregate max on columns"""
-type kycLevelName_max_fields {
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String
-}
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
+
+ """Identifies documents in each stage"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): BatchPayload!
-"""aggregate min on columns"""
-type kycLevelName_min_fields {
"""
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
+ Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages
"""
- value: String
-}
+ unpublishManyEventPassesDelayedRevealedConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-response of any mutation on the table "kycLevelName"
-"""
-type kycLevelName_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
- """data from the rows affected by the mutation"""
- returning: [kycLevelName!]!
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
-"""
-on_conflict condition type for table "kycLevelName"
-"""
-input kycLevelName_on_conflict {
- constraint: kycLevelName_constraint!
- update_columns: [kycLevelName_update_column!]! = []
- where: kycLevelName_bool_exp
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-"""Ordering options when selecting data from "kycLevelName"."""
-input kycLevelName_order_by {
- value: order_by
-}
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
-"""primary key columns input for table: kycLevelName"""
-input kycLevelName_pk_columns_input {
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String!
-}
+ """Identifies documents in draft stage"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): EventPassDelayedRevealedConnection!
-"""
-select columns of table "kycLevelName"
-"""
-enum kycLevelName_select_column {
- """column name"""
- value
-}
+ """Unpublish many Event documents"""
+ unpublishManyEvents(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-input type for updating data in table "kycLevelName"
-"""
-input kycLevelName_set_input {
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
-"""
-Streaming cursor of the table "kycLevelName"
-"""
-input kycLevelName_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: kycLevelName_stream_cursor_value_input!
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Identifies documents in each stage"""
+ where: EventManyWhereInput
+ ): BatchPayload!
-"""Initial value of the column from where the streaming should start"""
-input kycLevelName_stream_cursor_value_input {
"""
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
+ Find many Event documents that match criteria in specified stage and unpublish from target stages
"""
- value: String
-}
+ unpublishManyEventsConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-update columns of table "kycLevelName"
-"""
-enum kycLevelName_update_column {
- """column name"""
- value
-}
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
-input kycLevelName_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: kycLevelName_set_input
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
- """filter the rows which have to be updated"""
- where: kycLevelName_bool_exp!
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
+
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
+
+ """Identifies documents in draft stage"""
+ where: EventManyWhereInput
+ ): EventConnection!
+
+ """Unpublish many LoyaltyCard documents"""
+ unpublishManyLoyaltyCards(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """Identifies documents in each stage"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
-"""Statuses of Know Your Customer (KYC) processes."""
-type kycStatus {
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ Find many LoyaltyCard documents that match criteria in specified stage and unpublish from target stages
"""
- value: String!
-}
+ unpublishManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-aggregated selection of "kycStatus"
-"""
-type kycStatus_aggregate {
- aggregate: kycStatus_aggregate_fields
- nodes: [kycStatus!]!
-}
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
+ skip: Int
-"""
-aggregate fields of "kycStatus"
-"""
-type kycStatus_aggregate_fields {
- count(columns: [kycStatus_select_column!], distinct: Boolean): Int!
- max: kycStatus_max_fields
- min: kycStatus_min_fields
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-"""
-Boolean expression to filter rows from the table "kycStatus". All fields are combined with a logical 'AND'.
-"""
-input kycStatus_bool_exp {
- _and: [kycStatus_bool_exp!]
- _not: kycStatus_bool_exp
- _or: [kycStatus_bool_exp!]
- value: String_comparison_exp
-}
+ """Identifies documents in draft stage"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
-"""
-unique or primary key constraints on table "kycStatus"
-"""
-enum kycStatus_constraint {
- """
- unique or primary key constraint on columns "value"
- """
- kycStatus_pkey
-}
+ """Unpublish many Organizer documents"""
+ unpublishManyOrganizers(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
-enum kycStatus_enum {
- completed
- init
- onHold
- pending
- prechecked
- queued
-}
+ """Locales to unpublish"""
+ locales: [Locale!]
-"""
-Boolean expression to compare columns of type "kycStatus_enum". All fields are combined with logical 'AND'.
-"""
-input kycStatus_enum_comparison_exp {
- _eq: kycStatus_enum
- _in: [kycStatus_enum!]
- _is_null: Boolean
- _neq: kycStatus_enum
- _nin: [kycStatus_enum!]
-}
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
-"""
-input type for inserting data into table "kycStatus"
-"""
-input kycStatus_insert_input {
- """
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
- """
- value: String
-}
+ """Identifies documents in each stage"""
+ where: OrganizerManyWhereInput
+ ): BatchPayload!
-"""aggregate max on columns"""
-type kycStatus_max_fields {
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ Find many Organizer documents that match criteria in specified stage and unpublish from target stages
"""
- value: String
-}
+ unpublishManyOrganizersConnection(
+ after: ID
+ before: ID
+ first: Int
-"""aggregate min on columns"""
-type kycStatus_min_fields {
- """
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
- """
- value: String
-}
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
-"""
-response of any mutation on the table "kycStatus"
-"""
-type kycStatus_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
- """data from the rows affected by the mutation"""
- returning: [kycStatus!]!
-}
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
-"""
-on_conflict condition type for table "kycStatus"
-"""
-input kycStatus_on_conflict {
- constraint: kycStatus_constraint!
- update_columns: [kycStatus_update_column!]! = []
- where: kycStatus_bool_exp
-}
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
-"""Ordering options when selecting data from "kycStatus"."""
-input kycStatus_order_by {
- value: order_by
-}
+ """Identifies documents in draft stage"""
+ where: OrganizerManyWhereInput
+ ): OrganizerConnection!
+
+ """Unpublish many Pack documents"""
+ unpublishManyPacks(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """Locales to unpublish"""
+ locales: [Locale!]
+
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
+
+ """Identifies documents in each stage"""
+ where: PackManyWhereInput
+ ): BatchPayload!
-"""primary key columns input for table: kycStatus"""
-input kycStatus_pk_columns_input {
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ Find many Pack documents that match criteria in specified stage and unpublish from target stages
"""
- value: String!
-}
+ unpublishManyPacksConnection(
+ after: ID
+ before: ID
+ first: Int
-"""
-select columns of table "kycStatus"
-"""
-enum kycStatus_select_column {
- """column name"""
- value
-}
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
+
+ """Locales to unpublish"""
+ locales: [Locale!]
+ skip: Int
+
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
+
+ """Whether to unpublish the base document and default localization"""
+ unpublishBase: Boolean = true
+
+ """Identifies documents in draft stage"""
+ where: PackManyWhereInput
+ ): PackConnection!
-"""
-input type for updating data in table "kycStatus"
-"""
-input kycStatus_set_input {
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- value: String
-}
+ unpublishOrganizer(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-Streaming cursor of the table "kycStatus"
-"""
-input kycStatus_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: kycStatus_stream_cursor_value_input!
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
+
+ """Document to unpublish"""
+ where: OrganizerWhereUniqueInput!
+ ): Organizer
-"""Initial value of the column from where the streaming should start"""
-input kycStatus_stream_cursor_value_input {
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
- value: String
-}
+ unpublishPack(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
-"""
-update columns of table "kycStatus"
-"""
-enum kycStatus_update_column {
- """column name"""
- value
-}
+ """
+ Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
+ """
+ locales: [Locale!]
-input kycStatus_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: kycStatus_set_input
+ """
+ Unpublish complete document including default localization and relations from stages. Can be disabled.
+ """
+ unpublishBase: Boolean = true
- """filter the rows which have to be updated"""
- where: kycStatus_bool_exp!
-}
+ """Document to unpublish"""
+ where: PackWhereUniqueInput!
+ ): Pack
-"""
-aggregated selection of "kyc"
-"""
-type kyc_aggregate {
- aggregate: kyc_aggregate_fields
- nodes: [kyc!]!
-}
+ """Update one asset"""
+ updateAsset(data: AssetUpdateInput!, where: AssetWhereUniqueInput!): Asset
-"""
-aggregate fields of "kyc"
-"""
-type kyc_aggregate_fields {
- count(columns: [kyc_select_column!], distinct: Boolean): Int!
- max: kyc_max_fields
- min: kyc_min_fields
-}
+ """Update one contentSpace"""
+ updateContentSpace(data: ContentSpaceUpdateInput!, where: ContentSpaceWhereUniqueInput!): ContentSpace
-"""
-Boolean expression to filter rows from the table "kyc". All fields are combined with a logical 'AND'.
-"""
-input kyc_bool_exp {
- _and: [kyc_bool_exp!]
- _not: kyc_bool_exp
- _or: [kyc_bool_exp!]
- applicantId: String_comparison_exp
- createDate: timestamptz_comparison_exp
- externalUserId: uuid_comparison_exp
- levelName: kycLevelName_enum_comparison_exp
- reviewStatus: kycStatus_enum_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """Update one event"""
+ updateEvent(data: EventUpdateInput!, where: EventWhereUniqueInput!): Event
-"""
-unique or primary key constraints on table "kyc"
-"""
-enum kyc_constraint {
- """
- unique or primary key constraint on columns "externalUserId"
- """
- kyc_externalUserId_key
+ """Update one eventPass"""
+ updateEventPass(data: EventPassUpdateInput!, where: EventPassWhereUniqueInput!): EventPass
- """
- unique or primary key constraint on columns "externalUserId"
- """
- kyc_pkey
-}
+ """Update one eventPassDelayedRevealed"""
+ updateEventPassDelayedRevealed(data: EventPassDelayedRevealedUpdateInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
-"""
-input type for inserting data into table "kyc"
-"""
-input kyc_insert_input {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Update one loyaltyCard"""
+ updateLoyaltyCard(data: LoyaltyCardUpdateInput!, where: LoyaltyCardWhereUniqueInput!): LoyaltyCard
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz
+ """Update many assets"""
+ updateManyAssets(
+ """Updates to document content"""
+ data: AssetUpdateManyInput!
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid
+ """Documents to apply update on"""
+ where: AssetManyWhereInput
+ ): BatchPayload!
- """Level of KYC verification, referring to kycLevelName."""
- levelName: kycLevelName_enum
+ """Update many Asset documents"""
+ updateManyAssetsConnection(
+ after: ID
+ before: ID
- """Status of the applicant’s review in Sumsub, referring to kycStatus."""
- reviewStatus: kycStatus_enum
+ """Updates to document content"""
+ data: AssetUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Documents to apply update on"""
+ where: AssetManyWhereInput
+ ): AssetConnection!
-"""aggregate max on columns"""
-type kyc_max_fields {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Update many contentSpaces"""
+ updateManyContentSpaces(
+ """Updates to document content"""
+ data: ContentSpaceUpdateManyInput!
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz
+ """Documents to apply update on"""
+ where: ContentSpaceManyWhereInput
+ ): BatchPayload!
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid
+ """Update many ContentSpace documents"""
+ updateManyContentSpacesConnection(
+ after: ID
+ before: ID
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Updates to document content"""
+ data: ContentSpaceUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
-"""aggregate min on columns"""
-type kyc_min_fields {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Documents to apply update on"""
+ where: ContentSpaceManyWhereInput
+ ): ContentSpaceConnection!
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz
+ """Update many eventPasses"""
+ updateManyEventPasses(
+ """Updates to document content"""
+ data: EventPassUpdateManyInput!
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid
+ """Documents to apply update on"""
+ where: EventPassManyWhereInput
+ ): BatchPayload!
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Update many EventPass documents"""
+ updateManyEventPassesConnection(
+ after: ID
+ before: ID
-"""
-response of any mutation on the table "kyc"
-"""
-type kyc_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """Updates to document content"""
+ data: EventPassUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """data from the rows affected by the mutation"""
- returning: [kyc!]!
-}
+ """Documents to apply update on"""
+ where: EventPassManyWhereInput
+ ): EventPassConnection!
-"""
-input type for inserting object relation for remote table "kyc"
-"""
-input kyc_obj_rel_insert_input {
- data: kyc_insert_input!
+ """Update many eventPassesDelayedRevealed"""
+ updateManyEventPassesDelayedRevealed(
+ """Updates to document content"""
+ data: EventPassDelayedRevealedUpdateManyInput!
- """upsert condition"""
- on_conflict: kyc_on_conflict
-}
+ """Documents to apply update on"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): BatchPayload!
-"""
-on_conflict condition type for table "kyc"
-"""
-input kyc_on_conflict {
- constraint: kyc_constraint!
- update_columns: [kyc_update_column!]! = []
- where: kyc_bool_exp
-}
+ """Update many EventPassDelayedRevealed documents"""
+ updateManyEventPassesDelayedRevealedConnection(
+ after: ID
+ before: ID
-"""Ordering options when selecting data from "kyc"."""
-input kyc_order_by {
- applicantId: order_by
- createDate: order_by
- externalUserId: order_by
- levelName: order_by
- reviewStatus: order_by
- updated_at: order_by
-}
+ """Updates to document content"""
+ data: EventPassDelayedRevealedUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
-"""primary key columns input for table: kyc"""
-input kyc_pk_columns_input {
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid!
-}
+ """Documents to apply update on"""
+ where: EventPassDelayedRevealedManyWhereInput
+ ): EventPassDelayedRevealedConnection!
-"""
-select columns of table "kyc"
-"""
-enum kyc_select_column {
- """column name"""
- applicantId
+ """Update many events"""
+ updateManyEvents(
+ """Updates to document content"""
+ data: EventUpdateManyInput!
+
+ """Documents to apply update on"""
+ where: EventManyWhereInput
+ ): BatchPayload!
- """column name"""
- createDate
+ """Update many Event documents"""
+ updateManyEventsConnection(
+ after: ID
+ before: ID
- """column name"""
- externalUserId
+ """Updates to document content"""
+ data: EventUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """column name"""
- levelName
+ """Documents to apply update on"""
+ where: EventManyWhereInput
+ ): EventConnection!
- """column name"""
- reviewStatus
+ """Update many loyaltyCards"""
+ updateManyLoyaltyCards(
+ """Updates to document content"""
+ data: LoyaltyCardUpdateManyInput!
- """column name"""
- updated_at
-}
+ """Documents to apply update on"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
-"""
-input type for updating data in table "kyc"
-"""
-input kyc_set_input {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Update many LoyaltyCard documents"""
+ updateManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz
+ """Updates to document content"""
+ data: LoyaltyCardUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid
+ """Documents to apply update on"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
- """Level of KYC verification, referring to kycLevelName."""
- levelName: kycLevelName_enum
+ """Update many organizers"""
+ updateManyOrganizers(
+ """Updates to document content"""
+ data: OrganizerUpdateManyInput!
- """Status of the applicant’s review in Sumsub, referring to kycStatus."""
- reviewStatus: kycStatus_enum
+ """Documents to apply update on"""
+ where: OrganizerManyWhereInput
+ ): BatchPayload!
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Update many Organizer documents"""
+ updateManyOrganizersConnection(
+ after: ID
+ before: ID
-"""
-Streaming cursor of the table "kyc"
-"""
-input kyc_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: kyc_stream_cursor_value_input!
+ """Updates to document content"""
+ data: OrganizerUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Documents to apply update on"""
+ where: OrganizerManyWhereInput
+ ): OrganizerConnection!
-"""Initial value of the column from where the streaming should start"""
-input kyc_stream_cursor_value_input {
- """Unique identifier for the applicant provided by Sumsub."""
- applicantId: String
+ """Update many packs"""
+ updateManyPacks(
+ """Updates to document content"""
+ data: PackUpdateManyInput!
- """
- The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.
- """
- createDate: timestamptz
+ """Documents to apply update on"""
+ where: PackManyWhereInput
+ ): BatchPayload!
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid
+ """Update many Pack documents"""
+ updateManyPacksConnection(
+ after: ID
+ before: ID
- """Level of KYC verification, referring to kycLevelName."""
- levelName: kycLevelName_enum
+ """Updates to document content"""
+ data: PackUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
- """Status of the applicant’s review in Sumsub, referring to kycStatus."""
- reviewStatus: kycStatus_enum
+ """Documents to apply update on"""
+ where: PackManyWhereInput
+ ): PackConnection!
- """Timestamp automatically updated whenever the kyc row changes."""
- updated_at: timestamptz
-}
+ """Update one organizer"""
+ updateOrganizer(data: OrganizerUpdateInput!, where: OrganizerWhereUniqueInput!): Organizer
-"""
-update columns of table "kyc"
-"""
-enum kyc_update_column {
- """column name"""
- applicantId
+ """Update one pack"""
+ updatePack(data: PackUpdateInput!, where: PackWhereUniqueInput!): Pack
- """column name"""
- createDate
+ """Update one scheduledRelease"""
+ updateScheduledRelease(data: ScheduledReleaseUpdateInput!, where: ScheduledReleaseWhereUniqueInput!): ScheduledRelease
- """column name"""
- externalUserId
+ """
+ update data of the table: "account"
+ """
+ update_account(
+ """sets the columns of the filtered rows to the given values"""
+ _set: account_set_input
- """column name"""
- levelName
+ """filter the rows which have to be updated"""
+ where: account_bool_exp!
+ ): account_mutation_response
- """column name"""
- reviewStatus
+ """
+ update single row of the table: "account"
+ """
+ update_account_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: account_set_input
+ pk_columns: account_pk_columns_input!
+ ): account
- """column name"""
- updated_at
-}
+ """
+ update multiples rows of table: "account"
+ """
+ update_account_many(
+ """updates to execute, in order"""
+ updates: [account_updates!]!
+ ): [account_mutation_response]
-input kyc_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: kyc_set_input
+ """
+ update data of the table: "apiKeyStatus"
+ """
+ update_apiKeyStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyStatus_set_input
- """filter the rows which have to be updated"""
- where: kyc_bool_exp!
-}
+ """filter the rows which have to be updated"""
+ where: apiKeyStatus_bool_exp!
+ ): apiKeyStatus_mutation_response
-"""
-The lotteryParameters model is designed to define properties on a lottery, including details like the lotteryId and activityWebhookId. It manages various timestamps and settings related to the lottery, ensuring efficient and accurate management of lottery events.
-"""
-type lotteryParameters {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update single row of the table: "apiKeyStatus"
"""
- activityWebhookId: String
- created_at: timestamptz!
+ update_apiKeyStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyStatus_set_input
+ pk_columns: apiKeyStatus_pk_columns_input!
+ ): apiKeyStatus
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update multiples rows of table: "apiKeyStatus"
"""
- dateSaleEnd: timestamp
+ update_apiKeyStatus_many(
+ """updates to execute, in order"""
+ updates: [apiKeyStatus_updates!]!
+ ): [apiKeyStatus_mutation_response]
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update data of the table: "apiKeyType"
"""
- dateSaleStart: timestamp
- id: uuid!
- lotteryId: String!
- organizerId: String!
- signingKey: String
- status: lotteryStatus_enum
+ update_apiKeyType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyType_set_input
+
+ """filter the rows which have to be updated"""
+ where: apiKeyType_bool_exp!
+ ): apiKeyType_mutation_response
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update single row of the table: "apiKeyType"
"""
- timezone: String!
- updated_at: timestamptz!
-}
+ update_apiKeyType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: apiKeyType_set_input
+ pk_columns: apiKeyType_pk_columns_input!
+ ): apiKeyType
-"""
-aggregated selection of "lotteryParameters"
-"""
-type lotteryParameters_aggregate {
- aggregate: lotteryParameters_aggregate_fields
- nodes: [lotteryParameters!]!
-}
+ """
+ update multiples rows of table: "apiKeyType"
+ """
+ update_apiKeyType_many(
+ """updates to execute, in order"""
+ updates: [apiKeyType_updates!]!
+ ): [apiKeyType_mutation_response]
-"""
-aggregate fields of "lotteryParameters"
-"""
-type lotteryParameters_aggregate_fields {
- count(columns: [lotteryParameters_select_column!], distinct: Boolean): Int!
- max: lotteryParameters_max_fields
- min: lotteryParameters_min_fields
-}
+ """
+ update data of the table: "contentSpaceParameters"
+ """
+ update_contentSpaceParameters(
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceParameters_set_input
-"""
-Boolean expression to filter rows from the table "lotteryParameters". All fields are combined with a logical 'AND'.
-"""
-input lotteryParameters_bool_exp {
- _and: [lotteryParameters_bool_exp!]
- _not: lotteryParameters_bool_exp
- _or: [lotteryParameters_bool_exp!]
- activityWebhookId: String_comparison_exp
- created_at: timestamptz_comparison_exp
- dateSaleEnd: timestamp_comparison_exp
- dateSaleStart: timestamp_comparison_exp
- id: uuid_comparison_exp
- lotteryId: String_comparison_exp
- organizerId: String_comparison_exp
- signingKey: String_comparison_exp
- status: lotteryStatus_enum_comparison_exp
- timezone: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """filter the rows which have to be updated"""
+ where: contentSpaceParameters_bool_exp!
+ ): contentSpaceParameters_mutation_response
-"""
-unique or primary key constraints on table "lotteryParameters"
-"""
-enum lotteryParameters_constraint {
"""
- unique or primary key constraint on columns "lotteryId"
+ update single row of the table: "contentSpaceParameters"
"""
- lotteryParameters_lotteryId_key
+ update_contentSpaceParameters_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceParameters_set_input
+ pk_columns: contentSpaceParameters_pk_columns_input!
+ ): contentSpaceParameters
"""
- unique or primary key constraint on columns "id"
+ update multiples rows of table: "contentSpaceParameters"
"""
- lotteryParameters_pkey
+ update_contentSpaceParameters_many(
+ """updates to execute, in order"""
+ updates: [contentSpaceParameters_updates!]!
+ ): [contentSpaceParameters_mutation_response]
"""
- unique or primary key constraint on columns "signingKey"
+ update data of the table: "contentSpaceStatus"
"""
- lotteryParameters_signingKey_key
-}
+ update_contentSpaceStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: contentSpaceStatus_bool_exp!
+ ): contentSpaceStatus_mutation_response
-"""
-input type for inserting data into table "lotteryParameters"
-"""
-input lotteryParameters_insert_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update single row of the table: "contentSpaceStatus"
"""
- activityWebhookId: String
- created_at: timestamptz
+ update_contentSpaceStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: contentSpaceStatus_set_input
+ pk_columns: contentSpaceStatus_pk_columns_input!
+ ): contentSpaceStatus
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update multiples rows of table: "contentSpaceStatus"
"""
- dateSaleEnd: timestamp
+ update_contentSpaceStatus_many(
+ """updates to execute, in order"""
+ updates: [contentSpaceStatus_updates!]!
+ ): [contentSpaceStatus_mutation_response]
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update data of the table: "currency"
"""
- dateSaleStart: timestamp
- id: uuid
- lotteryId: String
- organizerId: String
- signingKey: String
- status: lotteryStatus_enum
+ update_currency(
+ """sets the columns of the filtered rows to the given values"""
+ _set: currency_set_input
+
+ """filter the rows which have to be updated"""
+ where: currency_bool_exp!
+ ): currency_mutation_response
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update single row of the table: "currency"
"""
- timezone: String
- updated_at: timestamptz
-}
+ update_currency_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: currency_set_input
+ pk_columns: currency_pk_columns_input!
+ ): currency
-"""aggregate max on columns"""
-type lotteryParameters_max_fields {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update multiples rows of table: "currency"
"""
- activityWebhookId: String
- created_at: timestamptz
+ update_currency_many(
+ """updates to execute, in order"""
+ updates: [currency_updates!]!
+ ): [currency_mutation_response]
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update data of the table: "eventParameters"
"""
- dateSaleEnd: timestamp
+ update_eventParameters(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventParameters_bool_exp!
+ ): eventParameters_mutation_response
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update single row of the table: "eventParameters"
"""
- dateSaleStart: timestamp
- id: uuid
- lotteryId: String
- organizerId: String
- signingKey: String
+ update_eventParameters_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventParameters_set_input
+ pk_columns: eventParameters_pk_columns_input!
+ ): eventParameters
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update multiples rows of table: "eventParameters"
"""
- timezone: String
- updated_at: timestamptz
-}
+ update_eventParameters_many(
+ """updates to execute, in order"""
+ updates: [eventParameters_updates!]!
+ ): [eventParameters_mutation_response]
-"""aggregate min on columns"""
-type lotteryParameters_min_fields {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update data of the table: "eventPassNft"
"""
- activityWebhookId: String
- created_at: timestamptz
+ update_eventPassNft(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: eventPassNft_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: eventPassNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: eventPassNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: eventPassNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: eventPassNft_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNft_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNft_bool_exp!
+ ): eventPassNft_mutation_response
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update data of the table: "eventPassNftContract"
"""
- dateSaleEnd: timestamp
+ update_eventPassNftContract(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContract_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNftContract_bool_exp!
+ ): eventPassNftContract_mutation_response
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update data of the table: "eventPassNftContractType"
"""
- dateSaleStart: timestamp
- id: uuid
- lotteryId: String
- organizerId: String
- signingKey: String
+ update_eventPassNftContractType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContractType_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassNftContractType_bool_exp!
+ ): eventPassNftContractType_mutation_response
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update single row of the table: "eventPassNftContractType"
"""
- timezone: String
- updated_at: timestamptz
-}
+ update_eventPassNftContractType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContractType_set_input
+ pk_columns: eventPassNftContractType_pk_columns_input!
+ ): eventPassNftContractType
-"""
-response of any mutation on the table "lotteryParameters"
-"""
-type lotteryParameters_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ update multiples rows of table: "eventPassNftContractType"
+ """
+ update_eventPassNftContractType_many(
+ """updates to execute, in order"""
+ updates: [eventPassNftContractType_updates!]!
+ ): [eventPassNftContractType_mutation_response]
- """data from the rows affected by the mutation"""
- returning: [lotteryParameters!]!
-}
+ """
+ update single row of the table: "eventPassNftContract"
+ """
+ update_eventPassNftContract_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNftContract_set_input
+ pk_columns: eventPassNftContract_pk_columns_input!
+ ): eventPassNftContract
-"""
-on_conflict condition type for table "lotteryParameters"
-"""
-input lotteryParameters_on_conflict {
- constraint: lotteryParameters_constraint!
- update_columns: [lotteryParameters_update_column!]! = []
- where: lotteryParameters_bool_exp
-}
+ """
+ update multiples rows of table: "eventPassNftContract"
+ """
+ update_eventPassNftContract_many(
+ """updates to execute, in order"""
+ updates: [eventPassNftContract_updates!]!
+ ): [eventPassNftContract_mutation_response]
-"""Ordering options when selecting data from "lotteryParameters"."""
-input lotteryParameters_order_by {
- activityWebhookId: order_by
- created_at: order_by
- dateSaleEnd: order_by
- dateSaleStart: order_by
- id: order_by
- lotteryId: order_by
- organizerId: order_by
- signingKey: order_by
- status: order_by
- timezone: order_by
- updated_at: order_by
-}
+ """
+ update single row of the table: "eventPassNft"
+ """
+ update_eventPassNft_by_pk(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: eventPassNft_append_input
-"""primary key columns input for table: lotteryParameters"""
-input lotteryParameters_pk_columns_input {
- id: uuid!
-}
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: eventPassNft_delete_at_path_input
-"""
-select columns of table "lotteryParameters"
-"""
-enum lotteryParameters_select_column {
- """column name"""
- activityWebhookId
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: eventPassNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: eventPassNft_delete_key_input
- """column name"""
- created_at
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassNft_inc_input
- """column name"""
- dateSaleEnd
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: eventPassNft_prepend_input
- """column name"""
- dateSaleStart
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassNft_set_input
+ pk_columns: eventPassNft_pk_columns_input!
+ ): eventPassNft
- """column name"""
- id
+ """
+ update multiples rows of table: "eventPassNft"
+ """
+ update_eventPassNft_many(
+ """updates to execute, in order"""
+ updates: [eventPassNft_updates!]!
+ ): [eventPassNft_mutation_response]
- """column name"""
- lotteryId
+ """
+ update data of the table: "eventPassOrderSums"
+ """
+ update_eventPassOrderSums(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassOrderSums_inc_input
- """column name"""
- organizerId
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassOrderSums_set_input
- """column name"""
- signingKey
+ """filter the rows which have to be updated"""
+ where: eventPassOrderSums_bool_exp!
+ ): eventPassOrderSums_mutation_response
- """column name"""
- status
+ """
+ update single row of the table: "eventPassOrderSums"
+ """
+ update_eventPassOrderSums_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: eventPassOrderSums_inc_input
- """column name"""
- timezone
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassOrderSums_set_input
+ pk_columns: eventPassOrderSums_pk_columns_input!
+ ): eventPassOrderSums
- """column name"""
- updated_at
-}
+ """
+ update multiples rows of table: "eventPassOrderSums"
+ """
+ update_eventPassOrderSums_many(
+ """updates to execute, in order"""
+ updates: [eventPassOrderSums_updates!]!
+ ): [eventPassOrderSums_mutation_response]
-"""
-input type for updating data in table "lotteryParameters"
-"""
-input lotteryParameters_set_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update data of the table: "eventPassType"
"""
- activityWebhookId: String
- created_at: timestamptz
+ update_eventPassType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassType_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventPassType_bool_exp!
+ ): eventPassType_mutation_response
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update single row of the table: "eventPassType"
"""
- dateSaleEnd: timestamp
+ update_eventPassType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassType_set_input
+ pk_columns: eventPassType_pk_columns_input!
+ ): eventPassType
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update multiples rows of table: "eventPassType"
"""
- dateSaleStart: timestamp
- id: uuid
- lotteryId: String
- organizerId: String
- signingKey: String
- status: lotteryStatus_enum
+ update_eventPassType_many(
+ """updates to execute, in order"""
+ updates: [eventPassType_updates!]!
+ ): [eventPassType_mutation_response]
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update data of the table: "eventPassValidationType"
"""
- timezone: String
- updated_at: timestamptz
-}
+ update_eventPassValidationType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassValidationType_set_input
-"""
-Streaming cursor of the table "lotteryParameters"
-"""
-input lotteryParameters_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: lotteryParameters_stream_cursor_value_input!
+ """filter the rows which have to be updated"""
+ where: eventPassValidationType_bool_exp!
+ ): eventPassValidationType_mutation_response
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ update single row of the table: "eventPassValidationType"
+ """
+ update_eventPassValidationType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventPassValidationType_set_input
+ pk_columns: eventPassValidationType_pk_columns_input!
+ ): eventPassValidationType
-"""Initial value of the column from where the streaming should start"""
-input lotteryParameters_stream_cursor_value_input {
"""
- The "activityWebhookId" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.
+ update multiples rows of table: "eventPassValidationType"
"""
- activityWebhookId: String
- created_at: timestamptz
+ update_eventPassValidationType_many(
+ """updates to execute, in order"""
+ updates: [eventPassValidationType_updates!]!
+ ): [eventPassValidationType_mutation_response]
"""
- Optional column
- for the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.
+ update data of the table: "eventStatus"
"""
- dateSaleEnd: timestamp
+ update_eventStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: eventStatus_bool_exp!
+ ): eventStatus_mutation_response
"""
- Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.
+ update single row of the table: "eventStatus"
"""
- dateSaleStart: timestamp
- id: uuid
- lotteryId: String
- organizerId: String
- signingKey: String
- status: lotteryStatus_enum
+ update_eventStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: eventStatus_set_input
+ pk_columns: eventStatus_pk_columns_input!
+ ): eventStatus
"""
- The "timezone" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.
+ update multiples rows of table: "eventStatus"
"""
- timezone: String
- updated_at: timestamptz
-}
+ update_eventStatus_many(
+ """updates to execute, in order"""
+ updates: [eventStatus_updates!]!
+ ): [eventStatus_mutation_response]
-"""
-update columns of table "lotteryParameters"
-"""
-enum lotteryParameters_update_column {
- """column name"""
- activityWebhookId
+ """
+ update data of the table: "follow"
+ """
+ update_follow(
+ """sets the columns of the filtered rows to the given values"""
+ _set: follow_set_input
- """column name"""
- created_at
+ """filter the rows which have to be updated"""
+ where: follow_bool_exp!
+ ): follow_mutation_response
- """column name"""
- dateSaleEnd
+ """
+ update single row of the table: "follow"
+ """
+ update_follow_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: follow_set_input
+ pk_columns: follow_pk_columns_input!
+ ): follow
- """column name"""
- dateSaleStart
+ """
+ update multiples rows of table: "follow"
+ """
+ update_follow_many(
+ """updates to execute, in order"""
+ updates: [follow_updates!]!
+ ): [follow_mutation_response]
- """column name"""
- id
+ """
+ update data of the table: "kyc"
+ """
+ update_kyc(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kyc_set_input
- """column name"""
- lotteryId
+ """filter the rows which have to be updated"""
+ where: kyc_bool_exp!
+ ): kyc_mutation_response
- """column name"""
- organizerId
+ """
+ update data of the table: "kycLevelName"
+ """
+ update_kycLevelName(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycLevelName_set_input
- """column name"""
- signingKey
+ """filter the rows which have to be updated"""
+ where: kycLevelName_bool_exp!
+ ): kycLevelName_mutation_response
- """column name"""
- status
+ """
+ update single row of the table: "kycLevelName"
+ """
+ update_kycLevelName_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycLevelName_set_input
+ pk_columns: kycLevelName_pk_columns_input!
+ ): kycLevelName
- """column name"""
- timezone
+ """
+ update multiples rows of table: "kycLevelName"
+ """
+ update_kycLevelName_many(
+ """updates to execute, in order"""
+ updates: [kycLevelName_updates!]!
+ ): [kycLevelName_mutation_response]
- """column name"""
- updated_at
-}
+ """
+ update data of the table: "kycStatus"
+ """
+ update_kycStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycStatus_set_input
-input lotteryParameters_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryParameters_set_input
+ """filter the rows which have to be updated"""
+ where: kycStatus_bool_exp!
+ ): kycStatus_mutation_response
- """filter the rows which have to be updated"""
- where: lotteryParameters_bool_exp!
-}
+ """
+ update single row of the table: "kycStatus"
+ """
+ update_kycStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kycStatus_set_input
+ pk_columns: kycStatus_pk_columns_input!
+ ): kycStatus
-"""
-columns and relationships of "lotteryStatus"
-"""
-type lotteryStatus {
- value: String!
-}
+ """
+ update multiples rows of table: "kycStatus"
+ """
+ update_kycStatus_many(
+ """updates to execute, in order"""
+ updates: [kycStatus_updates!]!
+ ): [kycStatus_mutation_response]
-"""
-aggregated selection of "lotteryStatus"
-"""
-type lotteryStatus_aggregate {
- aggregate: lotteryStatus_aggregate_fields
- nodes: [lotteryStatus!]!
-}
+ """
+ update single row of the table: "kyc"
+ """
+ update_kyc_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: kyc_set_input
+ pk_columns: kyc_pk_columns_input!
+ ): kyc
-"""
-aggregate fields of "lotteryStatus"
-"""
-type lotteryStatus_aggregate_fields {
- count(columns: [lotteryStatus_select_column!], distinct: Boolean): Int!
- max: lotteryStatus_max_fields
- min: lotteryStatus_min_fields
-}
+ """
+ update multiples rows of table: "kyc"
+ """
+ update_kyc_many(
+ """updates to execute, in order"""
+ updates: [kyc_updates!]!
+ ): [kyc_mutation_response]
-"""
-Boolean expression to filter rows from the table "lotteryStatus". All fields are combined with a logical 'AND'.
-"""
-input lotteryStatus_bool_exp {
- _and: [lotteryStatus_bool_exp!]
- _not: lotteryStatus_bool_exp
- _or: [lotteryStatus_bool_exp!]
- value: String_comparison_exp
-}
+ """
+ update data of the table: "lotteryParameters"
+ """
+ update_lotteryParameters(
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: lotteryParameters_bool_exp!
+ ): lotteryParameters_mutation_response
-"""
-unique or primary key constraints on table "lotteryStatus"
-"""
-enum lotteryStatus_constraint {
"""
- unique or primary key constraint on columns "value"
+ update single row of the table: "lotteryParameters"
"""
- lotteryStatus_pkey
-}
+ update_lotteryParameters_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryParameters_set_input
+ pk_columns: lotteryParameters_pk_columns_input!
+ ): lotteryParameters
-enum lotteryStatus_enum {
- DRAFT
- PUBLISHED
-}
+ """
+ update multiples rows of table: "lotteryParameters"
+ """
+ update_lotteryParameters_many(
+ """updates to execute, in order"""
+ updates: [lotteryParameters_updates!]!
+ ): [lotteryParameters_mutation_response]
-"""
-Boolean expression to compare columns of type "lotteryStatus_enum". All fields are combined with logical 'AND'.
-"""
-input lotteryStatus_enum_comparison_exp {
- _eq: lotteryStatus_enum
- _in: [lotteryStatus_enum!]
- _is_null: Boolean
- _neq: lotteryStatus_enum
- _nin: [lotteryStatus_enum!]
-}
+ """
+ update data of the table: "lotteryStatus"
+ """
+ update_lotteryStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryStatus_set_input
-"""
-input type for inserting data into table "lotteryStatus"
-"""
-input lotteryStatus_insert_input {
- value: String
-}
+ """filter the rows which have to be updated"""
+ where: lotteryStatus_bool_exp!
+ ): lotteryStatus_mutation_response
-"""aggregate max on columns"""
-type lotteryStatus_max_fields {
- value: String
-}
+ """
+ update single row of the table: "lotteryStatus"
+ """
+ update_lotteryStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: lotteryStatus_set_input
+ pk_columns: lotteryStatus_pk_columns_input!
+ ): lotteryStatus
-"""aggregate min on columns"""
-type lotteryStatus_min_fields {
- value: String
-}
+ """
+ update multiples rows of table: "lotteryStatus"
+ """
+ update_lotteryStatus_many(
+ """updates to execute, in order"""
+ updates: [lotteryStatus_updates!]!
+ ): [lotteryStatus_mutation_response]
-"""
-response of any mutation on the table "lotteryStatus"
-"""
-type lotteryStatus_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ update data of the table: "loyaltyCardNft"
+ """
+ update_loyaltyCardNft(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: loyaltyCardNft_append_input
- """data from the rows affected by the mutation"""
- returning: [lotteryStatus!]!
-}
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: loyaltyCardNft_delete_at_path_input
-"""
-on_conflict condition type for table "lotteryStatus"
-"""
-input lotteryStatus_on_conflict {
- constraint: lotteryStatus_constraint!
- update_columns: [lotteryStatus_update_column!]! = []
- where: lotteryStatus_bool_exp
-}
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: loyaltyCardNft_delete_elem_input
-"""Ordering options when selecting data from "lotteryStatus"."""
-input lotteryStatus_order_by {
- value: order_by
-}
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: loyaltyCardNft_delete_key_input
-"""primary key columns input for table: lotteryStatus"""
-input lotteryStatus_pk_columns_input {
- value: String!
-}
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: loyaltyCardNft_inc_input
-"""
-select columns of table "lotteryStatus"
-"""
-enum lotteryStatus_select_column {
- """column name"""
- value
-}
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: loyaltyCardNft_prepend_input
-"""
-input type for updating data in table "lotteryStatus"
-"""
-input lotteryStatus_set_input {
- value: String
-}
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardNft_set_input
-"""
-Streaming cursor of the table "lotteryStatus"
-"""
-input lotteryStatus_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: lotteryStatus_stream_cursor_value_input!
+ """filter the rows which have to be updated"""
+ where: loyaltyCardNft_bool_exp!
+ ): loyaltyCardNft_mutation_response
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ update data of the table: "loyaltyCardNftContract"
+ """
+ update_loyaltyCardNftContract(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardNftContract_set_input
-"""Initial value of the column from where the streaming should start"""
-input lotteryStatus_stream_cursor_value_input {
- value: String
-}
+ """filter the rows which have to be updated"""
+ where: loyaltyCardNftContract_bool_exp!
+ ): loyaltyCardNftContract_mutation_response
-"""
-update columns of table "lotteryStatus"
-"""
-enum lotteryStatus_update_column {
- """column name"""
- value
-}
+ """
+ update single row of the table: "loyaltyCardNftContract"
+ """
+ update_loyaltyCardNftContract_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardNftContract_set_input
+ pk_columns: loyaltyCardNftContract_pk_columns_input!
+ ): loyaltyCardNftContract
-input lotteryStatus_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryStatus_set_input
+ """
+ update multiples rows of table: "loyaltyCardNftContract"
+ """
+ update_loyaltyCardNftContract_many(
+ """updates to execute, in order"""
+ updates: [loyaltyCardNftContract_updates!]!
+ ): [loyaltyCardNftContract_mutation_response]
- """filter the rows which have to be updated"""
- where: lotteryStatus_bool_exp!
-}
+ """
+ update single row of the table: "loyaltyCardNft"
+ """
+ update_loyaltyCardNft_by_pk(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: loyaltyCardNft_append_input
-"""
-Temporary wallet information for minters, including optional links to event passes and packs.
-"""
-type minterTemporaryWallet {
- """The blockchain address of the temporary wallet."""
- address: String!
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: loyaltyCardNft_delete_at_path_input
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz!
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: loyaltyCardNft_delete_elem_input
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: loyaltyCardNft_delete_key_input
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: loyaltyCardNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: loyaltyCardNft_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardNft_set_input
+ pk_columns: loyaltyCardNft_pk_columns_input!
+ ): loyaltyCardNft
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update multiples rows of table: "loyaltyCardNft"
"""
- privateKey: String!
-}
-
-"""
-aggregated selection of "minterTemporaryWallet"
-"""
-type minterTemporaryWallet_aggregate {
- aggregate: minterTemporaryWallet_aggregate_fields
- nodes: [minterTemporaryWallet!]!
-}
+ update_loyaltyCardNft_many(
+ """updates to execute, in order"""
+ updates: [loyaltyCardNft_updates!]!
+ ): [loyaltyCardNft_mutation_response]
-"""
-aggregate fields of "minterTemporaryWallet"
-"""
-type minterTemporaryWallet_aggregate_fields {
- count(columns: [minterTemporaryWallet_select_column!], distinct: Boolean): Int!
- max: minterTemporaryWallet_max_fields
- min: minterTemporaryWallet_min_fields
-}
+ """
+ update data of the table: "loyaltyCardParameters"
+ """
+ update_loyaltyCardParameters(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardParameters_set_input
-"""
-Boolean expression to filter rows from the table "minterTemporaryWallet". All fields are combined with a logical 'AND'.
-"""
-input minterTemporaryWallet_bool_exp {
- _and: [minterTemporaryWallet_bool_exp!]
- _not: minterTemporaryWallet_bool_exp
- _or: [minterTemporaryWallet_bool_exp!]
- address: String_comparison_exp
- createdAt: timestamptz_comparison_exp
- eventPassId: String_comparison_exp
- packId: String_comparison_exp
- privateKey: String_comparison_exp
-}
+ """filter the rows which have to be updated"""
+ where: loyaltyCardParameters_bool_exp!
+ ): loyaltyCardParameters_mutation_response
-"""
-unique or primary key constraints on table "minterTemporaryWallet"
-"""
-enum minterTemporaryWallet_constraint {
"""
- unique or primary key constraint on columns "address"
+ update single row of the table: "loyaltyCardParameters"
"""
- minterTemporaryWallet_pkey
-}
+ update_loyaltyCardParameters_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardParameters_set_input
+ pk_columns: loyaltyCardParameters_pk_columns_input!
+ ): loyaltyCardParameters
-"""
-input type for inserting data into table "minterTemporaryWallet"
-"""
-input minterTemporaryWallet_insert_input {
- """The blockchain address of the temporary wallet."""
- address: String
+ """
+ update multiples rows of table: "loyaltyCardParameters"
+ """
+ update_loyaltyCardParameters_many(
+ """updates to execute, in order"""
+ updates: [loyaltyCardParameters_updates!]!
+ ): [loyaltyCardParameters_mutation_response]
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz
+ """
+ update data of the table: "loyaltyCardStatus"
+ """
+ update_loyaltyCardStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardStatus_set_input
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """filter the rows which have to be updated"""
+ where: loyaltyCardStatus_bool_exp!
+ ): loyaltyCardStatus_mutation_response
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """
+ update single row of the table: "loyaltyCardStatus"
+ """
+ update_loyaltyCardStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: loyaltyCardStatus_set_input
+ pk_columns: loyaltyCardStatus_pk_columns_input!
+ ): loyaltyCardStatus
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update multiples rows of table: "loyaltyCardStatus"
"""
- privateKey: String
-}
+ update_loyaltyCardStatus_many(
+ """updates to execute, in order"""
+ updates: [loyaltyCardStatus_updates!]!
+ ): [loyaltyCardStatus_mutation_response]
-"""aggregate max on columns"""
-type minterTemporaryWallet_max_fields {
- """The blockchain address of the temporary wallet."""
- address: String
+ """
+ update data of the table: "minterTemporaryWallet"
+ """
+ update_minterTemporaryWallet(
+ """sets the columns of the filtered rows to the given values"""
+ _set: minterTemporaryWallet_set_input
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz
+ """filter the rows which have to be updated"""
+ where: minterTemporaryWallet_bool_exp!
+ ): minterTemporaryWallet_mutation_response
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """
+ update single row of the table: "minterTemporaryWallet"
+ """
+ update_minterTemporaryWallet_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: minterTemporaryWallet_set_input
+ pk_columns: minterTemporaryWallet_pk_columns_input!
+ ): minterTemporaryWallet
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """
+ update multiples rows of table: "minterTemporaryWallet"
+ """
+ update_minterTemporaryWallet_many(
+ """updates to execute, in order"""
+ updates: [minterTemporaryWallet_updates!]!
+ ): [minterTemporaryWallet_mutation_response]
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update data of the table: "nftMintPassword"
"""
- privateKey: String
-}
+ update_nftMintPassword(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftMintPassword_inc_input
-"""aggregate min on columns"""
-type minterTemporaryWallet_min_fields {
- """The blockchain address of the temporary wallet."""
- address: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftMintPassword_set_input
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz
+ """filter the rows which have to be updated"""
+ where: nftMintPassword_bool_exp!
+ ): nftMintPassword_mutation_response
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """
+ update single row of the table: "nftMintPassword"
+ """
+ update_nftMintPassword_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftMintPassword_inc_input
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftMintPassword_set_input
+ pk_columns: nftMintPassword_pk_columns_input!
+ ): nftMintPassword
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update multiples rows of table: "nftMintPassword"
"""
- privateKey: String
-}
-
-"""
-response of any mutation on the table "minterTemporaryWallet"
-"""
-type minterTemporaryWallet_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ update_nftMintPassword_many(
+ """updates to execute, in order"""
+ updates: [nftMintPassword_updates!]!
+ ): [nftMintPassword_mutation_response]
- """data from the rows affected by the mutation"""
- returning: [minterTemporaryWallet!]!
-}
+ """
+ update data of the table: "nftStatus"
+ """
+ update_nftStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftStatus_set_input
-"""
-on_conflict condition type for table "minterTemporaryWallet"
-"""
-input minterTemporaryWallet_on_conflict {
- constraint: minterTemporaryWallet_constraint!
- update_columns: [minterTemporaryWallet_update_column!]! = []
- where: minterTemporaryWallet_bool_exp
-}
+ """filter the rows which have to be updated"""
+ where: nftStatus_bool_exp!
+ ): nftStatus_mutation_response
-"""Ordering options when selecting data from "minterTemporaryWallet"."""
-input minterTemporaryWallet_order_by {
- address: order_by
- createdAt: order_by
- eventPassId: order_by
- packId: order_by
- privateKey: order_by
-}
+ """
+ update single row of the table: "nftStatus"
+ """
+ update_nftStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftStatus_set_input
+ pk_columns: nftStatus_pk_columns_input!
+ ): nftStatus
-"""primary key columns input for table: minterTemporaryWallet"""
-input minterTemporaryWallet_pk_columns_input {
- """The blockchain address of the temporary wallet."""
- address: String!
-}
+ """
+ update multiples rows of table: "nftStatus"
+ """
+ update_nftStatus_many(
+ """updates to execute, in order"""
+ updates: [nftStatus_updates!]!
+ ): [nftStatus_mutation_response]
-"""
-select columns of table "minterTemporaryWallet"
-"""
-enum minterTemporaryWallet_select_column {
- """column name"""
- address
+ """
+ update data of the table: "nftTransfer"
+ """
+ update_nftTransfer(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftTransfer_inc_input
- """column name"""
- createdAt
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftTransfer_set_input
- """column name"""
- eventPassId
+ """filter the rows which have to be updated"""
+ where: nftTransfer_bool_exp!
+ ): nftTransfer_mutation_response
- """column name"""
- packId
+ """
+ update single row of the table: "nftTransfer"
+ """
+ update_nftTransfer_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftTransfer_inc_input
- """column name"""
- privateKey
-}
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftTransfer_set_input
+ pk_columns: nftTransfer_pk_columns_input!
+ ): nftTransfer
-"""
-input type for updating data in table "minterTemporaryWallet"
-"""
-input minterTemporaryWallet_set_input {
- """The blockchain address of the temporary wallet."""
- address: String
+ """
+ update multiples rows of table: "nftTransfer"
+ """
+ update_nftTransfer_many(
+ """updates to execute, in order"""
+ updates: [nftTransfer_updates!]!
+ ): [nftTransfer_mutation_response]
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz
+ """
+ update data of the table: "order"
+ """
+ update_order(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: order_inc_input
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: order_set_input
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """filter the rows which have to be updated"""
+ where: order_bool_exp!
+ ): order_mutation_response
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update data of the table: "orderStatus"
"""
- privateKey: String
-}
-
-"""
-Streaming cursor of the table "minterTemporaryWallet"
-"""
-input minterTemporaryWallet_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: minterTemporaryWallet_stream_cursor_value_input!
+ update_orderStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: orderStatus_set_input
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """filter the rows which have to be updated"""
+ where: orderStatus_bool_exp!
+ ): orderStatus_mutation_response
-"""Initial value of the column from where the streaming should start"""
-input minterTemporaryWallet_stream_cursor_value_input {
- """The blockchain address of the temporary wallet."""
- address: String
+ """
+ update single row of the table: "orderStatus"
+ """
+ update_orderStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: orderStatus_set_input
+ pk_columns: orderStatus_pk_columns_input!
+ ): orderStatus
- """The timestamp when the temporary wallet was created."""
- createdAt: timestamptz
+ """
+ update multiples rows of table: "orderStatus"
+ """
+ update_orderStatus_many(
+ """updates to execute, in order"""
+ updates: [orderStatus_updates!]!
+ ): [orderStatus_mutation_response]
- """Optional identifier for an event pass associated with this wallet."""
- eventPassId: String
+ """
+ update single row of the table: "order"
+ """
+ update_order_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: order_inc_input
- """Optional identifier for a pack associated with this wallet."""
- packId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: order_set_input
+ pk_columns: order_pk_columns_input!
+ ): order
"""
- The private key for the temporary wallet, necessary for signing transactions.
+ update multiples rows of table: "order"
"""
- privateKey: String
-}
+ update_order_many(
+ """updates to execute, in order"""
+ updates: [order_updates!]!
+ ): [order_mutation_response]
-"""
-update columns of table "minterTemporaryWallet"
-"""
-enum minterTemporaryWallet_update_column {
- """column name"""
- address
+ """
+ update data of the table: "packEventPassNft"
+ """
+ update_packEventPassNft(
+ """sets the columns of the filtered rows to the given values"""
+ _set: packEventPassNft_set_input
- """column name"""
- createdAt
+ """filter the rows which have to be updated"""
+ where: packEventPassNft_bool_exp!
+ ): packEventPassNft_mutation_response
- """column name"""
- eventPassId
+ """
+ update single row of the table: "packEventPassNft"
+ """
+ update_packEventPassNft_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: packEventPassNft_set_input
+ pk_columns: packEventPassNft_pk_columns_input!
+ ): packEventPassNft
- """column name"""
- packId
+ """
+ update multiples rows of table: "packEventPassNft"
+ """
+ update_packEventPassNft_many(
+ """updates to execute, in order"""
+ updates: [packEventPassNft_updates!]!
+ ): [packEventPassNft_mutation_response]
- """column name"""
- privateKey
-}
+ """
+ update data of the table: "packNftContract"
+ """
+ update_packNftContract(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContract_inc_input
-input minterTemporaryWallet_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: minterTemporaryWallet_set_input
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContract_set_input
- """filter the rows which have to be updated"""
- where: minterTemporaryWallet_bool_exp!
-}
+ """filter the rows which have to be updated"""
+ where: packNftContract_bool_exp!
+ ): packNftContract_mutation_response
-"""mutation root"""
-type mutation_root {
- """Create one asset"""
- createAsset(data: AssetCreateInput!): Asset
+ """
+ update data of the table: "packNftContractEventPass"
+ """
+ update_packNftContractEventPass(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContractEventPass_inc_input
- """Create one contentSpace"""
- createContentSpace(data: ContentSpaceCreateInput!): ContentSpace
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContractEventPass_set_input
- """Create one event"""
- createEvent(data: EventCreateInput!): Event
+ """filter the rows which have to be updated"""
+ where: packNftContractEventPass_bool_exp!
+ ): packNftContractEventPass_mutation_response
- """Create one eventPass"""
- createEventPass(data: EventPassCreateInput!): EventPass
+ """
+ update single row of the table: "packNftContractEventPass"
+ """
+ update_packNftContractEventPass_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContractEventPass_inc_input
- """Create one eventPassDelayedRevealed"""
- createEventPassDelayedRevealed(data: EventPassDelayedRevealedCreateInput!): EventPassDelayedRevealed
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContractEventPass_set_input
+ pk_columns: packNftContractEventPass_pk_columns_input!
+ ): packNftContractEventPass
- """Create one organizer"""
- createOrganizer(data: OrganizerCreateInput!): Organizer
+ """
+ update multiples rows of table: "packNftContractEventPass"
+ """
+ update_packNftContractEventPass_many(
+ """updates to execute, in order"""
+ updates: [packNftContractEventPass_updates!]!
+ ): [packNftContractEventPass_mutation_response]
- """Create one pack"""
- createPack(data: PackCreateInput!): Pack
+ """
+ update single row of the table: "packNftContract"
+ """
+ update_packNftContract_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContract_inc_input
- """Create one scheduledRelease"""
- createScheduledRelease(data: ScheduledReleaseCreateInput!): ScheduledRelease
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContract_set_input
+ pk_columns: packNftContract_pk_columns_input!
+ ): packNftContract
- """Delete one asset from _all_ existing stages. Returns deleted document."""
- deleteAsset(
- """Document to delete"""
- where: AssetWhereUniqueInput!
- ): Asset
+ """
+ update multiples rows of table: "packNftContract"
+ """
+ update_packNftContract_many(
+ """updates to execute, in order"""
+ updates: [packNftContract_updates!]!
+ ): [packNftContract_mutation_response]
"""
- Delete one contentSpace from _all_ existing stages. Returns deleted document.
+ update data of the table: "packNftSupply"
"""
- deleteContentSpace(
- """Document to delete"""
- where: ContentSpaceWhereUniqueInput!
- ): ContentSpace
+ update_packNftSupply(
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftSupply_set_input
- """Delete one event from _all_ existing stages. Returns deleted document."""
- deleteEvent(
- """Document to delete"""
- where: EventWhereUniqueInput!
- ): Event
+ """filter the rows which have to be updated"""
+ where: packNftSupply_bool_exp!
+ ): packNftSupply_mutation_response
"""
- Delete one eventPass from _all_ existing stages. Returns deleted document.
+ update single row of the table: "packNftSupply"
"""
- deleteEventPass(
- """Document to delete"""
- where: EventPassWhereUniqueInput!
- ): EventPass
+ update_packNftSupply_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftSupply_set_input
+ pk_columns: packNftSupply_pk_columns_input!
+ ): packNftSupply
"""
- Delete one eventPassDelayedRevealed from _all_ existing stages. Returns deleted document.
+ update multiples rows of table: "packNftSupply"
"""
- deleteEventPassDelayedRevealed(
- """Document to delete"""
- where: EventPassDelayedRevealedWhereUniqueInput!
- ): EventPassDelayedRevealed
+ update_packNftSupply_many(
+ """updates to execute, in order"""
+ updates: [packNftSupply_updates!]!
+ ): [packNftSupply_mutation_response]
- """Delete many Asset documents"""
- deleteManyAssets(
- """Documents to delete"""
- where: AssetManyWhereInput
- ): BatchPayload!
+ """
+ update data of the table: "packOrderSums"
+ """
+ update_packOrderSums(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packOrderSums_inc_input
- """Delete many Asset documents, return deleted documents"""
- deleteManyAssetsConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """sets the columns of the filtered rows to the given values"""
+ _set: packOrderSums_set_input
- """Documents to delete"""
- where: AssetManyWhereInput
- ): AssetConnection!
+ """filter the rows which have to be updated"""
+ where: packOrderSums_bool_exp!
+ ): packOrderSums_mutation_response
+
+ """
+ update single row of the table: "packOrderSums"
+ """
+ update_packOrderSums_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packOrderSums_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: packOrderSums_set_input
+ pk_columns: packOrderSums_pk_columns_input!
+ ): packOrderSums
- """Delete many ContentSpace documents"""
- deleteManyContentSpaces(
- """Documents to delete"""
- where: ContentSpaceManyWhereInput
- ): BatchPayload!
+ """
+ update multiples rows of table: "packOrderSums"
+ """
+ update_packOrderSums_many(
+ """updates to execute, in order"""
+ updates: [packOrderSums_updates!]!
+ ): [packOrderSums_mutation_response]
- """Delete many ContentSpace documents, return deleted documents"""
- deleteManyContentSpacesConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """
+ update data of the table: "passAmount"
+ """
+ update_passAmount(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passAmount_inc_input
- """Documents to delete"""
- where: ContentSpaceManyWhereInput
- ): ContentSpaceConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: passAmount_set_input
- """Delete many EventPass documents"""
- deleteManyEventPasses(
- """Documents to delete"""
- where: EventPassManyWhereInput
- ): BatchPayload!
+ """filter the rows which have to be updated"""
+ where: passAmount_bool_exp!
+ ): passAmount_mutation_response
- """Delete many EventPass documents, return deleted documents"""
- deleteManyEventPassesConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """
+ update single row of the table: "passAmount"
+ """
+ update_passAmount_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passAmount_inc_input
- """Documents to delete"""
- where: EventPassManyWhereInput
- ): EventPassConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: passAmount_set_input
+ pk_columns: passAmount_pk_columns_input!
+ ): passAmount
- """Delete many EventPassDelayedRevealed documents"""
- deleteManyEventPassesDelayedRevealed(
- """Documents to delete"""
- where: EventPassDelayedRevealedManyWhereInput
- ): BatchPayload!
+ """
+ update multiples rows of table: "passAmount"
+ """
+ update_passAmount_many(
+ """updates to execute, in order"""
+ updates: [passAmount_updates!]!
+ ): [passAmount_mutation_response]
"""
- Delete many EventPassDelayedRevealed documents, return deleted documents
+ update data of the table: "passPricing"
"""
- deleteManyEventPassesDelayedRevealedConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ update_passPricing(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passPricing_inc_input
- """Documents to delete"""
- where: EventPassDelayedRevealedManyWhereInput
- ): EventPassDelayedRevealedConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: passPricing_set_input
- """Delete many Event documents"""
- deleteManyEvents(
- """Documents to delete"""
- where: EventManyWhereInput
- ): BatchPayload!
+ """filter the rows which have to be updated"""
+ where: passPricing_bool_exp!
+ ): passPricing_mutation_response
- """Delete many Event documents, return deleted documents"""
- deleteManyEventsConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """
+ update single row of the table: "passPricing"
+ """
+ update_passPricing_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passPricing_inc_input
- """Documents to delete"""
- where: EventManyWhereInput
- ): EventConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: passPricing_set_input
+ pk_columns: passPricing_pk_columns_input!
+ ): passPricing
- """Delete many Organizer documents"""
- deleteManyOrganizers(
- """Documents to delete"""
- where: OrganizerManyWhereInput
- ): BatchPayload!
+ """
+ update multiples rows of table: "passPricing"
+ """
+ update_passPricing_many(
+ """updates to execute, in order"""
+ updates: [passPricing_updates!]!
+ ): [passPricing_mutation_response]
- """Delete many Organizer documents, return deleted documents"""
- deleteManyOrganizersConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """
+ update data of the table: "pendingOrder"
+ """
+ update_pendingOrder(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: pendingOrder_inc_input
- """Documents to delete"""
- where: OrganizerManyWhereInput
- ): OrganizerConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: pendingOrder_set_input
- """Delete many Pack documents"""
- deleteManyPacks(
- """Documents to delete"""
- where: PackManyWhereInput
- ): BatchPayload!
+ """filter the rows which have to be updated"""
+ where: pendingOrder_bool_exp!
+ ): pendingOrder_mutation_response
- """Delete many Pack documents, return deleted documents"""
- deleteManyPacksConnection(
- after: ID
- before: ID
- first: Int
- last: Int
- skip: Int
+ """
+ update single row of the table: "pendingOrder"
+ """
+ update_pendingOrder_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: pendingOrder_inc_input
- """Documents to delete"""
- where: PackManyWhereInput
- ): PackConnection!
+ """sets the columns of the filtered rows to the given values"""
+ _set: pendingOrder_set_input
+ pk_columns: pendingOrder_pk_columns_input!
+ ): pendingOrder
"""
- Delete one organizer from _all_ existing stages. Returns deleted document.
+ update multiples rows of table: "pendingOrder"
"""
- deleteOrganizer(
- """Document to delete"""
- where: OrganizerWhereUniqueInput!
- ): Organizer
+ update_pendingOrder_many(
+ """updates to execute, in order"""
+ updates: [pendingOrder_updates!]!
+ ): [pendingOrder_mutation_response]
- """Delete one pack from _all_ existing stages. Returns deleted document."""
- deletePack(
- """Document to delete"""
- where: PackWhereUniqueInput!
- ): Pack
+ """
+ update data of the table: "publishableApiKey"
+ """
+ update_publishableApiKey(
+ """sets the columns of the filtered rows to the given values"""
+ _set: publishableApiKey_set_input
- """Delete and return scheduled operation"""
- deleteScheduledOperation(
- """Document to delete"""
- where: ScheduledOperationWhereUniqueInput!
- ): ScheduledOperation
+ """filter the rows which have to be updated"""
+ where: publishableApiKey_bool_exp!
+ ): publishableApiKey_mutation_response
"""
- Delete one scheduledRelease from _all_ existing stages. Returns deleted document.
+ update single row of the table: "publishableApiKey"
"""
- deleteScheduledRelease(
- """Document to delete"""
- where: ScheduledReleaseWhereUniqueInput!
- ): ScheduledRelease
+ update_publishableApiKey_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: publishableApiKey_set_input
+ pk_columns: publishableApiKey_pk_columns_input!
+ ): publishableApiKey
"""
- delete data from the table: "account"
+ update multiples rows of table: "publishableApiKey"
"""
- delete_account(
- """filter the rows which have to be deleted"""
- where: account_bool_exp!
- ): account_mutation_response
+ update_publishableApiKey_many(
+ """updates to execute, in order"""
+ updates: [publishableApiKey_updates!]!
+ ): [publishableApiKey_mutation_response]
"""
- delete single row from the table: "account"
+ update data of the table: "roleAssignment"
"""
- delete_account_by_pk(id: uuid!): account
+ update_roleAssignment(
+ """sets the columns of the filtered rows to the given values"""
+ _set: roleAssignment_set_input
+
+ """filter the rows which have to be updated"""
+ where: roleAssignment_bool_exp!
+ ): roleAssignment_mutation_response
"""
- delete data from the table: "contentSpaceParameters"
+ update multiples rows of table: "roleAssignment"
"""
- delete_contentSpaceParameters(
- """filter the rows which have to be deleted"""
- where: contentSpaceParameters_bool_exp!
- ): contentSpaceParameters_mutation_response
+ update_roleAssignment_many(
+ """updates to execute, in order"""
+ updates: [roleAssignment_updates!]!
+ ): [roleAssignment_mutation_response]
"""
- delete single row from the table: "contentSpaceParameters"
+ update data of the table: "roles"
"""
- delete_contentSpaceParameters_by_pk(id: uuid!): contentSpaceParameters
+ update_roles(
+ """sets the columns of the filtered rows to the given values"""
+ _set: roles_set_input
+
+ """filter the rows which have to be updated"""
+ where: roles_bool_exp!
+ ): roles_mutation_response
"""
- delete data from the table: "contentSpaceStatus"
+ update single row of the table: "roles"
"""
- delete_contentSpaceStatus(
- """filter the rows which have to be deleted"""
- where: contentSpaceStatus_bool_exp!
- ): contentSpaceStatus_mutation_response
+ update_roles_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: roles_set_input
+ pk_columns: roles_pk_columns_input!
+ ): roles
"""
- delete single row from the table: "contentSpaceStatus"
+ update multiples rows of table: "roles"
"""
- delete_contentSpaceStatus_by_pk(value: String!): contentSpaceStatus
+ update_roles_many(
+ """updates to execute, in order"""
+ updates: [roles_updates!]!
+ ): [roles_mutation_response]
"""
- delete data from the table: "currency"
+ update data of the table: "secretApiKey"
"""
- delete_currency(
- """filter the rows which have to be deleted"""
- where: currency_bool_exp!
- ): currency_mutation_response
+ update_secretApiKey(
+ """sets the columns of the filtered rows to the given values"""
+ _set: secretApiKey_set_input
+
+ """filter the rows which have to be updated"""
+ where: secretApiKey_bool_exp!
+ ): secretApiKey_mutation_response
"""
- delete single row from the table: "currency"
+ update single row of the table: "secretApiKey"
"""
- delete_currency_by_pk(value: String!): currency
+ update_secretApiKey_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: secretApiKey_set_input
+ pk_columns: secretApiKey_pk_columns_input!
+ ): secretApiKey
"""
- delete data from the table: "eventParameters"
+ update multiples rows of table: "secretApiKey"
"""
- delete_eventParameters(
- """filter the rows which have to be deleted"""
- where: eventParameters_bool_exp!
- ): eventParameters_mutation_response
+ update_secretApiKey_many(
+ """updates to execute, in order"""
+ updates: [secretApiKey_updates!]!
+ ): [secretApiKey_mutation_response]
"""
- delete single row from the table: "eventParameters"
+ update data of the table: "shopifyCampaignParameters"
"""
- delete_eventParameters_by_pk(id: uuid!): eventParameters
+ update_shopifyCampaignParameters(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignParameters_set_input
+
+ """filter the rows which have to be updated"""
+ where: shopifyCampaignParameters_bool_exp!
+ ): shopifyCampaignParameters_mutation_response
"""
- delete data from the table: "eventPassNft"
+ update single row of the table: "shopifyCampaignParameters"
"""
- delete_eventPassNft(
- """filter the rows which have to be deleted"""
- where: eventPassNft_bool_exp!
- ): eventPassNft_mutation_response
+ update_shopifyCampaignParameters_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignParameters_set_input
+ pk_columns: shopifyCampaignParameters_pk_columns_input!
+ ): shopifyCampaignParameters
"""
- delete data from the table: "eventPassNftContract"
+ update multiples rows of table: "shopifyCampaignParameters"
"""
- delete_eventPassNftContract(
- """filter the rows which have to be deleted"""
- where: eventPassNftContract_bool_exp!
- ): eventPassNftContract_mutation_response
+ update_shopifyCampaignParameters_many(
+ """updates to execute, in order"""
+ updates: [shopifyCampaignParameters_updates!]!
+ ): [shopifyCampaignParameters_mutation_response]
"""
- delete data from the table: "eventPassNftContractType"
+ update data of the table: "shopifyCampaignStatus"
"""
- delete_eventPassNftContractType(
- """filter the rows which have to be deleted"""
- where: eventPassNftContractType_bool_exp!
- ): eventPassNftContractType_mutation_response
+ update_shopifyCampaignStatus(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: shopifyCampaignStatus_bool_exp!
+ ): shopifyCampaignStatus_mutation_response
"""
- delete single row from the table: "eventPassNftContractType"
+ update single row of the table: "shopifyCampaignStatus"
"""
- delete_eventPassNftContractType_by_pk(
- """Type name for event pass NFT contract."""
- value: String!
- ): eventPassNftContractType
+ update_shopifyCampaignStatus_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignStatus_set_input
+ pk_columns: shopifyCampaignStatus_pk_columns_input!
+ ): shopifyCampaignStatus
"""
- delete single row from the table: "eventPassNftContract"
+ update multiples rows of table: "shopifyCampaignStatus"
"""
- delete_eventPassNftContract_by_pk(id: uuid!): eventPassNftContract
+ update_shopifyCampaignStatus_many(
+ """updates to execute, in order"""
+ updates: [shopifyCampaignStatus_updates!]!
+ ): [shopifyCampaignStatus_mutation_response]
"""
- delete single row from the table: "eventPassNft"
+ update data of the table: "shopifyCustomer"
"""
- delete_eventPassNft_by_pk(id: uuid!): eventPassNft
+ update_shopifyCustomer(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCustomer_set_input
+
+ """filter the rows which have to be updated"""
+ where: shopifyCustomer_bool_exp!
+ ): shopifyCustomer_mutation_response
"""
- delete data from the table: "eventPassOrderSums"
+ update multiples rows of table: "shopifyCustomer"
"""
- delete_eventPassOrderSums(
- """filter the rows which have to be deleted"""
- where: eventPassOrderSums_bool_exp!
- ): eventPassOrderSums_mutation_response
+ update_shopifyCustomer_many(
+ """updates to execute, in order"""
+ updates: [shopifyCustomer_updates!]!
+ ): [shopifyCustomer_mutation_response]
"""
- delete single row from the table: "eventPassOrderSums"
+ update data of the table: "shopifyDomain"
"""
- delete_eventPassOrderSums_by_pk(eventPassId: String!): eventPassOrderSums
+ update_shopifyDomain(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyDomain_set_input
+
+ """filter the rows which have to be updated"""
+ where: shopifyDomain_bool_exp!
+ ): shopifyDomain_mutation_response
"""
- delete data from the table: "eventPassType"
+ update single row of the table: "shopifyDomain"
"""
- delete_eventPassType(
- """filter the rows which have to be deleted"""
- where: eventPassType_bool_exp!
- ): eventPassType_mutation_response
+ update_shopifyDomain_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyDomain_set_input
+ pk_columns: shopifyDomain_pk_columns_input!
+ ): shopifyDomain
"""
- delete single row from the table: "eventPassType"
+ update multiples rows of table: "shopifyDomain"
"""
- delete_eventPassType_by_pk(
- """Type name for event pass."""
- value: String!
- ): eventPassType
+ update_shopifyDomain_many(
+ """updates to execute, in order"""
+ updates: [shopifyDomain_updates!]!
+ ): [shopifyDomain_mutation_response]
"""
- delete data from the table: "eventPassValidationType"
+ update data of the table: "stampNft"
"""
- delete_eventPassValidationType(
- """filter the rows which have to be deleted"""
- where: eventPassValidationType_bool_exp!
- ): eventPassValidationType_mutation_response
+ update_stampNft(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNft_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: stampNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: stampNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNft_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNft_set_input
+
+ """filter the rows which have to be updated"""
+ where: stampNft_bool_exp!
+ ): stampNft_mutation_response
"""
- delete single row from the table: "eventPassValidationType"
+ update data of the table: "stampNftContract"
"""
- delete_eventPassValidationType_by_pk(
- """Type name for event pass validation."""
- value: String!
- ): eventPassValidationType
+ update_stampNftContract(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNftContract_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: stampNftContract_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: stampNftContract_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNftContract_delete_key_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNftContract_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContract_set_input
+
+ """filter the rows which have to be updated"""
+ where: stampNftContract_bool_exp!
+ ): stampNftContract_mutation_response
"""
- delete data from the table: "eventStatus"
+ update data of the table: "stampNftContractType"
"""
- delete_eventStatus(
- """filter the rows which have to be deleted"""
- where: eventStatus_bool_exp!
- ): eventStatus_mutation_response
+ update_stampNftContractType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContractType_set_input
+
+ """filter the rows which have to be updated"""
+ where: stampNftContractType_bool_exp!
+ ): stampNftContractType_mutation_response
"""
- delete single row from the table: "eventStatus"
+ update single row of the table: "stampNftContractType"
"""
- delete_eventStatus_by_pk(value: String!): eventStatus
+ update_stampNftContractType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContractType_set_input
+ pk_columns: stampNftContractType_pk_columns_input!
+ ): stampNftContractType
"""
- delete data from the table: "follow"
+ update multiples rows of table: "stampNftContractType"
"""
- delete_follow(
- """filter the rows which have to be deleted"""
- where: follow_bool_exp!
- ): follow_mutation_response
+ update_stampNftContractType_many(
+ """updates to execute, in order"""
+ updates: [stampNftContractType_updates!]!
+ ): [stampNftContractType_mutation_response]
"""
- delete single row from the table: "follow"
+ update single row of the table: "stampNftContract"
"""
- delete_follow_by_pk(
+ update_stampNftContract_by_pk(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNftContract_append_input
+
"""
- References the unique identifier of the account that is following an organizer.
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
- accountId: uuid!
+ _delete_at_path: stampNftContract_delete_at_path_input
"""
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
- organizerSlug: String!
- ): follow
+ _delete_elem: stampNftContract_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNftContract_delete_key_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNftContract_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContract_set_input
+ pk_columns: stampNftContract_pk_columns_input!
+ ): stampNftContract
"""
- delete data from the table: "kyc"
+ update multiples rows of table: "stampNftContract"
"""
- delete_kyc(
- """filter the rows which have to be deleted"""
- where: kyc_bool_exp!
- ): kyc_mutation_response
+ update_stampNftContract_many(
+ """updates to execute, in order"""
+ updates: [stampNftContract_updates!]!
+ ): [stampNftContract_mutation_response]
"""
- delete data from the table: "kycLevelName"
+ update data of the table: "stampNftSupply"
"""
- delete_kycLevelName(
- """filter the rows which have to be deleted"""
- where: kycLevelName_bool_exp!
- ): kycLevelName_mutation_response
+ update_stampNftSupply(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNftSupply_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftSupply_set_input
+
+ """filter the rows which have to be updated"""
+ where: stampNftSupply_bool_exp!
+ ): stampNftSupply_mutation_response
"""
- delete single row from the table: "kycLevelName"
+ update single row of the table: "stampNftSupply"
"""
- delete_kycLevelName_by_pk(
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String!
- ): kycLevelName
+ update_stampNftSupply_by_pk(
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNftSupply_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftSupply_set_input
+ pk_columns: stampNftSupply_pk_columns_input!
+ ): stampNftSupply
"""
- delete data from the table: "kycStatus"
+ update multiples rows of table: "stampNftSupply"
"""
- delete_kycStatus(
- """filter the rows which have to be deleted"""
- where: kycStatus_bool_exp!
- ): kycStatus_mutation_response
+ update_stampNftSupply_many(
+ """updates to execute, in order"""
+ updates: [stampNftSupply_updates!]!
+ ): [stampNftSupply_mutation_response]
"""
- delete single row from the table: "kycStatus"
+ update single row of the table: "stampNft"
"""
- delete_kycStatus_by_pk(
+ update_stampNft_by_pk(
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNft_append_input
+
"""
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
- value: String!
- ): kycStatus
+ _delete_at_path: stampNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: stampNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNft_prepend_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNft_set_input
+ pk_columns: stampNft_pk_columns_input!
+ ): stampNft
"""
- delete single row from the table: "kyc"
+ update multiples rows of table: "stampNft"
"""
- delete_kyc_by_pk(
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid!
- ): kyc
+ update_stampNft_many(
+ """updates to execute, in order"""
+ updates: [stampNft_updates!]!
+ ): [stampNft_mutation_response]
+
+ """
+ update data of the table: "stripeCheckoutSession"
+ """
+ update_stripeCheckoutSession(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCheckoutSession_set_input
+
+ """filter the rows which have to be updated"""
+ where: stripeCheckoutSession_bool_exp!
+ ): stripeCheckoutSession_mutation_response
+
+ """
+ update data of the table: "stripeCheckoutSessionType"
+ """
+ update_stripeCheckoutSessionType(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCheckoutSessionType_set_input
+
+ """filter the rows which have to be updated"""
+ where: stripeCheckoutSessionType_bool_exp!
+ ): stripeCheckoutSessionType_mutation_response
"""
- delete data from the table: "lotteryParameters"
+ update single row of the table: "stripeCheckoutSessionType"
"""
- delete_lotteryParameters(
- """filter the rows which have to be deleted"""
- where: lotteryParameters_bool_exp!
- ): lotteryParameters_mutation_response
+ update_stripeCheckoutSessionType_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCheckoutSessionType_set_input
+ pk_columns: stripeCheckoutSessionType_pk_columns_input!
+ ): stripeCheckoutSessionType
"""
- delete single row from the table: "lotteryParameters"
+ update multiples rows of table: "stripeCheckoutSessionType"
"""
- delete_lotteryParameters_by_pk(id: uuid!): lotteryParameters
+ update_stripeCheckoutSessionType_many(
+ """updates to execute, in order"""
+ updates: [stripeCheckoutSessionType_updates!]!
+ ): [stripeCheckoutSessionType_mutation_response]
"""
- delete data from the table: "lotteryStatus"
+ update single row of the table: "stripeCheckoutSession"
"""
- delete_lotteryStatus(
- """filter the rows which have to be deleted"""
- where: lotteryStatus_bool_exp!
- ): lotteryStatus_mutation_response
+ update_stripeCheckoutSession_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCheckoutSession_set_input
+ pk_columns: stripeCheckoutSession_pk_columns_input!
+ ): stripeCheckoutSession
"""
- delete single row from the table: "lotteryStatus"
+ update multiples rows of table: "stripeCheckoutSession"
"""
- delete_lotteryStatus_by_pk(value: String!): lotteryStatus
+ update_stripeCheckoutSession_many(
+ """updates to execute, in order"""
+ updates: [stripeCheckoutSession_updates!]!
+ ): [stripeCheckoutSession_mutation_response]
"""
- delete data from the table: "minterTemporaryWallet"
+ update data of the table: "stripeCustomer"
"""
- delete_minterTemporaryWallet(
- """filter the rows which have to be deleted"""
- where: minterTemporaryWallet_bool_exp!
- ): minterTemporaryWallet_mutation_response
+ update_stripeCustomer(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCustomer_set_input
+
+ """filter the rows which have to be updated"""
+ where: stripeCustomer_bool_exp!
+ ): stripeCustomer_mutation_response
"""
- delete single row from the table: "minterTemporaryWallet"
+ update single row of the table: "stripeCustomer"
"""
- delete_minterTemporaryWallet_by_pk(
- """The blockchain address of the temporary wallet."""
- address: String!
- ): minterTemporaryWallet
+ update_stripeCustomer_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: stripeCustomer_set_input
+ pk_columns: stripeCustomer_pk_columns_input!
+ ): stripeCustomer
"""
- delete data from the table: "nftTransfer"
+ update multiples rows of table: "stripeCustomer"
"""
- delete_nftTransfer(
- """filter the rows which have to be deleted"""
- where: nftTransfer_bool_exp!
- ): nftTransfer_mutation_response
+ update_stripeCustomer_many(
+ """updates to execute, in order"""
+ updates: [stripeCustomer_updates!]!
+ ): [stripeCustomer_mutation_response]
"""
- delete single row from the table: "nftTransfer"
+ update data of the table: "timezone"
"""
- delete_nftTransfer_by_pk(id: uuid!): nftTransfer
+ update_timezone(
+ """sets the columns of the filtered rows to the given values"""
+ _set: timezone_set_input
+
+ """filter the rows which have to be updated"""
+ where: timezone_bool_exp!
+ ): timezone_mutation_response
"""
- delete data from the table: "order"
+ update single row of the table: "timezone"
"""
- delete_order(
- """filter the rows which have to be deleted"""
- where: order_bool_exp!
- ): order_mutation_response
+ update_timezone_by_pk(
+ """sets the columns of the filtered rows to the given values"""
+ _set: timezone_set_input
+ pk_columns: timezone_pk_columns_input!
+ ): timezone
"""
- delete data from the table: "orderStatus"
+ update multiples rows of table: "timezone"
"""
- delete_orderStatus(
- """filter the rows which have to be deleted"""
- where: orderStatus_bool_exp!
- ): orderStatus_mutation_response
+ update_timezone_many(
+ """updates to execute, in order"""
+ updates: [timezone_updates!]!
+ ): [timezone_mutation_response]
+
+ """Upsert one asset"""
+ upsertAsset(upsert: AssetUpsertInput!, where: AssetWhereUniqueInput!): Asset
+
+ """Upsert one contentSpace"""
+ upsertContentSpace(upsert: ContentSpaceUpsertInput!, where: ContentSpaceWhereUniqueInput!): ContentSpace
+
+ """Upsert one event"""
+ upsertEvent(upsert: EventUpsertInput!, where: EventWhereUniqueInput!): Event
+
+ """Upsert one eventPass"""
+ upsertEventPass(upsert: EventPassUpsertInput!, where: EventPassWhereUniqueInput!): EventPass
+
+ """Upsert one eventPassDelayedRevealed"""
+ upsertEventPassDelayedRevealed(upsert: EventPassDelayedRevealedUpsertInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
+
+ """Upsert one loyaltyCard"""
+ upsertLoyaltyCard(upsert: LoyaltyCardUpsertInput!, where: LoyaltyCardWhereUniqueInput!): LoyaltyCard
+
+ """Upsert one organizer"""
+ upsertOrganizer(upsert: OrganizerUpsertInput!, where: OrganizerWhereUniqueInput!): Organizer
+
+ """Upsert one pack"""
+ upsertPack(upsert: PackUpsertInput!, where: PackWhereUniqueInput!): Pack
+}
+
+"""
+The nftMintPassword table stores unique passwords that allow for the minting of NFTs on a specific contract. Each password is associated with a contract address, chain ID, and organizer ID, ensuring it can only be used for the intended NFT. Once a password is used to mint an NFT, the minterAddress and tokenId fields are populated, marking the password as consumed and linking it to the minted NFT.
+"""
+type nftMintPassword {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String!
+
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String!
+ created_at: timestamptz!
+ id: uuid!
"""
- delete single row from the table: "orderStatus"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_orderStatus_by_pk(value: String!): orderStatus
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String!
"""
- delete single row from the table: "order"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_order_by_pk(id: uuid!): order
+ password: String!
"""
- delete data from the table: "packEventPassNft"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_packEventPassNft(
- """filter the rows which have to be deleted"""
- where: packEventPassNft_bool_exp!
- ): packEventPassNft_mutation_response
+ tokenId: bigint
+ updated_at: timestamptz!
+}
+
+"""
+aggregated selection of "nftMintPassword"
+"""
+type nftMintPassword_aggregate {
+ aggregate: nftMintPassword_aggregate_fields
+ nodes: [nftMintPassword!]!
+}
+
+"""
+aggregate fields of "nftMintPassword"
+"""
+type nftMintPassword_aggregate_fields {
+ avg: nftMintPassword_avg_fields
+ count(columns: [nftMintPassword_select_column!], distinct: Boolean): Int!
+ max: nftMintPassword_max_fields
+ min: nftMintPassword_min_fields
+ stddev: nftMintPassword_stddev_fields
+ stddev_pop: nftMintPassword_stddev_pop_fields
+ stddev_samp: nftMintPassword_stddev_samp_fields
+ sum: nftMintPassword_sum_fields
+ var_pop: nftMintPassword_var_pop_fields
+ var_samp: nftMintPassword_var_samp_fields
+ variance: nftMintPassword_variance_fields
+}
+"""aggregate avg on columns"""
+type nftMintPassword_avg_fields {
"""
- delete single row from the table: "packEventPassNft"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_packEventPassNft_by_pk(
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid!
+ tokenId: Float
+}
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid!
- ): packEventPassNft
+"""
+Boolean expression to filter rows from the table "nftMintPassword". All fields are combined with a logical 'AND'.
+"""
+input nftMintPassword_bool_exp {
+ _and: [nftMintPassword_bool_exp!]
+ _not: nftMintPassword_bool_exp
+ _or: [nftMintPassword_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ minterAddress: String_comparison_exp
+ organizerId: String_comparison_exp
+ password: String_comparison_exp
+ tokenId: bigint_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+"""
+unique or primary key constraints on table "nftMintPassword"
+"""
+enum nftMintPassword_constraint {
"""
- delete data from the table: "packNftContract"
+ unique or primary key constraint on columns "organizerId", "chainId", "contractAddress", "password"
"""
- delete_packNftContract(
- """filter the rows which have to be deleted"""
- where: packNftContract_bool_exp!
- ): packNftContract_mutation_response
+ nftMintPassword_password_contractAddress_chainId_organizerI_key
"""
- delete data from the table: "packNftContractEventPass"
+ unique or primary key constraint on columns "id"
"""
- delete_packNftContractEventPass(
- """filter the rows which have to be deleted"""
- where: packNftContractEventPass_bool_exp!
- ): packNftContractEventPass_mutation_response
+ nftMintPassword_pkey
+}
+"""
+input type for incrementing numeric columns in table "nftMintPassword"
+"""
+input nftMintPassword_inc_input {
"""
- delete single row from the table: "packNftContractEventPass"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_packNftContractEventPass_by_pk(
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String!
+ tokenId: bigint
+}
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid!
- ): packNftContractEventPass
+"""
+input type for inserting data into table "nftMintPassword"
+"""
+input nftMintPassword_insert_input {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String
- """
- delete single row from the table: "packNftContract"
- """
- delete_packNftContract_by_pk(
- """Unique identifier for each pack NFT contract."""
- id: uuid!
- ): packNftContract
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- delete data from the table: "packNftSupply"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_packNftSupply(
- """filter the rows which have to be deleted"""
- where: packNftSupply_bool_exp!
- ): packNftSupply_mutation_response
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String
"""
- delete single row from the table: "packNftSupply"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_packNftSupply_by_pk(id: uuid!): packNftSupply
+ password: String
"""
- delete data from the table: "packOrderSums"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_packOrderSums(
- """filter the rows which have to be deleted"""
- where: packOrderSums_bool_exp!
- ): packOrderSums_mutation_response
+ tokenId: bigint
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type nftMintPassword_max_fields {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String
+
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- delete single row from the table: "packOrderSums"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_packOrderSums_by_pk(packId: String!): packOrderSums
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String
"""
- delete data from the table: "passAmount"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_passAmount(
- """filter the rows which have to be deleted"""
- where: passAmount_bool_exp!
- ): passAmount_mutation_response
+ password: String
"""
- delete single row from the table: "passAmount"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_passAmount_by_pk(id: uuid!): passAmount
+ tokenId: bigint
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type nftMintPassword_min_fields {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String
+
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- delete data from the table: "passPricing"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_passPricing(
- """filter the rows which have to be deleted"""
- where: passPricing_bool_exp!
- ): passPricing_mutation_response
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String
"""
- delete single row from the table: "passPricing"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_passPricing_by_pk(id: uuid!): passPricing
+ password: String
"""
- delete data from the table: "pendingOrder"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_pendingOrder(
- """filter the rows which have to be deleted"""
- where: pendingOrder_bool_exp!
- ): pendingOrder_mutation_response
+ tokenId: bigint
+ updated_at: timestamptz
+}
+
+"""
+response of any mutation on the table "nftMintPassword"
+"""
+type nftMintPassword_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [nftMintPassword!]!
+}
+
+"""
+on_conflict condition type for table "nftMintPassword"
+"""
+input nftMintPassword_on_conflict {
+ constraint: nftMintPassword_constraint!
+ update_columns: [nftMintPassword_update_column!]! = []
+ where: nftMintPassword_bool_exp
+}
+
+"""Ordering options when selecting data from "nftMintPassword"."""
+input nftMintPassword_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ id: order_by
+ minterAddress: order_by
+ organizerId: order_by
+ password: order_by
+ tokenId: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: nftMintPassword"""
+input nftMintPassword_pk_columns_input {
+ id: uuid!
+}
+
+"""
+select columns of table "nftMintPassword"
+"""
+enum nftMintPassword_select_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ minterAddress
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ password
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "nftMintPassword"
+"""
+input nftMintPassword_set_input {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String
+
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- delete single row from the table: "pendingOrder"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_pendingOrder_by_pk(id: uuid!): pendingOrder
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String
"""
- delete data from the table: "roleAssignment"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_roleAssignment(
- """filter the rows which have to be deleted"""
- where: roleAssignment_bool_exp!
- ): roleAssignment_mutation_response
+ password: String
"""
- delete data from the table: "roles"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_roles(
- """filter the rows which have to be deleted"""
- where: roles_bool_exp!
- ): roles_mutation_response
+ tokenId: bigint
+ updated_at: timestamptz
+}
+"""aggregate stddev on columns"""
+type nftMintPassword_stddev_fields {
"""
- delete single row from the table: "roles"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_roles_by_pk(
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String!
- ): roles
+ tokenId: Float
+}
+"""aggregate stddev_pop on columns"""
+type nftMintPassword_stddev_pop_fields {
"""
- delete data from the table: "stripeCheckoutSession"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_stripeCheckoutSession(
- """filter the rows which have to be deleted"""
- where: stripeCheckoutSession_bool_exp!
- ): stripeCheckoutSession_mutation_response
+ tokenId: Float
+}
+"""aggregate stddev_samp on columns"""
+type nftMintPassword_stddev_samp_fields {
"""
- delete data from the table: "stripeCheckoutSessionType"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_stripeCheckoutSessionType(
- """filter the rows which have to be deleted"""
- where: stripeCheckoutSessionType_bool_exp!
- ): stripeCheckoutSessionType_mutation_response
+ tokenId: Float
+}
+
+"""
+Streaming cursor of the table "nftMintPassword"
+"""
+input nftMintPassword_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: nftMintPassword_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input nftMintPassword_stream_cursor_value_input {
+ """The ID of the blockchain network where the NFT contract is deployed."""
+ chainId: String
+
+ """The address of the NFT contract that the password is associated with."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- delete single row from the table: "stripeCheckoutSessionType"
+ The address of the user who used the password to mint an NFT. If null, the password has not been used yet.
"""
- delete_stripeCheckoutSessionType_by_pk(
- """Type value."""
- value: String!
- ): stripeCheckoutSessionType
+ minterAddress: String
+
+ """The ID of the organizer that the NFT contract belongs to."""
+ organizerId: String
"""
- delete single row from the table: "stripeCheckoutSession"
+ The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.
"""
- delete_stripeCheckoutSession_by_pk(
- """Unique identifier for the Stripe Checkout Session."""
- stripeSessionId: String!
- ): stripeCheckoutSession
+ password: String
"""
- delete data from the table: "stripeCustomer"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_stripeCustomer(
- """filter the rows which have to be deleted"""
- where: stripeCustomer_bool_exp!
- ): stripeCustomer_mutation_response
+ tokenId: bigint
+ updated_at: timestamptz
+}
+"""aggregate sum on columns"""
+type nftMintPassword_sum_fields {
"""
- delete single row from the table: "stripeCustomer"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_stripeCustomer_by_pk(
- """Unique identifier for the Stripe Customer."""
- stripeCustomerId: String!
- ): stripeCustomer
+ tokenId: bigint
+}
+
+"""
+update columns of table "nftMintPassword"
+"""
+enum nftMintPassword_update_column {
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ minterAddress
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ password
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ updated_at
+}
+
+input nftMintPassword_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftMintPassword_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftMintPassword_set_input
+ """filter the rows which have to be updated"""
+ where: nftMintPassword_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type nftMintPassword_var_pop_fields {
"""
- delete data from the table: "timezone"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_timezone(
- """filter the rows which have to be deleted"""
- where: timezone_bool_exp!
- ): timezone_mutation_response
+ tokenId: Float
+}
+"""aggregate var_samp on columns"""
+type nftMintPassword_var_samp_fields {
"""
- delete single row from the table: "timezone"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- delete_timezone_by_pk(value: String!): timezone
+ tokenId: Float
+}
+"""aggregate variance on columns"""
+type nftMintPassword_variance_fields {
"""
- insert data into the table: "account"
+ The ID of the NFT that was minted using this password. If null, the password has not been used yet.
"""
- insert_account(
- """the rows to be inserted"""
- objects: [account_insert_input!]!
+ tokenId: Float
+}
- """upsert condition"""
- on_conflict: account_on_conflict
- ): account_mutation_response
+"""
+columns and relationships of "nftStatus"
+"""
+type nftStatus {
+ value: String!
+}
- """
- insert a single row into the table: "account"
- """
- insert_account_one(
- """the row to be inserted"""
- object: account_insert_input!
+"""
+aggregated selection of "nftStatus"
+"""
+type nftStatus_aggregate {
+ aggregate: nftStatus_aggregate_fields
+ nodes: [nftStatus!]!
+}
- """upsert condition"""
- on_conflict: account_on_conflict
- ): account
+"""
+aggregate fields of "nftStatus"
+"""
+type nftStatus_aggregate_fields {
+ count(columns: [nftStatus_select_column!], distinct: Boolean): Int!
+ max: nftStatus_max_fields
+ min: nftStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "nftStatus". All fields are combined with a logical 'AND'.
+"""
+input nftStatus_bool_exp {
+ _and: [nftStatus_bool_exp!]
+ _not: nftStatus_bool_exp
+ _or: [nftStatus_bool_exp!]
+ value: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "nftStatus"
+"""
+enum nftStatus_constraint {
"""
- insert data into the table: "contentSpaceParameters"
+ unique or primary key constraint on columns "value"
"""
- insert_contentSpaceParameters(
- """the rows to be inserted"""
- objects: [contentSpaceParameters_insert_input!]!
+ nftStatus_pkey
+}
- """upsert condition"""
- on_conflict: contentSpaceParameters_on_conflict
- ): contentSpaceParameters_mutation_response
+enum nftStatus_enum {
+ BURNED
+ COMPLETED
+ CONFIRMED
+ ERROR
+ HELD_BY_CONTRACT
+ IS_MINTING
+ IS_TRANSFERRING
+ LAZY_MINTED
+}
- """
- insert a single row into the table: "contentSpaceParameters"
- """
- insert_contentSpaceParameters_one(
- """the row to be inserted"""
- object: contentSpaceParameters_insert_input!
+"""
+Boolean expression to compare columns of type "nftStatus_enum". All fields are combined with logical 'AND'.
+"""
+input nftStatus_enum_comparison_exp {
+ _eq: nftStatus_enum
+ _in: [nftStatus_enum!]
+ _is_null: Boolean
+ _neq: nftStatus_enum
+ _nin: [nftStatus_enum!]
+}
- """upsert condition"""
- on_conflict: contentSpaceParameters_on_conflict
- ): contentSpaceParameters
+"""
+input type for inserting data into table "nftStatus"
+"""
+input nftStatus_insert_input {
+ value: String
+}
- """
- insert data into the table: "contentSpaceStatus"
- """
- insert_contentSpaceStatus(
- """the rows to be inserted"""
- objects: [contentSpaceStatus_insert_input!]!
+"""aggregate max on columns"""
+type nftStatus_max_fields {
+ value: String
+}
- """upsert condition"""
- on_conflict: contentSpaceStatus_on_conflict
- ): contentSpaceStatus_mutation_response
+"""aggregate min on columns"""
+type nftStatus_min_fields {
+ value: String
+}
- """
- insert a single row into the table: "contentSpaceStatus"
- """
- insert_contentSpaceStatus_one(
- """the row to be inserted"""
- object: contentSpaceStatus_insert_input!
+"""
+response of any mutation on the table "nftStatus"
+"""
+type nftStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """upsert condition"""
- on_conflict: contentSpaceStatus_on_conflict
- ): contentSpaceStatus
+ """data from the rows affected by the mutation"""
+ returning: [nftStatus!]!
+}
- """
- insert data into the table: "currency"
- """
- insert_currency(
- """the rows to be inserted"""
- objects: [currency_insert_input!]!
+"""
+on_conflict condition type for table "nftStatus"
+"""
+input nftStatus_on_conflict {
+ constraint: nftStatus_constraint!
+ update_columns: [nftStatus_update_column!]! = []
+ where: nftStatus_bool_exp
+}
- """upsert condition"""
- on_conflict: currency_on_conflict
- ): currency_mutation_response
+"""Ordering options when selecting data from "nftStatus"."""
+input nftStatus_order_by {
+ value: order_by
+}
- """
- insert a single row into the table: "currency"
- """
- insert_currency_one(
- """the row to be inserted"""
- object: currency_insert_input!
+"""primary key columns input for table: nftStatus"""
+input nftStatus_pk_columns_input {
+ value: String!
+}
- """upsert condition"""
- on_conflict: currency_on_conflict
- ): currency
+"""
+select columns of table "nftStatus"
+"""
+enum nftStatus_select_column {
+ """column name"""
+ value
+}
- """
- insert data into the table: "eventParameters"
- """
- insert_eventParameters(
- """the rows to be inserted"""
- objects: [eventParameters_insert_input!]!
+"""
+input type for updating data in table "nftStatus"
+"""
+input nftStatus_set_input {
+ value: String
+}
- """upsert condition"""
- on_conflict: eventParameters_on_conflict
- ): eventParameters_mutation_response
+"""
+Streaming cursor of the table "nftStatus"
+"""
+input nftStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: nftStatus_stream_cursor_value_input!
- """
- insert a single row into the table: "eventParameters"
- """
- insert_eventParameters_one(
- """the row to be inserted"""
- object: eventParameters_insert_input!
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """upsert condition"""
- on_conflict: eventParameters_on_conflict
- ): eventParameters
+"""Initial value of the column from where the streaming should start"""
+input nftStatus_stream_cursor_value_input {
+ value: String
+}
- """
- insert data into the table: "eventPassNft"
- """
- insert_eventPassNft(
- """the rows to be inserted"""
- objects: [eventPassNft_insert_input!]!
+"""
+update columns of table "nftStatus"
+"""
+enum nftStatus_update_column {
+ """column name"""
+ value
+}
- """upsert condition"""
- on_conflict: eventPassNft_on_conflict
- ): eventPassNft_mutation_response
+input nftStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftStatus_set_input
+
+ """filter the rows which have to be updated"""
+ where: nftStatus_bool_exp!
+}
+"""
+The nftTransfer model is built to record and chronicle the transfer of NFTs between addresses. This model is crucial in tracing the movement of an NFT, especially when validating that an event pass has reached its intended recipient. Such a system facilitates debugging and reduces the need for excessive querying of our indexer. Entries in this table are populated through two primary avenues: either via an activity webhook responding to real-time NFT transfers or through a regular cron job as a failsafe, ensuring data integrity even if the webhook fails to capture certain events.
+"""
+type nftTransfer {
"""
- insert data into the table: "eventPassNftContract"
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
"""
- insert_eventPassNftContract(
- """the rows to be inserted"""
- objects: [eventPassNftContract_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventPassNftContract_on_conflict
- ): eventPassNftContract_mutation_response
+ blockNumber: bigint!
"""
- insert data into the table: "eventPassNftContractType"
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
"""
- insert_eventPassNftContractType(
- """the rows to be inserted"""
- objects: [eventPassNftContractType_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventPassNftContractType_on_conflict
- ): eventPassNftContractType_mutation_response
+ chainId: String!
"""
- insert a single row into the table: "eventPassNftContractType"
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
"""
- insert_eventPassNftContractType_one(
- """the row to be inserted"""
- object: eventPassNftContractType_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassNftContractType_on_conflict
- ): eventPassNftContractType
+ contractAddress: String!
+ created_at: timestamptz!
"""
- insert a single row into the table: "eventPassNftContract"
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
"""
- insert_eventPassNftContract_one(
- """the row to be inserted"""
- object: eventPassNftContract_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassNftContract_on_conflict
- ): eventPassNftContract
+ eventId: String
"""
- insert a single row into the table: "eventPassNft"
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
"""
- insert_eventPassNft_one(
- """the row to be inserted"""
- object: eventPassNft_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassNft_on_conflict
- ): eventPassNft
+ eventPassId: String
"""
- insert data into the table: "eventPassOrderSums"
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
"""
- insert_eventPassOrderSums(
- """the rows to be inserted"""
- objects: [eventPassOrderSums_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventPassOrderSums_on_conflict
- ): eventPassOrderSums_mutation_response
+ fromAddress: String!
+ id: uuid!
"""
- insert a single row into the table: "eventPassOrderSums"
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
"""
- insert_eventPassOrderSums_one(
- """the row to be inserted"""
- object: eventPassOrderSums_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassOrderSums_on_conflict
- ): eventPassOrderSums
+ organizerId: String!
"""
- insert data into the table: "eventPassType"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_eventPassType(
- """the rows to be inserted"""
- objects: [eventPassType_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventPassType_on_conflict
- ): eventPassType_mutation_response
+ packAmount: Int
"""
- insert a single row into the table: "eventPassType"
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
"""
- insert_eventPassType_one(
- """the row to be inserted"""
- object: eventPassType_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassType_on_conflict
- ): eventPassType
+ packId: String
"""
- insert data into the table: "eventPassValidationType"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_eventPassValidationType(
- """the rows to be inserted"""
- objects: [eventPassValidationType_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventPassValidationType_on_conflict
- ): eventPassValidationType_mutation_response
+ stampAmount: Int
"""
- insert a single row into the table: "eventPassValidationType"
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
"""
- insert_eventPassValidationType_one(
- """the row to be inserted"""
- object: eventPassValidationType_insert_input!
-
- """upsert condition"""
- on_conflict: eventPassValidationType_on_conflict
- ): eventPassValidationType
+ stampNftId: uuid
"""
- insert data into the table: "eventStatus"
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
"""
- insert_eventStatus(
- """the rows to be inserted"""
- objects: [eventStatus_insert_input!]!
-
- """upsert condition"""
- on_conflict: eventStatus_on_conflict
- ): eventStatus_mutation_response
+ toAddress: String!
"""
- insert a single row into the table: "eventStatus"
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
"""
- insert_eventStatus_one(
- """the row to be inserted"""
- object: eventStatus_insert_input!
-
- """upsert condition"""
- on_conflict: eventStatus_on_conflict
- ): eventStatus
+ tokenId: bigint!
"""
- insert data into the table: "follow"
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
"""
- insert_follow(
- """the rows to be inserted"""
- objects: [follow_insert_input!]!
+ transactionHash: String!
+}
- """upsert condition"""
- on_conflict: follow_on_conflict
- ): follow_mutation_response
+"""
+aggregated selection of "nftTransfer"
+"""
+type nftTransfer_aggregate {
+ aggregate: nftTransfer_aggregate_fields
+ nodes: [nftTransfer!]!
+}
- """
- insert a single row into the table: "follow"
- """
- insert_follow_one(
- """the row to be inserted"""
- object: follow_insert_input!
+input nftTransfer_aggregate_bool_exp {
+ count: nftTransfer_aggregate_bool_exp_count
+}
- """upsert condition"""
- on_conflict: follow_on_conflict
- ): follow
+input nftTransfer_aggregate_bool_exp_count {
+ arguments: [nftTransfer_select_column!]
+ distinct: Boolean
+ filter: nftTransfer_bool_exp
+ predicate: Int_comparison_exp!
+}
- """
- insert data into the table: "kyc"
- """
- insert_kyc(
- """the rows to be inserted"""
- objects: [kyc_insert_input!]!
+"""
+aggregate fields of "nftTransfer"
+"""
+type nftTransfer_aggregate_fields {
+ avg: nftTransfer_avg_fields
+ count(columns: [nftTransfer_select_column!], distinct: Boolean): Int!
+ max: nftTransfer_max_fields
+ min: nftTransfer_min_fields
+ stddev: nftTransfer_stddev_fields
+ stddev_pop: nftTransfer_stddev_pop_fields
+ stddev_samp: nftTransfer_stddev_samp_fields
+ sum: nftTransfer_sum_fields
+ var_pop: nftTransfer_var_pop_fields
+ var_samp: nftTransfer_var_samp_fields
+ variance: nftTransfer_variance_fields
+}
- """upsert condition"""
- on_conflict: kyc_on_conflict
- ): kyc_mutation_response
+"""
+order by aggregate values of table "nftTransfer"
+"""
+input nftTransfer_aggregate_order_by {
+ avg: nftTransfer_avg_order_by
+ count: order_by
+ max: nftTransfer_max_order_by
+ min: nftTransfer_min_order_by
+ stddev: nftTransfer_stddev_order_by
+ stddev_pop: nftTransfer_stddev_pop_order_by
+ stddev_samp: nftTransfer_stddev_samp_order_by
+ sum: nftTransfer_sum_order_by
+ var_pop: nftTransfer_var_pop_order_by
+ var_samp: nftTransfer_var_samp_order_by
+ variance: nftTransfer_variance_order_by
+}
- """
- insert data into the table: "kycLevelName"
- """
- insert_kycLevelName(
- """the rows to be inserted"""
- objects: [kycLevelName_insert_input!]!
+"""
+input type for inserting array relation for remote table "nftTransfer"
+"""
+input nftTransfer_arr_rel_insert_input {
+ data: [nftTransfer_insert_input!]!
- """upsert condition"""
- on_conflict: kycLevelName_on_conflict
- ): kycLevelName_mutation_response
+ """upsert condition"""
+ on_conflict: nftTransfer_on_conflict
+}
+"""aggregate avg on columns"""
+type nftTransfer_avg_fields {
"""
- insert a single row into the table: "kycLevelName"
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
"""
- insert_kycLevelName_one(
- """the row to be inserted"""
- object: kycLevelName_insert_input!
-
- """upsert condition"""
- on_conflict: kycLevelName_on_conflict
- ): kycLevelName
+ blockNumber: Float
"""
- insert data into the table: "kycStatus"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_kycStatus(
- """the rows to be inserted"""
- objects: [kycStatus_insert_input!]!
-
- """upsert condition"""
- on_conflict: kycStatus_on_conflict
- ): kycStatus_mutation_response
+ packAmount: Float
"""
- insert a single row into the table: "kycStatus"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_kycStatus_one(
- """the row to be inserted"""
- object: kycStatus_insert_input!
-
- """upsert condition"""
- on_conflict: kycStatus_on_conflict
- ): kycStatus
+ stampAmount: Float
"""
- insert a single row into the table: "kyc"
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
"""
- insert_kyc_one(
- """the row to be inserted"""
- object: kyc_insert_input!
-
- """upsert condition"""
- on_conflict: kyc_on_conflict
- ): kyc
+ tokenId: Float
+}
+"""
+order by avg() on columns of table "nftTransfer"
+"""
+input nftTransfer_avg_order_by {
"""
- insert data into the table: "lotteryParameters"
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
"""
- insert_lotteryParameters(
- """the rows to be inserted"""
- objects: [lotteryParameters_insert_input!]!
-
- """upsert condition"""
- on_conflict: lotteryParameters_on_conflict
- ): lotteryParameters_mutation_response
+ blockNumber: order_by
"""
- insert a single row into the table: "lotteryParameters"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_lotteryParameters_one(
- """the row to be inserted"""
- object: lotteryParameters_insert_input!
-
- """upsert condition"""
- on_conflict: lotteryParameters_on_conflict
- ): lotteryParameters
+ packAmount: order_by
"""
- insert data into the table: "lotteryStatus"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_lotteryStatus(
- """the rows to be inserted"""
- objects: [lotteryStatus_insert_input!]!
-
- """upsert condition"""
- on_conflict: lotteryStatus_on_conflict
- ): lotteryStatus_mutation_response
+ stampAmount: order_by
"""
- insert a single row into the table: "lotteryStatus"
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
"""
- insert_lotteryStatus_one(
- """the row to be inserted"""
- object: lotteryStatus_insert_input!
+ tokenId: order_by
+}
- """upsert condition"""
- on_conflict: lotteryStatus_on_conflict
- ): lotteryStatus
+"""
+Boolean expression to filter rows from the table "nftTransfer". All fields are combined with a logical 'AND'.
+"""
+input nftTransfer_bool_exp {
+ _and: [nftTransfer_bool_exp!]
+ _not: nftTransfer_bool_exp
+ _or: [nftTransfer_bool_exp!]
+ blockNumber: bigint_comparison_exp
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventId: String_comparison_exp
+ eventPassId: String_comparison_exp
+ fromAddress: String_comparison_exp
+ id: uuid_comparison_exp
+ organizerId: String_comparison_exp
+ packAmount: Int_comparison_exp
+ packId: String_comparison_exp
+ stampAmount: Int_comparison_exp
+ stampNftId: uuid_comparison_exp
+ toAddress: String_comparison_exp
+ tokenId: bigint_comparison_exp
+ transactionHash: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "nftTransfer"
+"""
+enum nftTransfer_constraint {
"""
- insert data into the table: "minterTemporaryWallet"
+ unique or primary key constraint on columns "id"
"""
- insert_minterTemporaryWallet(
- """the rows to be inserted"""
- objects: [minterTemporaryWallet_insert_input!]!
-
- """upsert condition"""
- on_conflict: minterTemporaryWallet_on_conflict
- ): minterTemporaryWallet_mutation_response
+ nftTransfer_pkey
"""
- insert a single row into the table: "minterTemporaryWallet"
+ unique or primary key constraint on columns "transactionHash", "contractAddress", "tokenId"
"""
- insert_minterTemporaryWallet_one(
- """the row to be inserted"""
- object: minterTemporaryWallet_insert_input!
-
- """upsert condition"""
- on_conflict: minterTemporaryWallet_on_conflict
- ): minterTemporaryWallet
+ nft_transfer_unique_transfer
+}
+"""
+input type for incrementing numeric columns in table "nftTransfer"
+"""
+input nftTransfer_inc_input {
"""
- insert data into the table: "nftTransfer"
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
"""
- insert_nftTransfer(
- """the rows to be inserted"""
- objects: [nftTransfer_insert_input!]!
-
- """upsert condition"""
- on_conflict: nftTransfer_on_conflict
- ): nftTransfer_mutation_response
+ blockNumber: bigint
"""
- insert a single row into the table: "nftTransfer"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_nftTransfer_one(
- """the row to be inserted"""
- object: nftTransfer_insert_input!
-
- """upsert condition"""
- on_conflict: nftTransfer_on_conflict
- ): nftTransfer
+ packAmount: Int
"""
- insert data into the table: "order"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_order(
- """the rows to be inserted"""
- objects: [order_insert_input!]!
-
- """upsert condition"""
- on_conflict: order_on_conflict
- ): order_mutation_response
+ stampAmount: Int
"""
- insert data into the table: "orderStatus"
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
"""
- insert_orderStatus(
- """the rows to be inserted"""
- objects: [orderStatus_insert_input!]!
-
- """upsert condition"""
- on_conflict: orderStatus_on_conflict
- ): orderStatus_mutation_response
+ tokenId: bigint
+}
+"""
+input type for inserting data into table "nftTransfer"
+"""
+input nftTransfer_insert_input {
"""
- insert a single row into the table: "orderStatus"
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
"""
- insert_orderStatus_one(
- """the row to be inserted"""
- object: orderStatus_insert_input!
-
- """upsert condition"""
- on_conflict: orderStatus_on_conflict
- ): orderStatus
+ blockNumber: bigint
"""
- insert a single row into the table: "order"
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
"""
- insert_order_one(
- """the row to be inserted"""
- object: order_insert_input!
-
- """upsert condition"""
- on_conflict: order_on_conflict
- ): order
+ chainId: String
"""
- insert data into the table: "packEventPassNft"
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
"""
- insert_packEventPassNft(
- """the rows to be inserted"""
- objects: [packEventPassNft_insert_input!]!
-
- """upsert condition"""
- on_conflict: packEventPassNft_on_conflict
- ): packEventPassNft_mutation_response
+ contractAddress: String
+ created_at: timestamptz
"""
- insert a single row into the table: "packEventPassNft"
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
"""
- insert_packEventPassNft_one(
- """the row to be inserted"""
- object: packEventPassNft_insert_input!
-
- """upsert condition"""
- on_conflict: packEventPassNft_on_conflict
- ): packEventPassNft
+ eventId: String
"""
- insert data into the table: "packNftContract"
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
"""
- insert_packNftContract(
- """the rows to be inserted"""
- objects: [packNftContract_insert_input!]!
-
- """upsert condition"""
- on_conflict: packNftContract_on_conflict
- ): packNftContract_mutation_response
+ eventPassId: String
"""
- insert data into the table: "packNftContractEventPass"
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
"""
- insert_packNftContractEventPass(
- """the rows to be inserted"""
- objects: [packNftContractEventPass_insert_input!]!
-
- """upsert condition"""
- on_conflict: packNftContractEventPass_on_conflict
- ): packNftContractEventPass_mutation_response
+ fromAddress: String
+ id: uuid
"""
- insert a single row into the table: "packNftContractEventPass"
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
"""
- insert_packNftContractEventPass_one(
- """the row to be inserted"""
- object: packNftContractEventPass_insert_input!
-
- """upsert condition"""
- on_conflict: packNftContractEventPass_on_conflict
- ): packNftContractEventPass
+ organizerId: String
"""
- insert a single row into the table: "packNftContract"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_packNftContract_one(
- """the row to be inserted"""
- object: packNftContract_insert_input!
-
- """upsert condition"""
- on_conflict: packNftContract_on_conflict
- ): packNftContract
+ packAmount: Int
"""
- insert data into the table: "packNftSupply"
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
"""
- insert_packNftSupply(
- """the rows to be inserted"""
- objects: [packNftSupply_insert_input!]!
-
- """upsert condition"""
- on_conflict: packNftSupply_on_conflict
- ): packNftSupply_mutation_response
+ packId: String
"""
- insert a single row into the table: "packNftSupply"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_packNftSupply_one(
- """the row to be inserted"""
- object: packNftSupply_insert_input!
-
- """upsert condition"""
- on_conflict: packNftSupply_on_conflict
- ): packNftSupply
+ stampAmount: Int
"""
- insert data into the table: "packOrderSums"
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
"""
- insert_packOrderSums(
- """the rows to be inserted"""
- objects: [packOrderSums_insert_input!]!
-
- """upsert condition"""
- on_conflict: packOrderSums_on_conflict
- ): packOrderSums_mutation_response
+ stampNftId: uuid
"""
- insert a single row into the table: "packOrderSums"
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
"""
- insert_packOrderSums_one(
- """the row to be inserted"""
- object: packOrderSums_insert_input!
+ toAddress: String
- """upsert condition"""
- on_conflict: packOrderSums_on_conflict
- ): packOrderSums
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
"""
- insert data into the table: "passAmount"
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
"""
- insert_passAmount(
- """the rows to be inserted"""
- objects: [passAmount_insert_input!]!
+ transactionHash: String
+}
- """upsert condition"""
- on_conflict: passAmount_on_conflict
- ): passAmount_mutation_response
+"""aggregate max on columns"""
+type nftTransfer_max_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: bigint
"""
- insert a single row into the table: "passAmount"
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
"""
- insert_passAmount_one(
- """the row to be inserted"""
- object: passAmount_insert_input!
+ chainId: String
- """upsert condition"""
- on_conflict: passAmount_on_conflict
- ): passAmount
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
"""
- insert data into the table: "passPricing"
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
"""
- insert_passPricing(
- """the rows to be inserted"""
- objects: [passPricing_insert_input!]!
+ eventId: String
- """upsert condition"""
- on_conflict: passPricing_on_conflict
- ): passPricing_mutation_response
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: String
"""
- insert a single row into the table: "passPricing"
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
"""
- insert_passPricing_one(
- """the row to be inserted"""
- object: passPricing_insert_input!
+ fromAddress: String
+ id: uuid
- """upsert condition"""
- on_conflict: passPricing_on_conflict
- ): passPricing
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: String
"""
- insert data into the table: "pendingOrder"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_pendingOrder(
- """the rows to be inserted"""
- objects: [pendingOrder_insert_input!]!
+ packAmount: Int
- """upsert condition"""
- on_conflict: pendingOrder_on_conflict
- ): pendingOrder_mutation_response
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: String
"""
- insert a single row into the table: "pendingOrder"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_pendingOrder_one(
- """the row to be inserted"""
- object: pendingOrder_insert_input!
+ stampAmount: Int
- """upsert condition"""
- on_conflict: pendingOrder_on_conflict
- ): pendingOrder
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: uuid
"""
- insert data into the table: "roleAssignment"
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
"""
- insert_roleAssignment(
- """the rows to be inserted"""
- objects: [roleAssignment_insert_input!]!
+ toAddress: String
- """upsert condition"""
- on_conflict: roleAssignment_on_conflict
- ): roleAssignment_mutation_response
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
"""
- insert a single row into the table: "roleAssignment"
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
"""
- insert_roleAssignment_one(
- """the row to be inserted"""
- object: roleAssignment_insert_input!
+ transactionHash: String
+}
- """upsert condition"""
- on_conflict: roleAssignment_on_conflict
- ): roleAssignment
+"""
+order by max() on columns of table "nftTransfer"
+"""
+input nftTransfer_max_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
"""
- insert data into the table: "roles"
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
"""
- insert_roles(
- """the rows to be inserted"""
- objects: [roles_insert_input!]!
+ chainId: order_by
- """upsert condition"""
- on_conflict: roles_on_conflict
- ): roles_mutation_response
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
"""
- insert a single row into the table: "roles"
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
"""
- insert_roles_one(
- """the row to be inserted"""
- object: roles_insert_input!
+ eventId: order_by
- """upsert condition"""
- on_conflict: roles_on_conflict
- ): roles
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: order_by
"""
- insert data into the table: "stripeCheckoutSession"
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
"""
- insert_stripeCheckoutSession(
- """the rows to be inserted"""
- objects: [stripeCheckoutSession_insert_input!]!
+ fromAddress: order_by
+ id: order_by
- """upsert condition"""
- on_conflict: stripeCheckoutSession_on_conflict
- ): stripeCheckoutSession_mutation_response
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: order_by
"""
- insert data into the table: "stripeCheckoutSessionType"
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
"""
- insert_stripeCheckoutSessionType(
- """the rows to be inserted"""
- objects: [stripeCheckoutSessionType_insert_input!]!
+ packAmount: order_by
- """upsert condition"""
- on_conflict: stripeCheckoutSessionType_on_conflict
- ): stripeCheckoutSessionType_mutation_response
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: order_by
"""
- insert a single row into the table: "stripeCheckoutSessionType"
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
"""
- insert_stripeCheckoutSessionType_one(
- """the row to be inserted"""
- object: stripeCheckoutSessionType_insert_input!
+ stampAmount: order_by
- """upsert condition"""
- on_conflict: stripeCheckoutSessionType_on_conflict
- ): stripeCheckoutSessionType
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: order_by
"""
- insert a single row into the table: "stripeCheckoutSession"
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
"""
- insert_stripeCheckoutSession_one(
- """the row to be inserted"""
- object: stripeCheckoutSession_insert_input!
+ toAddress: order_by
- """upsert condition"""
- on_conflict: stripeCheckoutSession_on_conflict
- ): stripeCheckoutSession
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
"""
- insert data into the table: "stripeCustomer"
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
"""
- insert_stripeCustomer(
- """the rows to be inserted"""
- objects: [stripeCustomer_insert_input!]!
+ transactionHash: order_by
+}
- """upsert condition"""
- on_conflict: stripeCustomer_on_conflict
- ): stripeCustomer_mutation_response
+"""aggregate min on columns"""
+type nftTransfer_min_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: bigint
"""
- insert a single row into the table: "stripeCustomer"
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
"""
- insert_stripeCustomer_one(
- """the row to be inserted"""
- object: stripeCustomer_insert_input!
+ chainId: String
- """upsert condition"""
- on_conflict: stripeCustomer_on_conflict
- ): stripeCustomer
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
"""
- insert data into the table: "timezone"
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
"""
- insert_timezone(
- """the rows to be inserted"""
- objects: [timezone_insert_input!]!
+ eventId: String
- """upsert condition"""
- on_conflict: timezone_on_conflict
- ): timezone_mutation_response
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: String
"""
- insert a single row into the table: "timezone"
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
"""
- insert_timezone_one(
- """the row to be inserted"""
- object: timezone_insert_input!
+ fromAddress: String
+ id: uuid
- """upsert condition"""
- on_conflict: timezone_on_conflict
- ): timezone
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: String
- """Publish one asset"""
- publishAsset(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Int
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: String
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Int
- """Document to publish"""
- where: AssetWhereUniqueInput!
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: uuid
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Asset
+ """
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
+ """
+ toAddress: String
- """Publish one contentSpace"""
- publishContentSpace(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
+ """
+ transactionHash: String
+}
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+"""
+order by min() on columns of table "nftTransfer"
+"""
+input nftTransfer_min_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Document to publish"""
- where: ContentSpaceWhereUniqueInput!
+ """
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
+ """
+ chainId: order_by
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): ContentSpace
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: order_by
+ created_at: order_by
- """Publish one event"""
- publishEvent(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
+ """
+ eventId: order_by
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: order_by
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
+ """
+ fromAddress: order_by
+ id: order_by
- """Document to publish"""
- where: EventWhereUniqueInput!
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: order_by
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Event
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Publish one eventPass"""
- publishEventPass(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: order_by
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: order_by
- """Document to publish"""
- where: EventPassWhereUniqueInput!
+ """
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
+ """
+ toAddress: order_by
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): EventPass
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
- """Publish one eventPassDelayedRevealed"""
- publishEventPassDelayedRevealed(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
+ """
+ transactionHash: order_by
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""
+response of any mutation on the table "nftTransfer"
+"""
+type nftTransfer_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """data from the rows affected by the mutation"""
+ returning: [nftTransfer!]!
+}
- """Document to publish"""
- where: EventPassDelayedRevealedWhereUniqueInput!
+"""
+input type for inserting object relation for remote table "nftTransfer"
+"""
+input nftTransfer_obj_rel_insert_input {
+ data: nftTransfer_insert_input!
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): EventPassDelayedRevealed
+ """upsert condition"""
+ on_conflict: nftTransfer_on_conflict
+}
- """Publish many Asset documents"""
- publishManyAssets(
- """Document localizations to publish"""
- locales: [Locale!]
+"""
+on_conflict condition type for table "nftTransfer"
+"""
+input nftTransfer_on_conflict {
+ constraint: nftTransfer_constraint!
+ update_columns: [nftTransfer_update_column!]! = []
+ where: nftTransfer_bool_exp
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""Ordering options when selecting data from "nftTransfer"."""
+input nftTransfer_order_by {
+ blockNumber: order_by
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ eventId: order_by
+ eventPassId: order_by
+ fromAddress: order_by
+ id: order_by
+ organizerId: order_by
+ packAmount: order_by
+ packId: order_by
+ stampAmount: order_by
+ stampNftId: order_by
+ toAddress: order_by
+ tokenId: order_by
+ transactionHash: order_by
+}
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+"""primary key columns input for table: nftTransfer"""
+input nftTransfer_pk_columns_input {
+ id: uuid!
+}
- """Identifies documents in each stage to be published"""
- where: AssetManyWhereInput
+"""
+select columns of table "nftTransfer"
+"""
+enum nftTransfer_select_column {
+ """column name"""
+ blockNumber
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """column name"""
+ chainId
- """Publish many Asset documents"""
- publishManyAssetsConnection(
- after: ID
- before: ID
- first: Int
+ """column name"""
+ contractAddress
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """column name"""
+ created_at
- """Document localizations to publish"""
- locales: [Locale!]
+ """column name"""
+ eventId
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """column name"""
+ eventPassId
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """column name"""
+ fromAddress
- """Identifies documents in each stage to be published"""
- where: AssetManyWhereInput
+ """column name"""
+ id
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): AssetConnection!
+ """column name"""
+ organizerId
- """Publish many ContentSpace documents"""
- publishManyContentSpaces(
- """Document localizations to publish"""
- locales: [Locale!]
+ """column name"""
+ packAmount
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """column name"""
+ packId
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """column name"""
+ stampAmount
- """Identifies documents in each stage to be published"""
- where: ContentSpaceManyWhereInput
+ """column name"""
+ stampNftId
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """column name"""
+ toAddress
- """Publish many ContentSpace documents"""
- publishManyContentSpacesConnection(
- after: ID
- before: ID
- first: Int
+ """column name"""
+ tokenId
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """column name"""
+ transactionHash
+}
- """Document localizations to publish"""
- locales: [Locale!]
+"""
+input type for updating data in table "nftTransfer"
+"""
+input nftTransfer_set_input {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: bigint
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
+ """
+ chainId: String
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
- """Identifies documents in each stage to be published"""
- where: ContentSpaceManyWhereInput
+ """
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
+ """
+ eventId: String
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): ContentSpaceConnection!
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: String
- """Publish many EventPass documents"""
- publishManyEventPasses(
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
+ """
+ fromAddress: String
+ id: uuid
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: String
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Int
- """Identifies documents in each stage to be published"""
- where: EventPassManyWhereInput
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: String
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Int
- """Publish many EventPass documents"""
- publishManyEventPassesConnection(
- after: ID
- before: ID
- first: Int
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: uuid
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
+ """
+ toAddress: String
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
+ """
+ transactionHash: String
+}
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+"""aggregate stddev on columns"""
+type nftTransfer_stddev_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Identifies documents in each stage to be published"""
- where: EventPassManyWhereInput
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): EventPassConnection!
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """Publish many EventPassDelayedRevealed documents"""
- publishManyEventPassesDelayedRevealed(
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""
+order by stddev() on columns of table "nftTransfer"
+"""
+input nftTransfer_stddev_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Identifies documents in each stage to be published"""
- where: EventPassDelayedRevealedManyWhereInput
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Publish many EventPassDelayedRevealed documents"""
- publishManyEventPassesDelayedRevealedConnection(
- after: ID
- before: ID
- first: Int
+"""aggregate stddev_pop on columns"""
+type nftTransfer_stddev_pop_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+"""
+order by stddev_pop() on columns of table "nftTransfer"
+"""
+input nftTransfer_stddev_pop_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Identifies documents in each stage to be published"""
- where: EventPassDelayedRevealedManyWhereInput
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): EventPassDelayedRevealedConnection!
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Publish many Event documents"""
- publishManyEvents(
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""aggregate stddev_samp on columns"""
+type nftTransfer_stddev_samp_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """Identifies documents in each stage to be published"""
- where: EventManyWhereInput
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """Publish many Event documents"""
- publishManyEventsConnection(
- after: ID
- before: ID
- first: Int
+"""
+order by stddev_samp() on columns of table "nftTransfer"
+"""
+input nftTransfer_stddev_samp_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+"""
+Streaming cursor of the table "nftTransfer"
+"""
+input nftTransfer_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: nftTransfer_stream_cursor_value_input!
- """Identifies documents in each stage to be published"""
- where: EventManyWhereInput
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): EventConnection!
+"""Initial value of the column from where the streaming should start"""
+input nftTransfer_stream_cursor_value_input {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: bigint
- """Publish many Organizer documents"""
- publishManyOrganizers(
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
+ """
+ chainId: String
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
+ """
+ contractAddress: String
+ created_at: timestamptz
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
+ """
+ eventId: String
- """Identifies documents in each stage to be published"""
- where: OrganizerManyWhereInput
+ """
+ Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
+ """
+ eventPassId: String
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+ """
+ Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
+ """
+ fromAddress: String
+ id: uuid
- """Publish many Organizer documents"""
- publishManyOrganizersConnection(
- after: ID
- before: ID
- first: Int
+ """
+ Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
+ """
+ organizerId: String
+
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Int
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """
+ Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
+ """
+ packId: String
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Int
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+ """
+ References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.
+ """
+ stampNftId: uuid
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
+ """
+ toAddress: String
- """Identifies documents in each stage to be published"""
- where: OrganizerManyWhereInput
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): OrganizerConnection!
+ """
+ Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
+ """
+ transactionHash: String
+}
- """Publish many Pack documents"""
- publishManyPacks(
- """Document localizations to publish"""
- locales: [Locale!]
+"""aggregate sum on columns"""
+type nftTransfer_sum_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: bigint
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Int
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Int
- """Identifies documents in each stage to be published"""
- where: PackManyWhereInput
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: bigint
+}
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): BatchPayload!
+"""
+order by sum() on columns of table "nftTransfer"
+"""
+input nftTransfer_sum_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Publish many Pack documents"""
- publishManyPacksConnection(
- after: ID
- before: ID
- first: Int
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Stage to find matching documents in"""
- from: Stage = DRAFT
- last: Int
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Document localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
- skip: Int
+"""
+update columns of table "nftTransfer"
+"""
+enum nftTransfer_update_column {
+ """column name"""
+ blockNumber
- """Stages to publish documents to"""
- to: [Stage!]! = [PUBLISHED]
+ """column name"""
+ chainId
- """Identifies documents in each stage to be published"""
- where: PackManyWhereInput
+ """column name"""
+ contractAddress
- """Whether to include the default locale when publishBase is true"""
- withDefaultLocale: Boolean = true
- ): PackConnection!
+ """column name"""
+ created_at
- """Publish one organizer"""
- publishOrganizer(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """column name"""
+ eventId
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """column name"""
+ eventPassId
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """column name"""
+ fromAddress
- """Document to publish"""
- where: OrganizerWhereUniqueInput!
+ """column name"""
+ id
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Organizer
+ """column name"""
+ organizerId
- """Publish one pack"""
- publishPack(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """column name"""
+ packAmount
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """column name"""
+ packId
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """column name"""
+ stampAmount
- """Document to publish"""
- where: PackWhereUniqueInput!
+ """column name"""
+ stampNftId
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Pack
+ """column name"""
+ toAddress
- """Schedule to publish one asset"""
- schedulePublishAsset(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """column name"""
+ tokenId
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """column name"""
+ transactionHash
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+input nftTransfer_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: nftTransfer_inc_input
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: nftTransfer_set_input
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """filter the rows which have to be updated"""
+ where: nftTransfer_bool_exp!
+}
- """Document to publish"""
- where: AssetWhereUniqueInput!
+"""aggregate var_pop on columns"""
+type nftTransfer_var_pop_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Asset
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """Schedule to publish one contentSpace"""
- schedulePublishContentSpace(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""
+order by var_pop() on columns of table "nftTransfer"
+"""
+input nftTransfer_var_pop_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Document to publish"""
- where: ContentSpaceWhereUniqueInput!
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): ContentSpace
+"""aggregate var_samp on columns"""
+type nftTransfer_var_samp_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Schedule to publish one event"""
- schedulePublishEvent(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+order by var_samp() on columns of table "nftTransfer"
+"""
+input nftTransfer_var_samp_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Document to publish"""
- where: EventWhereUniqueInput!
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Event
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Schedule to publish one eventPass"""
- schedulePublishEventPass(
- """Optional localizations to publish"""
- locales: [Locale!]
+"""aggregate variance on columns"""
+type nftTransfer_variance_fields {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: Float
- """Whether to publish the base document"""
- publishBase: Boolean = true
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: Float
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: Float
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: Float
+}
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+"""
+order by variance() on columns of table "nftTransfer"
+"""
+input nftTransfer_variance_order_by {
+ """
+ The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ """
+ blockNumber: order_by
- """Document to publish"""
- where: EventPassWhereUniqueInput!
+ """
+ Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ """
+ packAmount: order_by
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): EventPass
+ """
+ Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.
+ """
+ stampAmount: order_by
- """Schedule to publish one eventPassDelayedRevealed"""
- schedulePublishEventPassDelayedRevealed(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """
+ The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ """
+ tokenId: order_by
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""
+Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account
+"""
+type order {
+ """An object relationship"""
+ account: account
+ accountId: uuid!
+ created_at: timestamptz!
+ eventPass(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
+ eventPassId: String
+ """An object relationship"""
+ eventPassNftContract: eventPassNftContract
+ id: uuid!
+ pack(
"""
- Release at point in time, will create new release containing this operation
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
"""
- releaseAt: DateTime
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """An object relationship"""
+ packAmount: passAmount
+ packId: String
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """An object relationship"""
+ packNftContract: packNftContract
- """Document to publish"""
- where: EventPassDelayedRevealedWhereUniqueInput!
+ """An object relationship"""
+ packPricing: passPricing
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): EventPassDelayedRevealed
+ """An object relationship"""
+ passAmount: passAmount
- """Schedule to publish one organizer"""
- schedulePublishOrganizer(
- """Optional localizations to publish"""
- locales: [Locale!]
+ """An object relationship"""
+ passPricing: passPricing
+ quantity: Int!
+ status: orderStatus_enum!
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz!
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""
+columns and relationships of "orderStatus"
+"""
+type orderStatus {
+ value: String!
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""
+aggregated selection of "orderStatus"
+"""
+type orderStatus_aggregate {
+ aggregate: orderStatus_aggregate_fields
+ nodes: [orderStatus!]!
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+aggregate fields of "orderStatus"
+"""
+type orderStatus_aggregate_fields {
+ count(columns: [orderStatus_select_column!], distinct: Boolean): Int!
+ max: orderStatus_max_fields
+ min: orderStatus_min_fields
+}
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+"""
+Boolean expression to filter rows from the table "orderStatus". All fields are combined with a logical 'AND'.
+"""
+input orderStatus_bool_exp {
+ _and: [orderStatus_bool_exp!]
+ _not: orderStatus_bool_exp
+ _or: [orderStatus_bool_exp!]
+ value: String_comparison_exp
+}
- """Document to publish"""
- where: OrganizerWhereUniqueInput!
+"""
+unique or primary key constraints on table "orderStatus"
+"""
+enum orderStatus_constraint {
+ """
+ unique or primary key constraint on columns "value"
+ """
+ orderStatus_pkey
+}
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Organizer
+enum orderStatus_enum {
+ CANCELLED
+ COMPLETED
+ CONFIRMED
+ ERROR
+ IS_MINTING
+ REFUNDED
+ UNAUTHORIZED
+}
- """Schedule to publish one pack"""
- schedulePublishPack(
- """Optional localizations to publish"""
- locales: [Locale!]
+"""
+Boolean expression to compare columns of type "orderStatus_enum". All fields are combined with logical 'AND'.
+"""
+input orderStatus_enum_comparison_exp {
+ _eq: orderStatus_enum
+ _in: [orderStatus_enum!]
+ _is_null: Boolean
+ _neq: orderStatus_enum
+ _nin: [orderStatus_enum!]
+}
+
+"""
+input type for inserting data into table "orderStatus"
+"""
+input orderStatus_insert_input {
+ value: String
+}
- """Whether to publish the base document"""
- publishBase: Boolean = true
+"""aggregate max on columns"""
+type orderStatus_max_fields {
+ value: String
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""aggregate min on columns"""
+type orderStatus_min_fields {
+ value: String
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+response of any mutation on the table "orderStatus"
+"""
+type orderStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """Publishing target stage"""
- to: [Stage!]! = [PUBLISHED]
+ """data from the rows affected by the mutation"""
+ returning: [orderStatus!]!
+}
- """Document to publish"""
- where: PackWhereUniqueInput!
+"""
+on_conflict condition type for table "orderStatus"
+"""
+input orderStatus_on_conflict {
+ constraint: orderStatus_constraint!
+ update_columns: [orderStatus_update_column!]! = []
+ where: orderStatus_bool_exp
+}
- """Whether to include the default locale when publishBase is set"""
- withDefaultLocale: Boolean = true
- ): Pack
+"""Ordering options when selecting data from "orderStatus"."""
+input orderStatus_order_by {
+ value: order_by
+}
- """
- Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishAsset(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""primary key columns input for table: orderStatus"""
+input orderStatus_pk_columns_input {
+ value: String!
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+select columns of table "orderStatus"
+"""
+enum orderStatus_select_column {
+ """column name"""
+ value
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""
+input type for updating data in table "orderStatus"
+"""
+input orderStatus_set_input {
+ value: String
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+Streaming cursor of the table "orderStatus"
+"""
+input orderStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: orderStatus_stream_cursor_value_input!
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """Document to unpublish"""
- where: AssetWhereUniqueInput!
- ): Asset
+"""Initial value of the column from where the streaming should start"""
+input orderStatus_stream_cursor_value_input {
+ value: String
+}
- """
- Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishContentSpace(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+update columns of table "orderStatus"
+"""
+enum orderStatus_update_column {
+ """column name"""
+ value
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+input orderStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: orderStatus_set_input
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """filter the rows which have to be updated"""
+ where: orderStatus_bool_exp!
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+aggregated selection of "order"
+"""
+type order_aggregate {
+ aggregate: order_aggregate_fields
+ nodes: [order!]!
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+input order_aggregate_bool_exp {
+ count: order_aggregate_bool_exp_count
+}
- """Document to unpublish"""
- where: ContentSpaceWhereUniqueInput!
- ): ContentSpace
+input order_aggregate_bool_exp_count {
+ arguments: [order_select_column!]
+ distinct: Boolean
+ filter: order_bool_exp
+ predicate: Int_comparison_exp!
+}
- """
- Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishEvent(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+aggregate fields of "order"
+"""
+type order_aggregate_fields {
+ avg: order_avg_fields
+ count(columns: [order_select_column!], distinct: Boolean): Int!
+ max: order_max_fields
+ min: order_min_fields
+ stddev: order_stddev_fields
+ stddev_pop: order_stddev_pop_fields
+ stddev_samp: order_stddev_samp_fields
+ sum: order_sum_fields
+ var_pop: order_var_pop_fields
+ var_samp: order_var_samp_fields
+ variance: order_variance_fields
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+order by aggregate values of table "order"
+"""
+input order_aggregate_order_by {
+ avg: order_avg_order_by
+ count: order_by
+ max: order_max_order_by
+ min: order_min_order_by
+ stddev: order_stddev_order_by
+ stddev_pop: order_stddev_pop_order_by
+ stddev_samp: order_stddev_samp_order_by
+ sum: order_sum_order_by
+ var_pop: order_var_pop_order_by
+ var_samp: order_var_samp_order_by
+ variance: order_variance_order_by
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""
+input type for inserting array relation for remote table "order"
+"""
+input order_arr_rel_insert_input {
+ data: [order_insert_input!]!
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """upsert condition"""
+ on_conflict: order_on_conflict
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""aggregate avg on columns"""
+type order_avg_fields {
+ quantity: Float
+}
- """Document to unpublish"""
- where: EventWhereUniqueInput!
- ): Event
+"""
+order by avg() on columns of table "order"
+"""
+input order_avg_order_by {
+ quantity: order_by
+}
- """
- Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishEventPass(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+Boolean expression to filter rows from the table "order". All fields are combined with a logical 'AND'.
+"""
+input order_bool_exp {
+ _and: [order_bool_exp!]
+ _not: order_bool_exp
+ _or: [order_bool_exp!]
+ account: account_bool_exp
+ accountId: uuid_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventPassId: String_comparison_exp
+ eventPassNftContract: eventPassNftContract_bool_exp
+ id: uuid_comparison_exp
+ packAmount: passAmount_bool_exp
+ packId: String_comparison_exp
+ packNftContract: packNftContract_bool_exp
+ packPricing: passPricing_bool_exp
+ passAmount: passAmount_bool_exp
+ passPricing: passPricing_bool_exp
+ quantity: Int_comparison_exp
+ status: orderStatus_enum_comparison_exp
+ stripeCheckoutSessionId: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""column ordering options"""
+enum order_by {
+ """in ascending order, nulls last"""
+ asc
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """in ascending order, nulls first"""
+ asc_nulls_first
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """in ascending order, nulls last"""
+ asc_nulls_last
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """in descending order, nulls first"""
+ desc
- """Document to unpublish"""
- where: EventPassWhereUniqueInput!
- ): EventPass
+ """in descending order, nulls first"""
+ desc_nulls_first
+
+ """in descending order, nulls last"""
+ desc_nulls_last
+}
+"""
+unique or primary key constraints on table "order"
+"""
+enum order_constraint {
"""
- Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ unique or primary key constraint on columns "id"
"""
- scheduleUnpublishEventPassDelayedRevealed(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+ order_pkey
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+input type for incrementing numeric columns in table "order"
+"""
+input order_inc_input {
+ quantity: Int
+}
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+"""
+input type for inserting data into table "order"
+"""
+input order_insert_input {
+ account: account_obj_rel_insert_input
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ eventPassNftContract: eventPassNftContract_obj_rel_insert_input
+ id: uuid
+ packAmount: passAmount_obj_rel_insert_input
+ packId: String
+ packNftContract: packNftContract_obj_rel_insert_input
+ packPricing: passPricing_obj_rel_insert_input
+ passAmount: passAmount_obj_rel_insert_input
+ passPricing: passPricing_obj_rel_insert_input
+ quantity: Int
+ status: orderStatus_enum
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""aggregate max on columns"""
+type order_max_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""
+order by max() on columns of table "order"
+"""
+input order_max_order_by {
+ accountId: order_by
+ created_at: order_by
+ eventPassId: order_by
+ id: order_by
+ packId: order_by
+ quantity: order_by
+ stripeCheckoutSessionId: order_by
+ updated_at: order_by
+}
- """Document to unpublish"""
- where: EventPassDelayedRevealedWhereUniqueInput!
- ): EventPassDelayedRevealed
+"""aggregate min on columns"""
+type order_min_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz
+}
- """
- Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishOrganizer(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+order by min() on columns of table "order"
+"""
+input order_min_order_by {
+ accountId: order_by
+ created_at: order_by
+ eventPassId: order_by
+ id: order_by
+ packId: order_by
+ quantity: order_by
+ stripeCheckoutSessionId: order_by
+ updated_at: order_by
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+response of any mutation on the table "order"
+"""
+type order_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """data from the rows affected by the mutation"""
+ returning: [order!]!
+}
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+"""
+on_conflict condition type for table "order"
+"""
+input order_on_conflict {
+ constraint: order_constraint!
+ update_columns: [order_update_column!]! = []
+ where: order_bool_exp
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""Ordering options when selecting data from "order"."""
+input order_order_by {
+ account: account_order_by
+ accountId: order_by
+ created_at: order_by
+ eventPassId: order_by
+ eventPassNftContract: eventPassNftContract_order_by
+ id: order_by
+ packAmount: passAmount_order_by
+ packId: order_by
+ packNftContract: packNftContract_order_by
+ packPricing: passPricing_order_by
+ passAmount: passAmount_order_by
+ passPricing: passPricing_order_by
+ quantity: order_by
+ status: order_by
+ stripeCheckoutSessionId: order_by
+ updated_at: order_by
+}
- """Document to unpublish"""
- where: OrganizerWhereUniqueInput!
- ): Organizer
+"""primary key columns input for table: order"""
+input order_pk_columns_input {
+ id: uuid!
+}
- """
- Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- scheduleUnpublishPack(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+select columns of table "order"
+"""
+enum order_select_column {
+ """column name"""
+ accountId
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+ """column name"""
+ created_at
- """
- Release at point in time, will create new release containing this operation
- """
- releaseAt: DateTime
+ """column name"""
+ eventPassId
- """Optionally attach this scheduled operation to an existing release"""
- releaseId: String
+ """column name"""
+ id
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """column name"""
+ packId
- """Document to unpublish"""
- where: PackWhereUniqueInput!
- ): Pack
+ """column name"""
+ quantity
- """
- Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishAsset(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+ """column name"""
+ status
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+ """column name"""
+ stripeCheckoutSessionId
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """column name"""
+ updated_at
+}
- """Document to unpublish"""
- where: AssetWhereUniqueInput!
- ): Asset
+"""
+input type for updating data in table "order"
+"""
+input order_set_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+ status: orderStatus_enum
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz
+}
- """
- Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishContentSpace(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""aggregate stddev on columns"""
+type order_stddev_fields {
+ quantity: Float
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+order by stddev() on columns of table "order"
+"""
+input order_stddev_order_by {
+ quantity: order_by
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""aggregate stddev_pop on columns"""
+type order_stddev_pop_fields {
+ quantity: Float
+}
- """Document to unpublish"""
- where: ContentSpaceWhereUniqueInput!
- ): ContentSpace
+"""
+order by stddev_pop() on columns of table "order"
+"""
+input order_stddev_pop_order_by {
+ quantity: order_by
+}
- """
- Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishEvent(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""aggregate stddev_samp on columns"""
+type order_stddev_samp_fields {
+ quantity: Float
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""
+order by stddev_samp() on columns of table "order"
+"""
+input order_stddev_samp_order_by {
+ quantity: order_by
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""
+Streaming cursor of the table "order"
+"""
+input order_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: order_stream_cursor_value_input!
- """Document to unpublish"""
- where: EventWhereUniqueInput!
- ): Event
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """
- Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishEventPass(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+"""Initial value of the column from where the streaming should start"""
+input order_stream_cursor_value_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+ status: orderStatus_enum
+ stripeCheckoutSessionId: String
+ updated_at: timestamptz
+}
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+"""aggregate sum on columns"""
+type order_sum_fields {
+ quantity: Int
+}
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+"""
+order by sum() on columns of table "order"
+"""
+input order_sum_order_by {
+ quantity: order_by
+}
- """Document to unpublish"""
- where: EventPassWhereUniqueInput!
- ): EventPass
+"""
+update columns of table "order"
+"""
+enum order_update_column {
+ """column name"""
+ accountId
- """
- Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishEventPassDelayedRevealed(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+ """column name"""
+ created_at
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+ """column name"""
+ eventPassId
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """column name"""
+ id
- """Document to unpublish"""
- where: EventPassDelayedRevealedWhereUniqueInput!
- ): EventPassDelayedRevealed
+ """column name"""
+ packId
- """Unpublish many Asset documents"""
- unpublishManyAssets(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+ """column name"""
+ quantity
- """Locales to unpublish"""
- locales: [Locale!]
+ """column name"""
+ status
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """column name"""
+ stripeCheckoutSessionId
- """Identifies documents in each stage"""
- where: AssetManyWhereInput
- ): BatchPayload!
+ """column name"""
+ updated_at
+}
- """
- Find many Asset documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyAssetsConnection(
- after: ID
- before: ID
- first: Int
+input order_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: order_inc_input
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+ """sets the columns of the filtered rows to the given values"""
+ _set: order_set_input
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+ """filter the rows which have to be updated"""
+ where: order_bool_exp!
+}
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+"""aggregate var_pop on columns"""
+type order_var_pop_fields {
+ quantity: Float
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+order by var_pop() on columns of table "order"
+"""
+input order_var_pop_order_by {
+ quantity: order_by
+}
- """Identifies documents in draft stage"""
- where: AssetManyWhereInput
- ): AssetConnection!
+"""aggregate var_samp on columns"""
+type order_var_samp_fields {
+ quantity: Float
+}
- """Unpublish many ContentSpace documents"""
- unpublishManyContentSpaces(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+order by var_samp() on columns of table "order"
+"""
+input order_var_samp_order_by {
+ quantity: order_by
+}
- """Locales to unpublish"""
- locales: [Locale!]
+"""aggregate variance on columns"""
+type order_variance_fields {
+ quantity: Float
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+order by variance() on columns of table "order"
+"""
+input order_variance_order_by {
+ quantity: order_by
+}
- """Identifies documents in each stage"""
- where: ContentSpaceManyWhereInput
- ): BatchPayload!
+"""
+Junction table linking pack NFTs to event pass NFTs. Ensures that each event pass NFT is uniquely associated with a pack.
+"""
+type packEventPassNft {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid!
- """
- Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyContentSpacesConnection(
- after: ID
- before: ID
- first: Int
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid!
+}
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+"""
+aggregated selection of "packEventPassNft"
+"""
+type packEventPassNft_aggregate {
+ aggregate: packEventPassNft_aggregate_fields
+ nodes: [packEventPassNft!]!
+}
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+input packEventPassNft_aggregate_bool_exp {
+ count: packEventPassNft_aggregate_bool_exp_count
+}
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+input packEventPassNft_aggregate_bool_exp_count {
+ arguments: [packEventPassNft_select_column!]
+ distinct: Boolean
+ filter: packEventPassNft_bool_exp
+ predicate: Int_comparison_exp!
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+aggregate fields of "packEventPassNft"
+"""
+type packEventPassNft_aggregate_fields {
+ count(columns: [packEventPassNft_select_column!], distinct: Boolean): Int!
+ max: packEventPassNft_max_fields
+ min: packEventPassNft_min_fields
+}
- """Identifies documents in draft stage"""
- where: ContentSpaceManyWhereInput
- ): ContentSpaceConnection!
+"""
+order by aggregate values of table "packEventPassNft"
+"""
+input packEventPassNft_aggregate_order_by {
+ count: order_by
+ max: packEventPassNft_max_order_by
+ min: packEventPassNft_min_order_by
+}
- """Unpublish many EventPass documents"""
- unpublishManyEventPasses(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+"""
+input type for inserting array relation for remote table "packEventPassNft"
+"""
+input packEventPassNft_arr_rel_insert_input {
+ data: [packEventPassNft_insert_input!]!
- """Locales to unpublish"""
- locales: [Locale!]
+ """upsert condition"""
+ on_conflict: packEventPassNft_on_conflict
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+Boolean expression to filter rows from the table "packEventPassNft". All fields are combined with a logical 'AND'.
+"""
+input packEventPassNft_bool_exp {
+ _and: [packEventPassNft_bool_exp!]
+ _not: packEventPassNft_bool_exp
+ _or: [packEventPassNft_bool_exp!]
+ eventPassNftId: uuid_comparison_exp
+ packNftSupplyId: uuid_comparison_exp
+}
- """Identifies documents in each stage"""
- where: EventPassManyWhereInput
- ): BatchPayload!
+"""
+unique or primary key constraints on table "packEventPassNft"
+"""
+enum packEventPassNft_constraint {
+ """
+ unique or primary key constraint on columns "eventPassNftId"
+ """
+ packEventPassNft_eventPassNftId_key
"""
- Find many EventPass documents that match criteria in specified stage and unpublish from target stages
+ unique or primary key constraint on columns "packNftSupplyId", "eventPassNftId"
"""
- unpublishManyEventPassesConnection(
- after: ID
- before: ID
- first: Int
+ packEventPassNft_pkey
+}
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+"""
+input type for inserting data into table "packEventPassNft"
+"""
+input packEventPassNft_insert_input {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid
+}
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+"""aggregate max on columns"""
+type packEventPassNft_max_fields {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid
+}
- """Identifies documents in draft stage"""
- where: EventPassManyWhereInput
- ): EventPassConnection!
+"""
+order by max() on columns of table "packEventPassNft"
+"""
+input packEventPassNft_max_order_by {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: order_by
- """Unpublish many EventPassDelayedRevealed documents"""
- unpublishManyEventPassesDelayedRevealed(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: order_by
+}
- """Locales to unpublish"""
- locales: [Locale!]
+"""aggregate min on columns"""
+type packEventPassNft_min_fields {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid
+}
- """Identifies documents in each stage"""
- where: EventPassDelayedRevealedManyWhereInput
- ): BatchPayload!
+"""
+order by min() on columns of table "packEventPassNft"
+"""
+input packEventPassNft_min_order_by {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: order_by
- """
- Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyEventPassesDelayedRevealedConnection(
- after: ID
- before: ID
- first: Int
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: order_by
+}
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+"""
+response of any mutation on the table "packEventPassNft"
+"""
+type packEventPassNft_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+ """data from the rows affected by the mutation"""
+ returning: [packEventPassNft!]!
+}
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+"""
+on_conflict condition type for table "packEventPassNft"
+"""
+input packEventPassNft_on_conflict {
+ constraint: packEventPassNft_constraint!
+ update_columns: [packEventPassNft_update_column!]! = []
+ where: packEventPassNft_bool_exp
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""Ordering options when selecting data from "packEventPassNft"."""
+input packEventPassNft_order_by {
+ eventPassNftId: order_by
+ packNftSupplyId: order_by
+}
- """Identifies documents in draft stage"""
- where: EventPassDelayedRevealedManyWhereInput
- ): EventPassDelayedRevealedConnection!
+"""primary key columns input for table: packEventPassNft"""
+input packEventPassNft_pk_columns_input {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid!
- """Unpublish many Event documents"""
- unpublishManyEvents(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid!
+}
- """Locales to unpublish"""
- locales: [Locale!]
+"""
+select columns of table "packEventPassNft"
+"""
+enum packEventPassNft_select_column {
+ """column name"""
+ eventPassNftId
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """column name"""
+ packNftSupplyId
+}
- """Identifies documents in each stage"""
- where: EventManyWhereInput
- ): BatchPayload!
+"""
+input type for updating data in table "packEventPassNft"
+"""
+input packEventPassNft_set_input {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid
- """
- Find many Event documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyEventsConnection(
- after: ID
- before: ID
- first: Int
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid
+}
+
+"""
+Streaming cursor of the table "packEventPassNft"
+"""
+input packEventPassNft_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: packEventPassNft_stream_cursor_value_input!
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+"""Initial value of the column from where the streaming should start"""
+input packEventPassNft_stream_cursor_value_input {
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+update columns of table "packEventPassNft"
+"""
+enum packEventPassNft_update_column {
+ """column name"""
+ eventPassNftId
- """Identifies documents in draft stage"""
- where: EventManyWhereInput
- ): EventConnection!
+ """column name"""
+ packNftSupplyId
+}
- """Unpublish many Organizer documents"""
- unpublishManyOrganizers(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+input packEventPassNft_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: packEventPassNft_set_input
- """Locales to unpublish"""
- locales: [Locale!]
+ """filter the rows which have to be updated"""
+ where: packEventPassNft_bool_exp!
+}
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+"""
+Manages the NFTs associated with each pack, including details like contract address, chain ID, and the contents of each pack.
+"""
+type packNftContract {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String!
- """Identifies documents in each stage"""
- where: OrganizerManyWhereInput
- ): BatchPayload!
+ """Smart contract address for the NFT collection."""
+ contractAddress: String!
+ created_at: timestamptz!
- """
- Find many Organizer documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyOrganizersConnection(
- after: ID
- before: ID
- first: Int
+ """An array relationship"""
+ eventPassNftContracts(
+ """distinct select on columns"""
+ distinct_on: [packNftContractEventPass_select_column!]
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+ """limit the number of rows returned"""
+ limit: Int
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+ """sort the rows by one or more columns"""
+ order_by: [packNftContractEventPass_order_by!]
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """filter the rows returned"""
+ where: packNftContractEventPass_bool_exp
+ ): [packNftContractEventPass!]!
- """Identifies documents in draft stage"""
- where: OrganizerManyWhereInput
- ): OrganizerConnection!
+ """An aggregate relationship"""
+ eventPassNftContracts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packNftContractEventPass_select_column!]
- """Unpublish many Pack documents"""
- unpublishManyPacks(
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
+ """limit the number of rows returned"""
+ limit: Int
- """Locales to unpublish"""
- locales: [Locale!]
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """sort the rows by one or more columns"""
+ order_by: [packNftContractEventPass_order_by!]
- """Identifies documents in each stage"""
- where: PackManyWhereInput
- ): BatchPayload!
+ """filter the rows returned"""
+ where: packNftContractEventPass_bool_exp
+ ): packNftContractEventPass_aggregate!
- """
- Find many Pack documents that match criteria in specified stage and unpublish from target stages
- """
- unpublishManyPacksConnection(
- after: ID
- before: ID
- first: Int
+ """An array relationship"""
+ eventPassNfts(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
- """Stages to unpublish documents from"""
- from: [Stage!]! = [PUBLISHED]
- last: Int
+ """limit the number of rows returned"""
+ limit: Int
- """Locales to unpublish"""
- locales: [Locale!]
- skip: Int
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Stage to find matching documents in"""
- stage: Stage = DRAFT
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
- """Whether to unpublish the base document and default localization"""
- unpublishBase: Boolean = true
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): [eventPassNft!]!
- """Identifies documents in draft stage"""
- where: PackManyWhereInput
- ): PackConnection!
+ """An aggregate relationship"""
+ eventPassNfts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
- """
- Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
- """
- unpublishOrganizer(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+ """limit the number of rows returned"""
+ limit: Int
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
- """Document to unpublish"""
- where: OrganizerWhereUniqueInput!
- ): Organizer
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): eventPassNft_aggregate!
+
+ """Unique identifier for each pack NFT contract."""
+ id: uuid!
"""
- Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
"""
- unpublishPack(
- """Stages to unpublish document from"""
- from: [Stage!]! = [PUBLISHED]
+ isAirdrop: Boolean!
- """
- Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages
- """
- locales: [Locale!]
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String!
- """
- Unpublish complete document including default localization and relations from stages. Can be disabled.
- """
- unpublishBase: Boolean = true
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String!
- """Document to unpublish"""
- where: PackWhereUniqueInput!
- ): Pack
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String!
- """Update one asset"""
- updateAsset(data: AssetUpdateInput!, where: AssetWhereUniqueInput!): Asset
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int!
+ updated_at: timestamptz!
+}
- """Update one contentSpace"""
- updateContentSpace(data: ContentSpaceUpdateInput!, where: ContentSpaceWhereUniqueInput!): ContentSpace
+"""
+This junction table links each pack NFT contract to various event pass NFT contracts, along with the quantity of each event pass type included in the pack. It facilitates the management of event passes bundled within a specific pack.
+"""
+type packNftContractEventPass {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int!
- """Update one event"""
- updateEvent(data: EventUpdateInput!, where: EventWhereUniqueInput!): Event
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String!
- """Update one eventPass"""
- updateEventPass(data: EventPassUpdateInput!, where: EventPassWhereUniqueInput!): EventPass
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid!
+}
- """Update one eventPassDelayedRevealed"""
- updateEventPassDelayedRevealed(data: EventPassDelayedRevealedUpdateInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
+"""
+aggregated selection of "packNftContractEventPass"
+"""
+type packNftContractEventPass_aggregate {
+ aggregate: packNftContractEventPass_aggregate_fields
+ nodes: [packNftContractEventPass!]!
+}
- """Update many assets"""
- updateManyAssets(
- """Updates to document content"""
- data: AssetUpdateManyInput!
+input packNftContractEventPass_aggregate_bool_exp {
+ count: packNftContractEventPass_aggregate_bool_exp_count
+}
- """Documents to apply update on"""
- where: AssetManyWhereInput
- ): BatchPayload!
+input packNftContractEventPass_aggregate_bool_exp_count {
+ arguments: [packNftContractEventPass_select_column!]
+ distinct: Boolean
+ filter: packNftContractEventPass_bool_exp
+ predicate: Int_comparison_exp!
+}
- """Update many Asset documents"""
- updateManyAssetsConnection(
- after: ID
- before: ID
+"""
+aggregate fields of "packNftContractEventPass"
+"""
+type packNftContractEventPass_aggregate_fields {
+ avg: packNftContractEventPass_avg_fields
+ count(columns: [packNftContractEventPass_select_column!], distinct: Boolean): Int!
+ max: packNftContractEventPass_max_fields
+ min: packNftContractEventPass_min_fields
+ stddev: packNftContractEventPass_stddev_fields
+ stddev_pop: packNftContractEventPass_stddev_pop_fields
+ stddev_samp: packNftContractEventPass_stddev_samp_fields
+ sum: packNftContractEventPass_sum_fields
+ var_pop: packNftContractEventPass_var_pop_fields
+ var_samp: packNftContractEventPass_var_samp_fields
+ variance: packNftContractEventPass_variance_fields
+}
- """Updates to document content"""
- data: AssetUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+"""
+order by aggregate values of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_aggregate_order_by {
+ avg: packNftContractEventPass_avg_order_by
+ count: order_by
+ max: packNftContractEventPass_max_order_by
+ min: packNftContractEventPass_min_order_by
+ stddev: packNftContractEventPass_stddev_order_by
+ stddev_pop: packNftContractEventPass_stddev_pop_order_by
+ stddev_samp: packNftContractEventPass_stddev_samp_order_by
+ sum: packNftContractEventPass_sum_order_by
+ var_pop: packNftContractEventPass_var_pop_order_by
+ var_samp: packNftContractEventPass_var_samp_order_by
+ variance: packNftContractEventPass_variance_order_by
+}
- """Documents to apply update on"""
- where: AssetManyWhereInput
- ): AssetConnection!
+"""
+input type for inserting array relation for remote table "packNftContractEventPass"
+"""
+input packNftContractEventPass_arr_rel_insert_input {
+ data: [packNftContractEventPass_insert_input!]!
- """Update many contentSpaces"""
- updateManyContentSpaces(
- """Updates to document content"""
- data: ContentSpaceUpdateManyInput!
+ """upsert condition"""
+ on_conflict: packNftContractEventPass_on_conflict
+}
- """Documents to apply update on"""
- where: ContentSpaceManyWhereInput
- ): BatchPayload!
+"""aggregate avg on columns"""
+type packNftContractEventPass_avg_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Float
+}
- """Update many ContentSpace documents"""
- updateManyContentSpacesConnection(
- after: ID
- before: ID
+"""
+order by avg() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_avg_order_by {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: order_by
+}
- """Updates to document content"""
- data: ContentSpaceUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+"""
+Boolean expression to filter rows from the table "packNftContractEventPass". All fields are combined with a logical 'AND'.
+"""
+input packNftContractEventPass_bool_exp {
+ _and: [packNftContractEventPass_bool_exp!]
+ _not: packNftContractEventPass_bool_exp
+ _or: [packNftContractEventPass_bool_exp!]
+ amount: Int_comparison_exp
+ eventPassId: String_comparison_exp
+ packNftContractId: uuid_comparison_exp
+}
- """Documents to apply update on"""
- where: ContentSpaceManyWhereInput
- ): ContentSpaceConnection!
+"""
+unique or primary key constraints on table "packNftContractEventPass"
+"""
+enum packNftContractEventPass_constraint {
+ """
+ unique or primary key constraint on columns "eventPassId", "packNftContractId"
+ """
+ packNftContractEventPass_pkey
+}
- """Update many eventPasses"""
- updateManyEventPasses(
- """Updates to document content"""
- data: EventPassUpdateManyInput!
+"""
+input type for incrementing numeric columns in table "packNftContractEventPass"
+"""
+input packNftContractEventPass_inc_input {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
+}
- """Documents to apply update on"""
- where: EventPassManyWhereInput
- ): BatchPayload!
+"""
+input type for inserting data into table "packNftContractEventPass"
+"""
+input packNftContractEventPass_insert_input {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
- """Update many EventPass documents"""
- updateManyEventPassesConnection(
- after: ID
- before: ID
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String
- """Updates to document content"""
- data: EventPassUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid
+}
- """Documents to apply update on"""
- where: EventPassManyWhereInput
- ): EventPassConnection!
+"""aggregate max on columns"""
+type packNftContractEventPass_max_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
- """Update many eventPassesDelayedRevealed"""
- updateManyEventPassesDelayedRevealed(
- """Updates to document content"""
- data: EventPassDelayedRevealedUpdateManyInput!
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String
- """Documents to apply update on"""
- where: EventPassDelayedRevealedManyWhereInput
- ): BatchPayload!
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid
+}
- """Update many EventPassDelayedRevealed documents"""
- updateManyEventPassesDelayedRevealedConnection(
- after: ID
- before: ID
+"""
+order by max() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_max_order_by {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: order_by
- """Updates to document content"""
- data: EventPassDelayedRevealedUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: order_by
- """Documents to apply update on"""
- where: EventPassDelayedRevealedManyWhereInput
- ): EventPassDelayedRevealedConnection!
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: order_by
+}
- """Update many events"""
- updateManyEvents(
- """Updates to document content"""
- data: EventUpdateManyInput!
+"""aggregate min on columns"""
+type packNftContractEventPass_min_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
- """Documents to apply update on"""
- where: EventManyWhereInput
- ): BatchPayload!
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String
- """Update many Event documents"""
- updateManyEventsConnection(
- after: ID
- before: ID
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid
+}
- """Updates to document content"""
- data: EventUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+"""
+order by min() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_min_order_by {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: order_by
- """Documents to apply update on"""
- where: EventManyWhereInput
- ): EventConnection!
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: order_by
+
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: order_by
+}
- """Update many organizers"""
- updateManyOrganizers(
- """Updates to document content"""
- data: OrganizerUpdateManyInput!
+"""
+response of any mutation on the table "packNftContractEventPass"
+"""
+type packNftContractEventPass_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """Documents to apply update on"""
- where: OrganizerManyWhereInput
- ): BatchPayload!
+ """data from the rows affected by the mutation"""
+ returning: [packNftContractEventPass!]!
+}
- """Update many Organizer documents"""
- updateManyOrganizersConnection(
- after: ID
- before: ID
+"""
+on_conflict condition type for table "packNftContractEventPass"
+"""
+input packNftContractEventPass_on_conflict {
+ constraint: packNftContractEventPass_constraint!
+ update_columns: [packNftContractEventPass_update_column!]! = []
+ where: packNftContractEventPass_bool_exp
+}
- """Updates to document content"""
- data: OrganizerUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+"""Ordering options when selecting data from "packNftContractEventPass"."""
+input packNftContractEventPass_order_by {
+ amount: order_by
+ eventPassId: order_by
+ packNftContractId: order_by
+}
- """Documents to apply update on"""
- where: OrganizerManyWhereInput
- ): OrganizerConnection!
+"""primary key columns input for table: packNftContractEventPass"""
+input packNftContractEventPass_pk_columns_input {
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String!
- """Update many packs"""
- updateManyPacks(
- """Updates to document content"""
- data: PackUpdateManyInput!
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid!
+}
- """Documents to apply update on"""
- where: PackManyWhereInput
- ): BatchPayload!
+"""
+select columns of table "packNftContractEventPass"
+"""
+enum packNftContractEventPass_select_column {
+ """column name"""
+ amount
- """Update many Pack documents"""
- updateManyPacksConnection(
- after: ID
- before: ID
+ """column name"""
+ eventPassId
- """Updates to document content"""
- data: PackUpdateManyInput!
- first: Int
- last: Int
- skip: Int
+ """column name"""
+ packNftContractId
+}
- """Documents to apply update on"""
- where: PackManyWhereInput
- ): PackConnection!
+"""
+input type for updating data in table "packNftContractEventPass"
+"""
+input packNftContractEventPass_set_input {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
- """Update one organizer"""
- updateOrganizer(data: OrganizerUpdateInput!, where: OrganizerWhereUniqueInput!): Organizer
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String
- """Update one pack"""
- updatePack(data: PackUpdateInput!, where: PackWhereUniqueInput!): Pack
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid
+}
- """Update one scheduledRelease"""
- updateScheduledRelease(data: ScheduledReleaseUpdateInput!, where: ScheduledReleaseWhereUniqueInput!): ScheduledRelease
+"""aggregate stddev on columns"""
+type packNftContractEventPass_stddev_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Float
+}
+"""
+order by stddev() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_stddev_order_by {
"""
- update data of the table: "account"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_account(
- """sets the columns of the filtered rows to the given values"""
- _set: account_set_input
+ amount: order_by
+}
- """filter the rows which have to be updated"""
- where: account_bool_exp!
- ): account_mutation_response
+"""aggregate stddev_pop on columns"""
+type packNftContractEventPass_stddev_pop_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Float
+}
+"""
+order by stddev_pop() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_stddev_pop_order_by {
"""
- update single row of the table: "account"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_account_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: account_set_input
- pk_columns: account_pk_columns_input!
- ): account
+ amount: order_by
+}
+"""aggregate stddev_samp on columns"""
+type packNftContractEventPass_stddev_samp_fields {
"""
- update multiples rows of table: "account"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_account_many(
- """updates to execute, in order"""
- updates: [account_updates!]!
- ): [account_mutation_response]
+ amount: Float
+}
+"""
+order by stddev_samp() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_stddev_samp_order_by {
"""
- update data of the table: "contentSpaceParameters"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_contentSpaceParameters(
- """sets the columns of the filtered rows to the given values"""
- _set: contentSpaceParameters_set_input
+ amount: order_by
+}
- """filter the rows which have to be updated"""
- where: contentSpaceParameters_bool_exp!
- ): contentSpaceParameters_mutation_response
+"""
+Streaming cursor of the table "packNftContractEventPass"
+"""
+input packNftContractEventPass_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: packNftContractEventPass_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+"""Initial value of the column from where the streaming should start"""
+input packNftContractEventPass_stream_cursor_value_input {
"""
- update single row of the table: "contentSpaceParameters"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_contentSpaceParameters_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: contentSpaceParameters_set_input
- pk_columns: contentSpaceParameters_pk_columns_input!
- ): contentSpaceParameters
+ amount: Int
"""
- update multiples rows of table: "contentSpaceParameters"
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
"""
- update_contentSpaceParameters_many(
- """updates to execute, in order"""
- updates: [contentSpaceParameters_updates!]!
- ): [contentSpaceParameters_mutation_response]
+ eventPassId: String
"""
- update data of the table: "contentSpaceStatus"
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
"""
- update_contentSpaceStatus(
- """sets the columns of the filtered rows to the given values"""
- _set: contentSpaceStatus_set_input
+ packNftContractId: uuid
+}
- """filter the rows which have to be updated"""
- where: contentSpaceStatus_bool_exp!
- ): contentSpaceStatus_mutation_response
+"""aggregate sum on columns"""
+type packNftContractEventPass_sum_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Int
+}
+"""
+order by sum() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_sum_order_by {
"""
- update single row of the table: "contentSpaceStatus"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_contentSpaceStatus_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: contentSpaceStatus_set_input
- pk_columns: contentSpaceStatus_pk_columns_input!
- ): contentSpaceStatus
+ amount: order_by
+}
+
+"""
+update columns of table "packNftContractEventPass"
+"""
+enum packNftContractEventPass_update_column {
+ """column name"""
+ amount
+
+ """column name"""
+ eventPassId
+
+ """column name"""
+ packNftContractId
+}
+
+input packNftContractEventPass_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContractEventPass_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContractEventPass_set_input
+
+ """filter the rows which have to be updated"""
+ where: packNftContractEventPass_bool_exp!
+}
+"""aggregate var_pop on columns"""
+type packNftContractEventPass_var_pop_fields {
"""
- update multiples rows of table: "contentSpaceStatus"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_contentSpaceStatus_many(
- """updates to execute, in order"""
- updates: [contentSpaceStatus_updates!]!
- ): [contentSpaceStatus_mutation_response]
+ amount: Float
+}
+"""
+order by var_pop() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_var_pop_order_by {
"""
- update data of the table: "currency"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_currency(
- """sets the columns of the filtered rows to the given values"""
- _set: currency_set_input
+ amount: order_by
+}
- """filter the rows which have to be updated"""
- where: currency_bool_exp!
- ): currency_mutation_response
+"""aggregate var_samp on columns"""
+type packNftContractEventPass_var_samp_fields {
+ """
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ """
+ amount: Float
+}
+"""
+order by var_samp() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_var_samp_order_by {
"""
- update single row of the table: "currency"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_currency_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: currency_set_input
- pk_columns: currency_pk_columns_input!
- ): currency
+ amount: order_by
+}
+"""aggregate variance on columns"""
+type packNftContractEventPass_variance_fields {
"""
- update multiples rows of table: "currency"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_currency_many(
- """updates to execute, in order"""
- updates: [currency_updates!]!
- ): [currency_mutation_response]
+ amount: Float
+}
+"""
+order by variance() on columns of table "packNftContractEventPass"
+"""
+input packNftContractEventPass_variance_order_by {
"""
- update data of the table: "eventParameters"
+ The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
"""
- update_eventParameters(
- """sets the columns of the filtered rows to the given values"""
- _set: eventParameters_set_input
+ amount: order_by
+}
- """filter the rows which have to be updated"""
- where: eventParameters_bool_exp!
- ): eventParameters_mutation_response
+"""
+aggregated selection of "packNftContract"
+"""
+type packNftContract_aggregate {
+ aggregate: packNftContract_aggregate_fields
+ nodes: [packNftContract!]!
+}
+
+"""
+aggregate fields of "packNftContract"
+"""
+type packNftContract_aggregate_fields {
+ avg: packNftContract_avg_fields
+ count(columns: [packNftContract_select_column!], distinct: Boolean): Int!
+ max: packNftContract_max_fields
+ min: packNftContract_min_fields
+ stddev: packNftContract_stddev_fields
+ stddev_pop: packNftContract_stddev_pop_fields
+ stddev_samp: packNftContract_stddev_samp_fields
+ sum: packNftContract_sum_fields
+ var_pop: packNftContract_var_pop_fields
+ var_samp: packNftContract_var_samp_fields
+ variance: packNftContract_variance_fields
+}
+
+"""aggregate avg on columns"""
+type packNftContract_avg_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
+"""
+Boolean expression to filter rows from the table "packNftContract". All fields are combined with a logical 'AND'.
+"""
+input packNftContract_bool_exp {
+ _and: [packNftContract_bool_exp!]
+ _not: packNftContract_bool_exp
+ _or: [packNftContract_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventPassNftContracts: packNftContractEventPass_bool_exp
+ eventPassNftContracts_aggregate: packNftContractEventPass_aggregate_bool_exp
+ eventPassNfts: eventPassNft_bool_exp
+ eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
+ id: uuid_comparison_exp
+ isAirdrop: Boolean_comparison_exp
+ lotteryId: String_comparison_exp
+ organizerId: String_comparison_exp
+ packId: String_comparison_exp
+ rewardsPerPack: Int_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+
+"""
+unique or primary key constraints on table "packNftContract"
+"""
+enum packNftContract_constraint {
"""
- update single row of the table: "eventParameters"
+ unique or primary key constraint on columns "packId"
"""
- update_eventParameters_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventParameters_set_input
- pk_columns: eventParameters_pk_columns_input!
- ): eventParameters
+ packId_unique
"""
- update multiples rows of table: "eventParameters"
+ unique or primary key constraint on columns "chainId", "contractAddress"
"""
- update_eventParameters_many(
- """updates to execute, in order"""
- updates: [eventParameters_updates!]!
- ): [eventParameters_mutation_response]
+ packNftContract_contractAddress_chainId_key
"""
- update data of the table: "eventPassNft"
+ unique or primary key constraint on columns "id"
"""
- update_eventPassNft(
- """append existing jsonb value of filtered columns with new jsonb value"""
- _append: eventPassNft_append_input
+ packNftContract_pkey
+}
- """
- delete the field or element with specified path (for JSON arrays, negative integers count from the end)
- """
- _delete_at_path: eventPassNft_delete_at_path_input
+"""
+input type for incrementing numeric columns in table "packNftContract"
+"""
+input packNftContract_inc_input {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+}
- """
- delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
- """
- _delete_elem: eventPassNft_delete_elem_input
+"""
+input type for inserting data into table "packNftContract"
+"""
+input packNftContract_insert_input {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String
- """
- delete key/value pair or string element. key/value pairs are matched based on their key value
- """
- _delete_key: eventPassNft_delete_key_input
+ """Smart contract address for the NFT collection."""
+ contractAddress: String
+ created_at: timestamptz
+ eventPassNftContracts: packNftContractEventPass_arr_rel_insert_input
+ eventPassNfts: eventPassNft_arr_rel_insert_input
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassNft_inc_input
+ """Unique identifier for each pack NFT contract."""
+ id: uuid
- """prepend existing jsonb value of filtered columns with new jsonb value"""
- _prepend: eventPassNft_prepend_input
+ """
+ Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
+ """
+ isAirdrop: Boolean
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNft_set_input
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String
- """filter the rows which have to be updated"""
- where: eventPassNft_bool_exp!
- ): eventPassNft_mutation_response
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String
- """
- update data of the table: "eventPassNftContract"
- """
- update_eventPassNftContract(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContract_set_input
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String
+
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+ updated_at: timestamptz
+}
+
+"""aggregate max on columns"""
+type packNftContract_max_fields {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String
+
+ """Smart contract address for the NFT collection."""
+ contractAddress: String
+ created_at: timestamptz
+
+ """Unique identifier for each pack NFT contract."""
+ id: uuid
+
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String
+
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String
+
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String
+
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type packNftContract_min_fields {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String
+
+ """Smart contract address for the NFT collection."""
+ contractAddress: String
+ created_at: timestamptz
+
+ """Unique identifier for each pack NFT contract."""
+ id: uuid
+
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String
+
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String
+
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String
+
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+ updated_at: timestamptz
+}
- """filter the rows which have to be updated"""
- where: eventPassNftContract_bool_exp!
- ): eventPassNftContract_mutation_response
+"""
+response of any mutation on the table "packNftContract"
+"""
+type packNftContract_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """
- update data of the table: "eventPassNftContractType"
- """
- update_eventPassNftContractType(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContractType_set_input
+ """data from the rows affected by the mutation"""
+ returning: [packNftContract!]!
+}
- """filter the rows which have to be updated"""
- where: eventPassNftContractType_bool_exp!
- ): eventPassNftContractType_mutation_response
+"""
+input type for inserting object relation for remote table "packNftContract"
+"""
+input packNftContract_obj_rel_insert_input {
+ data: packNftContract_insert_input!
- """
- update single row of the table: "eventPassNftContractType"
- """
- update_eventPassNftContractType_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContractType_set_input
- pk_columns: eventPassNftContractType_pk_columns_input!
- ): eventPassNftContractType
+ """upsert condition"""
+ on_conflict: packNftContract_on_conflict
+}
- """
- update multiples rows of table: "eventPassNftContractType"
- """
- update_eventPassNftContractType_many(
- """updates to execute, in order"""
- updates: [eventPassNftContractType_updates!]!
- ): [eventPassNftContractType_mutation_response]
+"""
+on_conflict condition type for table "packNftContract"
+"""
+input packNftContract_on_conflict {
+ constraint: packNftContract_constraint!
+ update_columns: [packNftContract_update_column!]! = []
+ where: packNftContract_bool_exp
+}
- """
- update single row of the table: "eventPassNftContract"
- """
- update_eventPassNftContract_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNftContract_set_input
- pk_columns: eventPassNftContract_pk_columns_input!
- ): eventPassNftContract
+"""Ordering options when selecting data from "packNftContract"."""
+input packNftContract_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ eventPassNftContracts_aggregate: packNftContractEventPass_aggregate_order_by
+ eventPassNfts_aggregate: eventPassNft_aggregate_order_by
+ id: order_by
+ isAirdrop: order_by
+ lotteryId: order_by
+ organizerId: order_by
+ packId: order_by
+ rewardsPerPack: order_by
+ updated_at: order_by
+}
- """
- update multiples rows of table: "eventPassNftContract"
- """
- update_eventPassNftContract_many(
- """updates to execute, in order"""
- updates: [eventPassNftContract_updates!]!
- ): [eventPassNftContract_mutation_response]
+"""primary key columns input for table: packNftContract"""
+input packNftContract_pk_columns_input {
+ """Unique identifier for each pack NFT contract."""
+ id: uuid!
+}
- """
- update single row of the table: "eventPassNft"
- """
- update_eventPassNft_by_pk(
- """append existing jsonb value of filtered columns with new jsonb value"""
- _append: eventPassNft_append_input
+"""
+select columns of table "packNftContract"
+"""
+enum packNftContract_select_column {
+ """column name"""
+ chainId
- """
- delete the field or element with specified path (for JSON arrays, negative integers count from the end)
- """
- _delete_at_path: eventPassNft_delete_at_path_input
+ """column name"""
+ contractAddress
- """
- delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
- """
- _delete_elem: eventPassNft_delete_elem_input
+ """column name"""
+ created_at
- """
- delete key/value pair or string element. key/value pairs are matched based on their key value
- """
- _delete_key: eventPassNft_delete_key_input
+ """column name"""
+ id
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassNft_inc_input
+ """column name"""
+ isAirdrop
- """prepend existing jsonb value of filtered columns with new jsonb value"""
- _prepend: eventPassNft_prepend_input
+ """column name"""
+ lotteryId
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassNft_set_input
- pk_columns: eventPassNft_pk_columns_input!
- ): eventPassNft
+ """column name"""
+ organizerId
- """
- update multiples rows of table: "eventPassNft"
- """
- update_eventPassNft_many(
- """updates to execute, in order"""
- updates: [eventPassNft_updates!]!
- ): [eventPassNft_mutation_response]
+ """column name"""
+ packId
- """
- update data of the table: "eventPassOrderSums"
- """
- update_eventPassOrderSums(
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassOrderSums_inc_input
+ """column name"""
+ rewardsPerPack
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassOrderSums_set_input
+ """column name"""
+ updated_at
+}
- """filter the rows which have to be updated"""
- where: eventPassOrderSums_bool_exp!
- ): eventPassOrderSums_mutation_response
+"""
+input type for updating data in table "packNftContract"
+"""
+input packNftContract_set_input {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String
- """
- update single row of the table: "eventPassOrderSums"
- """
- update_eventPassOrderSums_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: eventPassOrderSums_inc_input
+ """Smart contract address for the NFT collection."""
+ contractAddress: String
+ created_at: timestamptz
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassOrderSums_set_input
- pk_columns: eventPassOrderSums_pk_columns_input!
- ): eventPassOrderSums
+ """Unique identifier for each pack NFT contract."""
+ id: uuid
"""
- update multiples rows of table: "eventPassOrderSums"
+ Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
"""
- update_eventPassOrderSums_many(
- """updates to execute, in order"""
- updates: [eventPassOrderSums_updates!]!
- ): [eventPassOrderSums_mutation_response]
+ isAirdrop: Boolean
- """
- update data of the table: "eventPassType"
- """
- update_eventPassType(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassType_set_input
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String
- """filter the rows which have to be updated"""
- where: eventPassType_bool_exp!
- ): eventPassType_mutation_response
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String
- """
- update single row of the table: "eventPassType"
- """
- update_eventPassType_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassType_set_input
- pk_columns: eventPassType_pk_columns_input!
- ): eventPassType
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String
- """
- update multiples rows of table: "eventPassType"
- """
- update_eventPassType_many(
- """updates to execute, in order"""
- updates: [eventPassType_updates!]!
- ): [eventPassType_mutation_response]
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+ updated_at: timestamptz
+}
- """
- update data of the table: "eventPassValidationType"
- """
- update_eventPassValidationType(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassValidationType_set_input
+"""aggregate stddev on columns"""
+type packNftContract_stddev_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """filter the rows which have to be updated"""
- where: eventPassValidationType_bool_exp!
- ): eventPassValidationType_mutation_response
+"""aggregate stddev_pop on columns"""
+type packNftContract_stddev_pop_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """
- update single row of the table: "eventPassValidationType"
- """
- update_eventPassValidationType_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventPassValidationType_set_input
- pk_columns: eventPassValidationType_pk_columns_input!
- ): eventPassValidationType
+"""aggregate stddev_samp on columns"""
+type packNftContract_stddev_samp_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """
- update multiples rows of table: "eventPassValidationType"
- """
- update_eventPassValidationType_many(
- """updates to execute, in order"""
- updates: [eventPassValidationType_updates!]!
- ): [eventPassValidationType_mutation_response]
+"""
+Streaming cursor of the table "packNftContract"
+"""
+input packNftContract_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: packNftContract_stream_cursor_value_input!
- """
- update data of the table: "eventStatus"
- """
- update_eventStatus(
- """sets the columns of the filtered rows to the given values"""
- _set: eventStatus_set_input
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """filter the rows which have to be updated"""
- where: eventStatus_bool_exp!
- ): eventStatus_mutation_response
+"""Initial value of the column from where the streaming should start"""
+input packNftContract_stream_cursor_value_input {
+ """Blockchain network identifier where the NFT contract resides."""
+ chainId: String
- """
- update single row of the table: "eventStatus"
- """
- update_eventStatus_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: eventStatus_set_input
- pk_columns: eventStatus_pk_columns_input!
- ): eventStatus
+ """Smart contract address for the NFT collection."""
+ contractAddress: String
+ created_at: timestamptz
- """
- update multiples rows of table: "eventStatus"
- """
- update_eventStatus_many(
- """updates to execute, in order"""
- updates: [eventStatus_updates!]!
- ): [eventStatus_mutation_response]
+ """Unique identifier for each pack NFT contract."""
+ id: uuid
"""
- update data of the table: "follow"
+ Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
"""
- update_follow(
- """sets the columns of the filtered rows to the given values"""
- _set: follow_set_input
-
- """filter the rows which have to be updated"""
- where: follow_bool_exp!
- ): follow_mutation_response
+ isAirdrop: Boolean
- """
- update single row of the table: "follow"
- """
- update_follow_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: follow_set_input
- pk_columns: follow_pk_columns_input!
- ): follow
+ """Identifier for the lottery associated with the pack."""
+ lotteryId: String
- """
- update multiples rows of table: "follow"
- """
- update_follow_many(
- """updates to execute, in order"""
- updates: [follow_updates!]!
- ): [follow_mutation_response]
+ """Identifier for the organizer responsible for the pack."""
+ organizerId: String
- """
- update data of the table: "kyc"
- """
- update_kyc(
- """sets the columns of the filtered rows to the given values"""
- _set: kyc_set_input
+ """Unique identifier for each pack, ensuring no duplicates in the system."""
+ packId: String
- """filter the rows which have to be updated"""
- where: kyc_bool_exp!
- ): kyc_mutation_response
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+ updated_at: timestamptz
+}
- """
- update data of the table: "kycLevelName"
- """
- update_kycLevelName(
- """sets the columns of the filtered rows to the given values"""
- _set: kycLevelName_set_input
+"""aggregate sum on columns"""
+type packNftContract_sum_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Int
+}
- """filter the rows which have to be updated"""
- where: kycLevelName_bool_exp!
- ): kycLevelName_mutation_response
+"""
+update columns of table "packNftContract"
+"""
+enum packNftContract_update_column {
+ """column name"""
+ chainId
- """
- update single row of the table: "kycLevelName"
- """
- update_kycLevelName_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: kycLevelName_set_input
- pk_columns: kycLevelName_pk_columns_input!
- ): kycLevelName
+ """column name"""
+ contractAddress
- """
- update multiples rows of table: "kycLevelName"
- """
- update_kycLevelName_many(
- """updates to execute, in order"""
- updates: [kycLevelName_updates!]!
- ): [kycLevelName_mutation_response]
+ """column name"""
+ created_at
- """
- update data of the table: "kycStatus"
- """
- update_kycStatus(
- """sets the columns of the filtered rows to the given values"""
- _set: kycStatus_set_input
+ """column name"""
+ id
- """filter the rows which have to be updated"""
- where: kycStatus_bool_exp!
- ): kycStatus_mutation_response
+ """column name"""
+ isAirdrop
- """
- update single row of the table: "kycStatus"
- """
- update_kycStatus_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: kycStatus_set_input
- pk_columns: kycStatus_pk_columns_input!
- ): kycStatus
+ """column name"""
+ lotteryId
- """
- update multiples rows of table: "kycStatus"
- """
- update_kycStatus_many(
- """updates to execute, in order"""
- updates: [kycStatus_updates!]!
- ): [kycStatus_mutation_response]
+ """column name"""
+ organizerId
- """
- update single row of the table: "kyc"
- """
- update_kyc_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: kyc_set_input
- pk_columns: kyc_pk_columns_input!
- ): kyc
+ """column name"""
+ packId
- """
- update multiples rows of table: "kyc"
- """
- update_kyc_many(
- """updates to execute, in order"""
- updates: [kyc_updates!]!
- ): [kyc_mutation_response]
+ """column name"""
+ rewardsPerPack
- """
- update data of the table: "lotteryParameters"
- """
- update_lotteryParameters(
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryParameters_set_input
+ """column name"""
+ updated_at
+}
- """filter the rows which have to be updated"""
- where: lotteryParameters_bool_exp!
- ): lotteryParameters_mutation_response
+input packNftContract_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packNftContract_inc_input
- """
- update single row of the table: "lotteryParameters"
- """
- update_lotteryParameters_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryParameters_set_input
- pk_columns: lotteryParameters_pk_columns_input!
- ): lotteryParameters
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftContract_set_input
- """
- update multiples rows of table: "lotteryParameters"
- """
- update_lotteryParameters_many(
- """updates to execute, in order"""
- updates: [lotteryParameters_updates!]!
- ): [lotteryParameters_mutation_response]
+ """filter the rows which have to be updated"""
+ where: packNftContract_bool_exp!
+}
- """
- update data of the table: "lotteryStatus"
- """
- update_lotteryStatus(
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryStatus_set_input
+"""aggregate var_pop on columns"""
+type packNftContract_var_pop_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """filter the rows which have to be updated"""
- where: lotteryStatus_bool_exp!
- ): lotteryStatus_mutation_response
+"""aggregate var_samp on columns"""
+type packNftContract_var_samp_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """
- update single row of the table: "lotteryStatus"
- """
- update_lotteryStatus_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: lotteryStatus_set_input
- pk_columns: lotteryStatus_pk_columns_input!
- ): lotteryStatus
+"""aggregate variance on columns"""
+type packNftContract_variance_fields {
+ """Number of rewards (or items) contained within each pack."""
+ rewardsPerPack: Float
+}
- """
- update multiples rows of table: "lotteryStatus"
- """
- update_lotteryStatus_many(
- """updates to execute, in order"""
- updates: [lotteryStatus_updates!]!
- ): [lotteryStatus_mutation_response]
+"""
+This table represents the supply details of pack NFTs, tracking the ownership, contents, and metadata associated with each pack.
+"""
+type packNftSupply {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String!
"""
- update data of the table: "minterTemporaryWallet"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_minterTemporaryWallet(
- """sets the columns of the filtered rows to the given values"""
- _set: minterTemporaryWallet_set_input
+ contractAddress: String!
+ created_at: timestamptz!
- """filter the rows which have to be updated"""
- where: minterTemporaryWallet_bool_exp!
- ): minterTemporaryWallet_mutation_response
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update single row of the table: "minterTemporaryWallet"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_minterTemporaryWallet_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: minterTemporaryWallet_set_input
- pk_columns: minterTemporaryWallet_pk_columns_input!
- ): minterTemporaryWallet
+ error: String
+ id: uuid!
- """
- update multiples rows of table: "minterTemporaryWallet"
- """
- update_minterTemporaryWallet_many(
- """updates to execute, in order"""
- updates: [minterTemporaryWallet_updates!]!
- ): [minterTemporaryWallet_mutation_response]
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """
- update data of the table: "nftTransfer"
- """
- update_nftTransfer(
- """increments the numeric columns with given value of the filtered values"""
- _inc: nftTransfer_inc_input
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String!
- """sets the columns of the filtered rows to the given values"""
- _set: nftTransfer_set_input
+ """An array relationship"""
+ packEventPassNfts(
+ """distinct select on columns"""
+ distinct_on: [packEventPassNft_select_column!]
- """filter the rows which have to be updated"""
- where: nftTransfer_bool_exp!
- ): nftTransfer_mutation_response
+ """limit the number of rows returned"""
+ limit: Int
- """
- update single row of the table: "nftTransfer"
- """
- update_nftTransfer_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: nftTransfer_inc_input
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """sets the columns of the filtered rows to the given values"""
- _set: nftTransfer_set_input
- pk_columns: nftTransfer_pk_columns_input!
- ): nftTransfer
+ """sort the rows by one or more columns"""
+ order_by: [packEventPassNft_order_by!]
- """
- update multiples rows of table: "nftTransfer"
- """
- update_nftTransfer_many(
- """updates to execute, in order"""
- updates: [nftTransfer_updates!]!
- ): [nftTransfer_mutation_response]
+ """filter the rows returned"""
+ where: packEventPassNft_bool_exp
+ ): [packEventPassNft!]!
- """
- update data of the table: "order"
- """
- update_order(
- """increments the numeric columns with given value of the filtered values"""
- _inc: order_inc_input
+ """An aggregate relationship"""
+ packEventPassNfts_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packEventPassNft_select_column!]
- """sets the columns of the filtered rows to the given values"""
- _set: order_set_input
+ """limit the number of rows returned"""
+ limit: Int
- """filter the rows which have to be updated"""
- where: order_bool_exp!
- ): order_mutation_response
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """
- update data of the table: "orderStatus"
- """
- update_orderStatus(
- """sets the columns of the filtered rows to the given values"""
- _set: orderStatus_set_input
+ """sort the rows by one or more columns"""
+ order_by: [packEventPassNft_order_by!]
- """filter the rows which have to be updated"""
- where: orderStatus_bool_exp!
- ): orderStatus_mutation_response
+ """filter the rows returned"""
+ where: packEventPassNft_bool_exp
+ ): packEventPassNft_aggregate!
- """
- update single row of the table: "orderStatus"
- """
- update_orderStatus_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: orderStatus_set_input
- pk_columns: orderStatus_pk_columns_input!
- ): orderStatus
+ """A unique identifier for the pack within the platform."""
+ packId: String!
+ status: nftStatus_enum
- """
- update multiples rows of table: "orderStatus"
- """
- update_orderStatus_many(
- """updates to execute, in order"""
- updates: [orderStatus_updates!]!
- ): [orderStatus_mutation_response]
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz!
+}
- """
- update single row of the table: "order"
- """
- update_order_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: order_inc_input
+"""
+aggregated selection of "packNftSupply"
+"""
+type packNftSupply_aggregate {
+ aggregate: packNftSupply_aggregate_fields
+ nodes: [packNftSupply!]!
+}
- """sets the columns of the filtered rows to the given values"""
- _set: order_set_input
- pk_columns: order_pk_columns_input!
- ): order
+"""
+aggregate fields of "packNftSupply"
+"""
+type packNftSupply_aggregate_fields {
+ count(columns: [packNftSupply_select_column!], distinct: Boolean): Int!
+ max: packNftSupply_max_fields
+ min: packNftSupply_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "packNftSupply". All fields are combined with a logical 'AND'.
+"""
+input packNftSupply_bool_exp {
+ _and: [packNftSupply_bool_exp!]
+ _not: packNftSupply_bool_exp
+ _or: [packNftSupply_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ currentOwnerAddress: String_comparison_exp
+ error: String_comparison_exp
+ id: uuid_comparison_exp
+ lastNftTransferId: uuid_comparison_exp
+ organizerId: String_comparison_exp
+ packEventPassNfts: packEventPassNft_bool_exp
+ packEventPassNfts_aggregate: packEventPassNft_aggregate_bool_exp
+ packId: String_comparison_exp
+ status: nftStatus_enum_comparison_exp
+ tokenUri: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+"""
+unique or primary key constraints on table "packNftSupply"
+"""
+enum packNftSupply_constraint {
"""
- update multiples rows of table: "order"
+ unique or primary key constraint on columns "chainId", "contractAddress", "packId"
"""
- update_order_many(
- """updates to execute, in order"""
- updates: [order_updates!]!
- ): [order_mutation_response]
+ packNftSupply_contractAddress_chainId_packId_key
"""
- update data of the table: "packEventPassNft"
+ unique or primary key constraint on columns "id"
"""
- update_packEventPassNft(
- """sets the columns of the filtered rows to the given values"""
- _set: packEventPassNft_set_input
+ packNftSupply_pkey
+}
- """filter the rows which have to be updated"""
- where: packEventPassNft_bool_exp!
- ): packEventPassNft_mutation_response
+"""
+input type for inserting data into table "packNftSupply"
+"""
+input packNftSupply_insert_input {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String
"""
- update single row of the table: "packEventPassNft"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_packEventPassNft_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: packEventPassNft_set_input
- pk_columns: packEventPassNft_pk_columns_input!
- ): packEventPassNft
+ contractAddress: String
+ created_at: timestamptz
- """
- update multiples rows of table: "packEventPassNft"
- """
- update_packEventPassNft_many(
- """updates to execute, in order"""
- updates: [packEventPassNft_updates!]!
- ): [packEventPassNft_mutation_response]
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update data of the table: "packNftContract"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_packNftContract(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContract_inc_input
+ error: String
+ id: uuid
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContract_set_input
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """filter the rows which have to be updated"""
- where: packNftContract_bool_exp!
- ): packNftContract_mutation_response
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String
+ packEventPassNfts: packEventPassNft_arr_rel_insert_input
- """
- update data of the table: "packNftContractEventPass"
- """
- update_packNftContractEventPass(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContractEventPass_inc_input
+ """A unique identifier for the pack within the platform."""
+ packId: String
+ status: nftStatus_enum
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContractEventPass_set_input
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz
+}
- """filter the rows which have to be updated"""
- where: packNftContractEventPass_bool_exp!
- ): packNftContractEventPass_mutation_response
+"""aggregate max on columns"""
+type packNftSupply_max_fields {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String
"""
- update single row of the table: "packNftContractEventPass"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_packNftContractEventPass_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContractEventPass_inc_input
+ contractAddress: String
+ created_at: timestamptz
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContractEventPass_set_input
- pk_columns: packNftContractEventPass_pk_columns_input!
- ): packNftContractEventPass
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update multiples rows of table: "packNftContractEventPass"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_packNftContractEventPass_many(
- """updates to execute, in order"""
- updates: [packNftContractEventPass_updates!]!
- ): [packNftContractEventPass_mutation_response]
+ error: String
+ id: uuid
- """
- update single row of the table: "packNftContract"
- """
- update_packNftContract_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContract_inc_input
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContract_set_input
- pk_columns: packNftContract_pk_columns_input!
- ): packNftContract
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String
- """
- update multiples rows of table: "packNftContract"
- """
- update_packNftContract_many(
- """updates to execute, in order"""
- updates: [packNftContract_updates!]!
- ): [packNftContract_mutation_response]
+ """A unique identifier for the pack within the platform."""
+ packId: String
- """
- update data of the table: "packNftSupply"
- """
- update_packNftSupply(
- """sets the columns of the filtered rows to the given values"""
- _set: packNftSupply_set_input
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz
+}
- """filter the rows which have to be updated"""
- where: packNftSupply_bool_exp!
- ): packNftSupply_mutation_response
+"""aggregate min on columns"""
+type packNftSupply_min_fields {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String
"""
- update single row of the table: "packNftSupply"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_packNftSupply_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: packNftSupply_set_input
- pk_columns: packNftSupply_pk_columns_input!
- ): packNftSupply
+ contractAddress: String
+ created_at: timestamptz
- """
- update multiples rows of table: "packNftSupply"
- """
- update_packNftSupply_many(
- """updates to execute, in order"""
- updates: [packNftSupply_updates!]!
- ): [packNftSupply_mutation_response]
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update data of the table: "packOrderSums"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_packOrderSums(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packOrderSums_inc_input
+ error: String
+ id: uuid
- """sets the columns of the filtered rows to the given values"""
- _set: packOrderSums_set_input
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """filter the rows which have to be updated"""
- where: packOrderSums_bool_exp!
- ): packOrderSums_mutation_response
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String
- """
- update single row of the table: "packOrderSums"
- """
- update_packOrderSums_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: packOrderSums_inc_input
+ """A unique identifier for the pack within the platform."""
+ packId: String
- """sets the columns of the filtered rows to the given values"""
- _set: packOrderSums_set_input
- pk_columns: packOrderSums_pk_columns_input!
- ): packOrderSums
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz
+}
- """
- update multiples rows of table: "packOrderSums"
- """
- update_packOrderSums_many(
- """updates to execute, in order"""
- updates: [packOrderSums_updates!]!
- ): [packOrderSums_mutation_response]
+"""
+response of any mutation on the table "packNftSupply"
+"""
+type packNftSupply_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """
- update data of the table: "passAmount"
- """
- update_passAmount(
- """increments the numeric columns with given value of the filtered values"""
- _inc: passAmount_inc_input
+ """data from the rows affected by the mutation"""
+ returning: [packNftSupply!]!
+}
- """sets the columns of the filtered rows to the given values"""
- _set: passAmount_set_input
+"""
+on_conflict condition type for table "packNftSupply"
+"""
+input packNftSupply_on_conflict {
+ constraint: packNftSupply_constraint!
+ update_columns: [packNftSupply_update_column!]! = []
+ where: packNftSupply_bool_exp
+}
- """filter the rows which have to be updated"""
- where: passAmount_bool_exp!
- ): passAmount_mutation_response
+"""Ordering options when selecting data from "packNftSupply"."""
+input packNftSupply_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ currentOwnerAddress: order_by
+ error: order_by
+ id: order_by
+ lastNftTransferId: order_by
+ organizerId: order_by
+ packEventPassNfts_aggregate: packEventPassNft_aggregate_order_by
+ packId: order_by
+ status: order_by
+ tokenUri: order_by
+ updated_at: order_by
+}
- """
- update single row of the table: "passAmount"
- """
- update_passAmount_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: passAmount_inc_input
+"""primary key columns input for table: packNftSupply"""
+input packNftSupply_pk_columns_input {
+ id: uuid!
+}
- """sets the columns of the filtered rows to the given values"""
- _set: passAmount_set_input
- pk_columns: passAmount_pk_columns_input!
- ): passAmount
+"""
+select columns of table "packNftSupply"
+"""
+enum packNftSupply_select_column {
+ """column name"""
+ chainId
- """
- update multiples rows of table: "passAmount"
- """
- update_passAmount_many(
- """updates to execute, in order"""
- updates: [passAmount_updates!]!
- ): [passAmount_mutation_response]
+ """column name"""
+ contractAddress
- """
- update data of the table: "passPricing"
- """
- update_passPricing(
- """increments the numeric columns with given value of the filtered values"""
- _inc: passPricing_inc_input
+ """column name"""
+ created_at
- """sets the columns of the filtered rows to the given values"""
- _set: passPricing_set_input
+ """column name"""
+ currentOwnerAddress
- """filter the rows which have to be updated"""
- where: passPricing_bool_exp!
- ): passPricing_mutation_response
+ """column name"""
+ error
- """
- update single row of the table: "passPricing"
- """
- update_passPricing_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: passPricing_inc_input
+ """column name"""
+ id
- """sets the columns of the filtered rows to the given values"""
- _set: passPricing_set_input
- pk_columns: passPricing_pk_columns_input!
- ): passPricing
+ """column name"""
+ lastNftTransferId
- """
- update multiples rows of table: "passPricing"
- """
- update_passPricing_many(
- """updates to execute, in order"""
- updates: [passPricing_updates!]!
- ): [passPricing_mutation_response]
+ """column name"""
+ organizerId
- """
- update data of the table: "pendingOrder"
- """
- update_pendingOrder(
- """increments the numeric columns with given value of the filtered values"""
- _inc: pendingOrder_inc_input
+ """column name"""
+ packId
- """sets the columns of the filtered rows to the given values"""
- _set: pendingOrder_set_input
+ """column name"""
+ status
- """filter the rows which have to be updated"""
- where: pendingOrder_bool_exp!
- ): pendingOrder_mutation_response
+ """column name"""
+ tokenUri
+
+ """column name"""
+ updated_at
+}
+
+"""
+input type for updating data in table "packNftSupply"
+"""
+input packNftSupply_set_input {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String
"""
- update single row of the table: "pendingOrder"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_pendingOrder_by_pk(
- """increments the numeric columns with given value of the filtered values"""
- _inc: pendingOrder_inc_input
+ contractAddress: String
+ created_at: timestamptz
- """sets the columns of the filtered rows to the given values"""
- _set: pendingOrder_set_input
- pk_columns: pendingOrder_pk_columns_input!
- ): pendingOrder
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update multiples rows of table: "pendingOrder"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_pendingOrder_many(
- """updates to execute, in order"""
- updates: [pendingOrder_updates!]!
- ): [pendingOrder_mutation_response]
+ error: String
+ id: uuid
- """
- update data of the table: "roleAssignment"
- """
- update_roleAssignment(
- """sets the columns of the filtered rows to the given values"""
- _set: roleAssignment_set_input
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """filter the rows which have to be updated"""
- where: roleAssignment_bool_exp!
- ): roleAssignment_mutation_response
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String
- """
- update multiples rows of table: "roleAssignment"
- """
- update_roleAssignment_many(
- """updates to execute, in order"""
- updates: [roleAssignment_updates!]!
- ): [roleAssignment_mutation_response]
+ """A unique identifier for the pack within the platform."""
+ packId: String
+ status: nftStatus_enum
- """
- update data of the table: "roles"
- """
- update_roles(
- """sets the columns of the filtered rows to the given values"""
- _set: roles_set_input
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz
+}
- """filter the rows which have to be updated"""
- where: roles_bool_exp!
- ): roles_mutation_response
+"""
+Streaming cursor of the table "packNftSupply"
+"""
+input packNftSupply_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: packNftSupply_stream_cursor_value_input!
- """
- update single row of the table: "roles"
- """
- update_roles_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: roles_set_input
- pk_columns: roles_pk_columns_input!
- ): roles
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """
- update multiples rows of table: "roles"
- """
- update_roles_many(
- """updates to execute, in order"""
- updates: [roles_updates!]!
- ): [roles_mutation_response]
+"""Initial value of the column from where the streaming should start"""
+input packNftSupply_stream_cursor_value_input {
+ """The specific blockchain or network on which the pack NFT exists."""
+ chainId: String
"""
- update data of the table: "stripeCheckoutSession"
+ The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
"""
- update_stripeCheckoutSession(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCheckoutSession_set_input
+ contractAddress: String
+ created_at: timestamptz
- """filter the rows which have to be updated"""
- where: stripeCheckoutSession_bool_exp!
- ): stripeCheckoutSession_mutation_response
+ """The blockchain address of the current owner of the pack NFT."""
+ currentOwnerAddress: String
"""
- update data of the table: "stripeCheckoutSessionType"
+ Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
"""
- update_stripeCheckoutSessionType(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCheckoutSessionType_set_input
+ error: String
+ id: uuid
- """filter the rows which have to be updated"""
- where: stripeCheckoutSessionType_bool_exp!
- ): stripeCheckoutSessionType_mutation_response
+ """The reference to the latest transfer record for this pack NFT."""
+ lastNftTransferId: uuid
- """
- update single row of the table: "stripeCheckoutSessionType"
- """
- update_stripeCheckoutSessionType_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCheckoutSessionType_set_input
- pk_columns: stripeCheckoutSessionType_pk_columns_input!
- ): stripeCheckoutSessionType
+ """The identifier of the organizer associated with this pack NFT."""
+ organizerId: String
- """
- update multiples rows of table: "stripeCheckoutSessionType"
- """
- update_stripeCheckoutSessionType_many(
- """updates to execute, in order"""
- updates: [stripeCheckoutSessionType_updates!]!
- ): [stripeCheckoutSessionType_mutation_response]
+ """A unique identifier for the pack within the platform."""
+ packId: String
+ status: nftStatus_enum
- """
- update single row of the table: "stripeCheckoutSession"
- """
- update_stripeCheckoutSession_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCheckoutSession_set_input
- pk_columns: stripeCheckoutSession_pk_columns_input!
- ): stripeCheckoutSession
+ """The URI pointing to the metadata of the pack NFT."""
+ tokenUri: String
+ updated_at: timestamptz
+}
- """
- update multiples rows of table: "stripeCheckoutSession"
- """
- update_stripeCheckoutSession_many(
- """updates to execute, in order"""
- updates: [stripeCheckoutSession_updates!]!
- ): [stripeCheckoutSession_mutation_response]
+"""
+update columns of table "packNftSupply"
+"""
+enum packNftSupply_update_column {
+ """column name"""
+ chainId
- """
- update data of the table: "stripeCustomer"
- """
- update_stripeCustomer(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCustomer_set_input
+ """column name"""
+ contractAddress
- """filter the rows which have to be updated"""
- where: stripeCustomer_bool_exp!
- ): stripeCustomer_mutation_response
+ """column name"""
+ created_at
- """
- update single row of the table: "stripeCustomer"
- """
- update_stripeCustomer_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: stripeCustomer_set_input
- pk_columns: stripeCustomer_pk_columns_input!
- ): stripeCustomer
+ """column name"""
+ currentOwnerAddress
- """
- update multiples rows of table: "stripeCustomer"
- """
- update_stripeCustomer_many(
- """updates to execute, in order"""
- updates: [stripeCustomer_updates!]!
- ): [stripeCustomer_mutation_response]
+ """column name"""
+ error
- """
- update data of the table: "timezone"
- """
- update_timezone(
- """sets the columns of the filtered rows to the given values"""
- _set: timezone_set_input
+ """column name"""
+ id
- """filter the rows which have to be updated"""
- where: timezone_bool_exp!
- ): timezone_mutation_response
+ """column name"""
+ lastNftTransferId
- """
- update single row of the table: "timezone"
- """
- update_timezone_by_pk(
- """sets the columns of the filtered rows to the given values"""
- _set: timezone_set_input
- pk_columns: timezone_pk_columns_input!
- ): timezone
+ """column name"""
+ organizerId
- """
- update multiples rows of table: "timezone"
- """
- update_timezone_many(
- """updates to execute, in order"""
- updates: [timezone_updates!]!
- ): [timezone_mutation_response]
+ """column name"""
+ packId
- """Upsert one asset"""
- upsertAsset(upsert: AssetUpsertInput!, where: AssetWhereUniqueInput!): Asset
+ """column name"""
+ status
- """Upsert one contentSpace"""
- upsertContentSpace(upsert: ContentSpaceUpsertInput!, where: ContentSpaceWhereUniqueInput!): ContentSpace
+ """column name"""
+ tokenUri
- """Upsert one event"""
- upsertEvent(upsert: EventUpsertInput!, where: EventWhereUniqueInput!): Event
+ """column name"""
+ updated_at
+}
- """Upsert one eventPass"""
- upsertEventPass(upsert: EventPassUpsertInput!, where: EventPassWhereUniqueInput!): EventPass
+input packNftSupply_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: packNftSupply_set_input
- """Upsert one eventPassDelayedRevealed"""
- upsertEventPassDelayedRevealed(upsert: EventPassDelayedRevealedUpsertInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
+ """filter the rows which have to be updated"""
+ where: packNftSupply_bool_exp!
+}
- """Upsert one organizer"""
- upsertOrganizer(upsert: OrganizerUpsertInput!, where: OrganizerWhereUniqueInput!): Organizer
+"""Hold the sums for the Pack Orders"""
+type packOrderSums {
+ packId: String!
+ totalReserved: Int!
+}
- """Upsert one pack"""
- upsertPack(upsert: PackUpsertInput!, where: PackWhereUniqueInput!): Pack
+"""
+aggregated selection of "packOrderSums"
+"""
+type packOrderSums_aggregate {
+ aggregate: packOrderSums_aggregate_fields
+ nodes: [packOrderSums!]!
}
"""
-The nftTransfer model is built to record and chronicle the transfer of NFTs between addresses. This model is crucial in tracing the movement of an NFT, especially when validating that an event pass has reached its intended recipient. Such a system facilitates debugging and reduces the need for excessive querying of our indexer. Entries in this table are populated through two primary avenues: either via an activity webhook responding to real-time NFT transfers or through a regular cron job as a failsafe, ensuring data integrity even if the webhook fails to capture certain events.
+aggregate fields of "packOrderSums"
"""
-type nftTransfer {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint!
+type packOrderSums_aggregate_fields {
+ avg: packOrderSums_avg_fields
+ count(columns: [packOrderSums_select_column!], distinct: Boolean): Int!
+ max: packOrderSums_max_fields
+ min: packOrderSums_min_fields
+ stddev: packOrderSums_stddev_fields
+ stddev_pop: packOrderSums_stddev_pop_fields
+ stddev_samp: packOrderSums_stddev_samp_fields
+ sum: packOrderSums_sum_fields
+ var_pop: packOrderSums_var_pop_fields
+ var_samp: packOrderSums_var_samp_fields
+ variance: packOrderSums_variance_fields
+}
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String!
+"""aggregate avg on columns"""
+type packOrderSums_avg_fields {
+ totalReserved: Float
+}
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String!
- created_at: timestamptz!
+"""
+Boolean expression to filter rows from the table "packOrderSums". All fields are combined with a logical 'AND'.
+"""
+input packOrderSums_bool_exp {
+ _and: [packOrderSums_bool_exp!]
+ _not: packOrderSums_bool_exp
+ _or: [packOrderSums_bool_exp!]
+ packId: String_comparison_exp
+ totalReserved: Int_comparison_exp
+}
+"""
+unique or primary key constraints on table "packOrderSums"
+"""
+enum packOrderSums_constraint {
"""
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
+ unique or primary key constraint on columns "packId"
"""
- eventId: String
+ packOrderSums_pkey
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: String
+"""
+input type for incrementing numeric columns in table "packOrderSums"
+"""
+input packOrderSums_inc_input {
+ totalReserved: Int
+}
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String!
- id: uuid!
+"""
+input type for inserting data into table "packOrderSums"
+"""
+input packOrderSums_insert_input {
+ packId: String
+ totalReserved: Int
+}
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String!
+"""aggregate max on columns"""
+type packOrderSums_max_fields {
+ packId: String
+ totalReserved: Int
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+"""aggregate min on columns"""
+type packOrderSums_min_fields {
+ packId: String
+ totalReserved: Int
+}
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
+"""
+response of any mutation on the table "packOrderSums"
+"""
+type packOrderSums_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
+
+ """data from the rows affected by the mutation"""
+ returning: [packOrderSums!]!
+}
+
+"""
+on_conflict condition type for table "packOrderSums"
+"""
+input packOrderSums_on_conflict {
+ constraint: packOrderSums_constraint!
+ update_columns: [packOrderSums_update_column!]! = []
+ where: packOrderSums_bool_exp
+}
+
+"""Ordering options when selecting data from "packOrderSums"."""
+input packOrderSums_order_by {
+ packId: order_by
+ totalReserved: order_by
+}
+
+"""primary key columns input for table: packOrderSums"""
+input packOrderSums_pk_columns_input {
+ packId: String!
+}
+
+"""
+select columns of table "packOrderSums"
+"""
+enum packOrderSums_select_column {
+ """column name"""
+ packId
+
+ """column name"""
+ totalReserved
+}
+
+"""
+input type for updating data in table "packOrderSums"
+"""
+input packOrderSums_set_input {
packId: String
+ totalReserved: Int
+}
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String!
+"""aggregate stddev on columns"""
+type packOrderSums_stddev_fields {
+ totalReserved: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint!
+"""aggregate stddev_pop on columns"""
+type packOrderSums_stddev_pop_fields {
+ totalReserved: Float
+}
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String!
+"""aggregate stddev_samp on columns"""
+type packOrderSums_stddev_samp_fields {
+ totalReserved: Float
}
"""
-aggregated selection of "nftTransfer"
+Streaming cursor of the table "packOrderSums"
"""
-type nftTransfer_aggregate {
- aggregate: nftTransfer_aggregate_fields
- nodes: [nftTransfer!]!
+input packOrderSums_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: packOrderSums_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
}
-input nftTransfer_aggregate_bool_exp {
- count: nftTransfer_aggregate_bool_exp_count
+"""Initial value of the column from where the streaming should start"""
+input packOrderSums_stream_cursor_value_input {
+ packId: String
+ totalReserved: Int
}
-input nftTransfer_aggregate_bool_exp_count {
- arguments: [nftTransfer_select_column!]
- distinct: Boolean
- filter: nftTransfer_bool_exp
- predicate: Int_comparison_exp!
+"""aggregate sum on columns"""
+type packOrderSums_sum_fields {
+ totalReserved: Int
}
"""
-aggregate fields of "nftTransfer"
+update columns of table "packOrderSums"
"""
-type nftTransfer_aggregate_fields {
- avg: nftTransfer_avg_fields
- count(columns: [nftTransfer_select_column!], distinct: Boolean): Int!
- max: nftTransfer_max_fields
- min: nftTransfer_min_fields
- stddev: nftTransfer_stddev_fields
- stddev_pop: nftTransfer_stddev_pop_fields
- stddev_samp: nftTransfer_stddev_samp_fields
- sum: nftTransfer_sum_fields
- var_pop: nftTransfer_var_pop_fields
- var_samp: nftTransfer_var_samp_fields
- variance: nftTransfer_variance_fields
+enum packOrderSums_update_column {
+ """column name"""
+ packId
+
+ """column name"""
+ totalReserved
+}
+
+input packOrderSums_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: packOrderSums_inc_input
+
+ """sets the columns of the filtered rows to the given values"""
+ _set: packOrderSums_set_input
+
+ """filter the rows which have to be updated"""
+ where: packOrderSums_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type packOrderSums_var_pop_fields {
+ totalReserved: Float
+}
+
+"""aggregate var_samp on columns"""
+type packOrderSums_var_samp_fields {
+ totalReserved: Float
+}
+
+"""aggregate variance on columns"""
+type packOrderSums_variance_fields {
+ totalReserved: Float
+}
+
+"""
+The passAmount table stores quantity information related to each eventPass or Pack
+"""
+type passAmount {
+ created_at: timestamptz!
+ eventPassId: String
+ id: uuid!
+ maxAmount: Int!
+ maxAmountPerUser: Int
+ packId: String
+ timeBeforeDelete: Int!
+ updated_at: timestamptz!
}
"""
-order by aggregate values of table "nftTransfer"
+aggregated selection of "passAmount"
"""
-input nftTransfer_aggregate_order_by {
- avg: nftTransfer_avg_order_by
- count: order_by
- max: nftTransfer_max_order_by
- min: nftTransfer_min_order_by
- stddev: nftTransfer_stddev_order_by
- stddev_pop: nftTransfer_stddev_pop_order_by
- stddev_samp: nftTransfer_stddev_samp_order_by
- sum: nftTransfer_sum_order_by
- var_pop: nftTransfer_var_pop_order_by
- var_samp: nftTransfer_var_samp_order_by
- variance: nftTransfer_variance_order_by
+type passAmount_aggregate {
+ aggregate: passAmount_aggregate_fields
+ nodes: [passAmount!]!
}
"""
-input type for inserting array relation for remote table "nftTransfer"
+aggregate fields of "passAmount"
"""
-input nftTransfer_arr_rel_insert_input {
- data: [nftTransfer_insert_input!]!
-
- """upsert condition"""
- on_conflict: nftTransfer_on_conflict
+type passAmount_aggregate_fields {
+ avg: passAmount_avg_fields
+ count(columns: [passAmount_select_column!], distinct: Boolean): Int!
+ max: passAmount_max_fields
+ min: passAmount_min_fields
+ stddev: passAmount_stddev_fields
+ stddev_pop: passAmount_stddev_pop_fields
+ stddev_samp: passAmount_stddev_samp_fields
+ sum: passAmount_sum_fields
+ var_pop: passAmount_var_pop_fields
+ var_samp: passAmount_var_samp_fields
+ variance: passAmount_variance_fields
}
"""aggregate avg on columns"""
-type nftTransfer_avg_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: Float
-
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Float
+type passAmount_avg_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: Float
+"""
+Boolean expression to filter rows from the table "passAmount". All fields are combined with a logical 'AND'.
+"""
+input passAmount_bool_exp {
+ _and: [passAmount_bool_exp!]
+ _not: passAmount_bool_exp
+ _or: [passAmount_bool_exp!]
+ created_at: timestamptz_comparison_exp
+ eventPassId: String_comparison_exp
+ id: uuid_comparison_exp
+ maxAmount: Int_comparison_exp
+ maxAmountPerUser: Int_comparison_exp
+ packId: String_comparison_exp
+ timeBeforeDelete: Int_comparison_exp
+ updated_at: timestamptz_comparison_exp
}
"""
-order by avg() on columns of table "nftTransfer"
+unique or primary key constraints on table "passAmount"
"""
-input nftTransfer_avg_order_by {
+enum passAmount_constraint {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ unique or primary key constraint on columns "eventPassId"
"""
- blockNumber: order_by
+ idx_passamount_eventpassid
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ unique or primary key constraint on columns "packId"
"""
- packAmount: order_by
+ idx_passamount_packid
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ unique or primary key constraint on columns "id"
"""
- tokenId: order_by
+ passAmount_pkey
}
"""
-Boolean expression to filter rows from the table "nftTransfer". All fields are combined with a logical 'AND'.
+input type for incrementing numeric columns in table "passAmount"
"""
-input nftTransfer_bool_exp {
- _and: [nftTransfer_bool_exp!]
- _not: nftTransfer_bool_exp
- _or: [nftTransfer_bool_exp!]
- blockNumber: bigint_comparison_exp
- chainId: String_comparison_exp
- contractAddress: String_comparison_exp
- created_at: timestamptz_comparison_exp
- eventId: String_comparison_exp
- eventPassId: String_comparison_exp
- fromAddress: String_comparison_exp
- id: uuid_comparison_exp
- organizerId: String_comparison_exp
- packAmount: Int_comparison_exp
- packId: String_comparison_exp
- toAddress: String_comparison_exp
- tokenId: bigint_comparison_exp
- transactionHash: String_comparison_exp
+input passAmount_inc_input {
+ maxAmount: Int
+ maxAmountPerUser: Int
+ timeBeforeDelete: Int
}
"""
-unique or primary key constraints on table "nftTransfer"
+input type for inserting data into table "passAmount"
"""
-enum nftTransfer_constraint {
- """
- unique or primary key constraint on columns "id"
- """
- nftTransfer_pkey
+input passAmount_insert_input {
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ maxAmount: Int
+ maxAmountPerUser: Int
+ packId: String
+ timeBeforeDelete: Int
+ updated_at: timestamptz
+}
- """
- unique or primary key constraint on columns "transactionHash", "contractAddress", "tokenId"
- """
- nft_transfer_unique_transfer
+"""aggregate max on columns"""
+type passAmount_max_fields {
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ maxAmount: Int
+ maxAmountPerUser: Int
+ packId: String
+ timeBeforeDelete: Int
+ updated_at: timestamptz
+}
+
+"""aggregate min on columns"""
+type passAmount_min_fields {
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ maxAmount: Int
+ maxAmountPerUser: Int
+ packId: String
+ timeBeforeDelete: Int
+ updated_at: timestamptz
}
"""
-input type for incrementing numeric columns in table "nftTransfer"
+response of any mutation on the table "passAmount"
"""
-input nftTransfer_inc_input {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
-
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+type passAmount_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+ """data from the rows affected by the mutation"""
+ returning: [passAmount!]!
}
"""
-input type for inserting data into table "nftTransfer"
+input type for inserting object relation for remote table "passAmount"
"""
-input nftTransfer_insert_input {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
-
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String
+input passAmount_obj_rel_insert_input {
+ data: passAmount_insert_input!
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
+ """upsert condition"""
+ on_conflict: passAmount_on_conflict
+}
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: String
+"""
+on_conflict condition type for table "passAmount"
+"""
+input passAmount_on_conflict {
+ constraint: passAmount_constraint!
+ update_columns: [passAmount_update_column!]! = []
+ where: passAmount_bool_exp
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: String
+"""Ordering options when selecting data from "passAmount"."""
+input passAmount_order_by {
+ created_at: order_by
+ eventPassId: order_by
+ id: order_by
+ maxAmount: order_by
+ maxAmountPerUser: order_by
+ packId: order_by
+ timeBeforeDelete: order_by
+ updated_at: order_by
+}
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String
- id: uuid
+"""primary key columns input for table: passAmount"""
+input passAmount_pk_columns_input {
+ id: uuid!
+}
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String
+"""
+select columns of table "passAmount"
+"""
+enum passAmount_select_column {
+ """column name"""
+ created_at
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+ """column name"""
+ eventPassId
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
- packId: String
+ """column name"""
+ id
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String
+ """column name"""
+ maxAmount
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+ """column name"""
+ maxAmountPerUser
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String
-}
+ """column name"""
+ packId
-"""aggregate max on columns"""
-type nftTransfer_max_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
+ """column name"""
+ timeBeforeDelete
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String
+ """column name"""
+ updated_at
+}
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
+"""
+input type for updating data in table "passAmount"
+"""
+input passAmount_set_input {
created_at: timestamptz
-
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: String
-
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
eventPassId: String
-
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String
id: uuid
-
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String
-
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
-
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
+ maxAmount: Int
+ maxAmountPerUser: Int
packId: String
+ timeBeforeDelete: Int
+ updated_at: timestamptz
+}
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String
+"""aggregate stddev on columns"""
+type passAmount_stddev_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+"""aggregate stddev_pop on columns"""
+type passAmount_stddev_pop_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
+}
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String
+"""aggregate stddev_samp on columns"""
+type passAmount_stddev_samp_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
}
"""
-order by max() on columns of table "nftTransfer"
+Streaming cursor of the table "passAmount"
"""
-input nftTransfer_max_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+input passAmount_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: passAmount_stream_cursor_value_input!
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: order_by
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: order_by
- created_at: order_by
+"""Initial value of the column from where the streaming should start"""
+input passAmount_stream_cursor_value_input {
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ maxAmount: Int
+ maxAmountPerUser: Int
+ packId: String
+ timeBeforeDelete: Int
+ updated_at: timestamptz
+}
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: order_by
+"""aggregate sum on columns"""
+type passAmount_sum_fields {
+ maxAmount: Int
+ maxAmountPerUser: Int
+ timeBeforeDelete: Int
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: order_by
+"""
+update columns of table "passAmount"
+"""
+enum passAmount_update_column {
+ """column name"""
+ created_at
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: order_by
- id: order_by
+ """column name"""
+ eventPassId
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: order_by
+ """column name"""
+ id
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: order_by
+ """column name"""
+ maxAmount
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
- packId: order_by
+ """column name"""
+ maxAmountPerUser
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: order_by
+ """column name"""
+ packId
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+ """column name"""
+ timeBeforeDelete
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: order_by
+ """column name"""
+ updated_at
}
-"""aggregate min on columns"""
-type nftTransfer_min_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
-
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String
-
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
-
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: String
-
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: String
-
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String
- id: uuid
-
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String
-
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+input passAmount_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passAmount_inc_input
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
- packId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: passAmount_set_input
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String
+ """filter the rows which have to be updated"""
+ where: passAmount_bool_exp!
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+"""aggregate var_pop on columns"""
+type passAmount_var_pop_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
+}
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String
+"""aggregate var_samp on columns"""
+type passAmount_var_samp_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
+}
+
+"""aggregate variance on columns"""
+type passAmount_variance_fields {
+ maxAmount: Float
+ maxAmountPerUser: Float
+ timeBeforeDelete: Float
}
"""
-order by min() on columns of table "nftTransfer"
+The passPricing table stores pricing information for an eventPass or Pack.
"""
-input nftTransfer_min_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
-
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: order_by
-
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: order_by
- created_at: order_by
+type passPricing {
+ amount: Int!
+ created_at: timestamptz!
+ currency: currency_enum!
+ eventPassId: String
+ id: uuid!
+ packId: String
+ updated_at: timestamptz!
+}
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: order_by
+"""
+aggregated selection of "passPricing"
+"""
+type passPricing_aggregate {
+ aggregate: passPricing_aggregate_fields
+ nodes: [passPricing!]!
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: order_by
+"""
+aggregate fields of "passPricing"
+"""
+type passPricing_aggregate_fields {
+ avg: passPricing_avg_fields
+ count(columns: [passPricing_select_column!], distinct: Boolean): Int!
+ max: passPricing_max_fields
+ min: passPricing_min_fields
+ stddev: passPricing_stddev_fields
+ stddev_pop: passPricing_stddev_pop_fields
+ stddev_samp: passPricing_stddev_samp_fields
+ sum: passPricing_sum_fields
+ var_pop: passPricing_var_pop_fields
+ var_samp: passPricing_var_samp_fields
+ variance: passPricing_variance_fields
+}
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: order_by
- id: order_by
+"""aggregate avg on columns"""
+type passPricing_avg_fields {
+ amount: Float
+}
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: order_by
+"""
+Boolean expression to filter rows from the table "passPricing". All fields are combined with a logical 'AND'.
+"""
+input passPricing_bool_exp {
+ _and: [passPricing_bool_exp!]
+ _not: passPricing_bool_exp
+ _or: [passPricing_bool_exp!]
+ amount: Int_comparison_exp
+ created_at: timestamptz_comparison_exp
+ currency: currency_enum_comparison_exp
+ eventPassId: String_comparison_exp
+ id: uuid_comparison_exp
+ packId: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+"""
+unique or primary key constraints on table "passPricing"
+"""
+enum passPricing_constraint {
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ unique or primary key constraint on columns "id"
"""
- packAmount: order_by
+ passPricing_pkey
+}
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
- packId: order_by
+"""
+input type for incrementing numeric columns in table "passPricing"
+"""
+input passPricing_inc_input {
+ amount: Int
+}
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: order_by
+"""
+input type for inserting data into table "passPricing"
+"""
+input passPricing_insert_input {
+ amount: Int
+ created_at: timestamptz
+ currency: currency_enum
+ eventPassId: String
+ id: uuid
+ packId: String
+ updated_at: timestamptz
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+"""aggregate max on columns"""
+type passPricing_max_fields {
+ amount: Int
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ updated_at: timestamptz
+}
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: order_by
+"""aggregate min on columns"""
+type passPricing_min_fields {
+ amount: Int
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ updated_at: timestamptz
}
"""
-response of any mutation on the table "nftTransfer"
+response of any mutation on the table "passPricing"
"""
-type nftTransfer_mutation_response {
+type passPricing_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [nftTransfer!]!
+ returning: [passPricing!]!
}
"""
-input type for inserting object relation for remote table "nftTransfer"
+input type for inserting object relation for remote table "passPricing"
"""
-input nftTransfer_obj_rel_insert_input {
- data: nftTransfer_insert_input!
+input passPricing_obj_rel_insert_input {
+ data: passPricing_insert_input!
"""upsert condition"""
- on_conflict: nftTransfer_on_conflict
+ on_conflict: passPricing_on_conflict
}
"""
-on_conflict condition type for table "nftTransfer"
+on_conflict condition type for table "passPricing"
"""
-input nftTransfer_on_conflict {
- constraint: nftTransfer_constraint!
- update_columns: [nftTransfer_update_column!]! = []
- where: nftTransfer_bool_exp
+input passPricing_on_conflict {
+ constraint: passPricing_constraint!
+ update_columns: [passPricing_update_column!]! = []
+ where: passPricing_bool_exp
}
-"""Ordering options when selecting data from "nftTransfer"."""
-input nftTransfer_order_by {
- blockNumber: order_by
- chainId: order_by
- contractAddress: order_by
+"""Ordering options when selecting data from "passPricing"."""
+input passPricing_order_by {
+ amount: order_by
created_at: order_by
- eventId: order_by
+ currency: order_by
eventPassId: order_by
- fromAddress: order_by
id: order_by
- organizerId: order_by
- packAmount: order_by
packId: order_by
- toAddress: order_by
- tokenId: order_by
- transactionHash: order_by
+ updated_at: order_by
}
-"""primary key columns input for table: nftTransfer"""
-input nftTransfer_pk_columns_input {
+"""primary key columns input for table: passPricing"""
+input passPricing_pk_columns_input {
id: uuid!
}
"""
-select columns of table "nftTransfer"
+select columns of table "passPricing"
"""
-enum nftTransfer_select_column {
+enum passPricing_select_column {
"""column name"""
- blockNumber
+ amount
"""column name"""
- chainId
+ created_at
"""column name"""
- contractAddress
+ currency
"""column name"""
- created_at
+ eventPassId
"""column name"""
- eventId
+ id
"""column name"""
- eventPassId
+ packId
"""column name"""
- fromAddress
+ updated_at
+}
+
+"""
+input type for updating data in table "passPricing"
+"""
+input passPricing_set_input {
+ amount: Int
+ created_at: timestamptz
+ currency: currency_enum
+ eventPassId: String
+ id: uuid
+ packId: String
+ updated_at: timestamptz
+}
+
+"""aggregate stddev on columns"""
+type passPricing_stddev_fields {
+ amount: Float
+}
+"""aggregate stddev_pop on columns"""
+type passPricing_stddev_pop_fields {
+ amount: Float
+}
+
+"""aggregate stddev_samp on columns"""
+type passPricing_stddev_samp_fields {
+ amount: Float
+}
+
+"""
+Streaming cursor of the table "passPricing"
+"""
+input passPricing_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: passPricing_stream_cursor_value_input!
+
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+
+"""Initial value of the column from where the streaming should start"""
+input passPricing_stream_cursor_value_input {
+ amount: Int
+ created_at: timestamptz
+ currency: currency_enum
+ eventPassId: String
+ id: uuid
+ packId: String
+ updated_at: timestamptz
+}
+
+"""aggregate sum on columns"""
+type passPricing_sum_fields {
+ amount: Int
+}
+
+"""
+update columns of table "passPricing"
+"""
+enum passPricing_update_column {
"""column name"""
- id
+ amount
"""column name"""
- organizerId
+ created_at
"""column name"""
- packAmount
+ currency
"""column name"""
- packId
+ eventPassId
"""column name"""
- toAddress
+ id
"""column name"""
- tokenId
+ packId
"""column name"""
- transactionHash
+ updated_at
}
-"""
-input type for updating data in table "nftTransfer"
-"""
-input nftTransfer_set_input {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
+input passPricing_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: passPricing_inc_input
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String
+ """sets the columns of the filtered rows to the given values"""
+ _set: passPricing_set_input
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
+ """filter the rows which have to be updated"""
+ where: passPricing_bool_exp!
+}
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: String
+"""aggregate var_pop on columns"""
+type passPricing_var_pop_fields {
+ amount: Float
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
- eventPassId: String
+"""aggregate var_samp on columns"""
+type passPricing_var_samp_fields {
+ amount: Float
+}
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String
- id: uuid
+"""aggregate variance on columns"""
+type passPricing_variance_fields {
+ amount: Float
+}
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String
+"""
+Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account. Those orders are time bound and are automatically destroyed given an amount of time to preserve access to the event for other users.
+"""
+type pendingOrder {
+ """An object relationship"""
+ account: account
+ accountId: uuid!
+ created_at: timestamptz!
+ eventPass(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
+ eventPassId: String
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+ """An object relationship"""
+ eventPassNftContract: eventPassNftContract
+ id: uuid!
+ pack(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): EventPass
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
+ """An object relationship"""
+ packAmount: passAmount
packId: String
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String
-
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+ """An object relationship"""
+ packNftContract: packNftContract
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String
-}
+ """An object relationship"""
+ packPricing: passPricing
-"""aggregate stddev on columns"""
-type nftTransfer_stddev_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: Float
+ """An object relationship"""
+ passAmount: passAmount
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Float
+ """An object relationship"""
+ passPricing: passPricing
+ quantity: Int!
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: Float
+"""
+aggregated selection of "pendingOrder"
+"""
+type pendingOrder_aggregate {
+ aggregate: pendingOrder_aggregate_fields
+ nodes: [pendingOrder!]!
}
"""
-order by stddev() on columns of table "nftTransfer"
+aggregate fields of "pendingOrder"
"""
-input nftTransfer_stddev_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+type pendingOrder_aggregate_fields {
+ avg: pendingOrder_avg_fields
+ count(columns: [pendingOrder_select_column!], distinct: Boolean): Int!
+ max: pendingOrder_max_fields
+ min: pendingOrder_min_fields
+ stddev: pendingOrder_stddev_fields
+ stddev_pop: pendingOrder_stddev_pop_fields
+ stddev_samp: pendingOrder_stddev_samp_fields
+ sum: pendingOrder_sum_fields
+ var_pop: pendingOrder_var_pop_fields
+ var_samp: pendingOrder_var_samp_fields
+ variance: pendingOrder_variance_fields
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: order_by
+"""aggregate avg on columns"""
+type pendingOrder_avg_fields {
+ quantity: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+"""
+Boolean expression to filter rows from the table "pendingOrder". All fields are combined with a logical 'AND'.
+"""
+input pendingOrder_bool_exp {
+ _and: [pendingOrder_bool_exp!]
+ _not: pendingOrder_bool_exp
+ _or: [pendingOrder_bool_exp!]
+ account: account_bool_exp
+ accountId: uuid_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventPassId: String_comparison_exp
+ eventPassNftContract: eventPassNftContract_bool_exp
+ id: uuid_comparison_exp
+ packAmount: passAmount_bool_exp
+ packId: String_comparison_exp
+ packNftContract: packNftContract_bool_exp
+ packPricing: passPricing_bool_exp
+ passAmount: passAmount_bool_exp
+ passPricing: passPricing_bool_exp
+ quantity: Int_comparison_exp
}
-"""aggregate stddev_pop on columns"""
-type nftTransfer_stddev_pop_fields {
+"""
+unique or primary key constraints on table "pendingOrder"
+"""
+enum pendingOrder_constraint {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ unique or primary key constraint on columns "eventPassId", "accountId"
"""
- blockNumber: Float
+ idx_pendingorder_eventpassid_accountid
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ unique or primary key constraint on columns "accountId", "packId"
"""
- packAmount: Float
+ idx_pendingorder_packid_accountid
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ unique or primary key constraint on columns "id"
"""
- tokenId: Float
+ pendingOrder_pkey
}
"""
-order by stddev_pop() on columns of table "nftTransfer"
+input type for incrementing numeric columns in table "pendingOrder"
"""
-input nftTransfer_stddev_pop_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+input pendingOrder_inc_input {
+ quantity: Int
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: order_by
+"""
+input type for inserting data into table "pendingOrder"
+"""
+input pendingOrder_insert_input {
+ account: account_obj_rel_insert_input
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ eventPassNftContract: eventPassNftContract_obj_rel_insert_input
+ id: uuid
+ packAmount: passAmount_obj_rel_insert_input
+ packId: String
+ packNftContract: packNftContract_obj_rel_insert_input
+ packPricing: passPricing_obj_rel_insert_input
+ passAmount: passAmount_obj_rel_insert_input
+ passPricing: passPricing_obj_rel_insert_input
+ quantity: Int
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+"""aggregate max on columns"""
+type pendingOrder_max_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
}
-"""aggregate stddev_samp on columns"""
-type nftTransfer_stddev_samp_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: Float
+"""aggregate min on columns"""
+type pendingOrder_min_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Float
+"""
+response of any mutation on the table "pendingOrder"
+"""
+type pendingOrder_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: Float
+ """data from the rows affected by the mutation"""
+ returning: [pendingOrder!]!
}
"""
-order by stddev_samp() on columns of table "nftTransfer"
+on_conflict condition type for table "pendingOrder"
"""
-input nftTransfer_stddev_samp_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+input pendingOrder_on_conflict {
+ constraint: pendingOrder_constraint!
+ update_columns: [pendingOrder_update_column!]! = []
+ where: pendingOrder_bool_exp
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: order_by
+"""Ordering options when selecting data from "pendingOrder"."""
+input pendingOrder_order_by {
+ account: account_order_by
+ accountId: order_by
+ created_at: order_by
+ eventPassId: order_by
+ eventPassNftContract: eventPassNftContract_order_by
+ id: order_by
+ packAmount: passAmount_order_by
+ packId: order_by
+ packNftContract: packNftContract_order_by
+ packPricing: passPricing_order_by
+ passAmount: passAmount_order_by
+ passPricing: passPricing_order_by
+ quantity: order_by
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+"""primary key columns input for table: pendingOrder"""
+input pendingOrder_pk_columns_input {
+ id: uuid!
}
"""
-Streaming cursor of the table "nftTransfer"
+select columns of table "pendingOrder"
"""
-input nftTransfer_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: nftTransfer_stream_cursor_value_input!
+enum pendingOrder_select_column {
+ """column name"""
+ accountId
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """column name"""
+ created_at
-"""Initial value of the column from where the streaming should start"""
-input nftTransfer_stream_cursor_value_input {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
+ """column name"""
+ eventPassId
- """
- Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.
- """
- chainId: String
+ """column name"""
+ id
- """
- Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.
- """
- contractAddress: String
- created_at: timestamptz
+ """column name"""
+ packId
- """
- Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.
- """
- eventId: String
+ """column name"""
+ quantity
+}
- """
- Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.
- """
+"""
+input type for updating data in table "pendingOrder"
+"""
+input pendingOrder_set_input {
+ accountId: uuid
+ created_at: timestamptz
eventPassId: String
-
- """
- Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.
- """
- fromAddress: String
id: uuid
-
- """
- Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.
- """
- organizerId: String
-
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
-
- """
- Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.
- """
packId: String
-
- """
- Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.
- """
- toAddress: String
-
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
-
- """
- Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.
- """
- transactionHash: String
+ quantity: Int
}
-"""aggregate sum on columns"""
-type nftTransfer_sum_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: bigint
+"""aggregate stddev on columns"""
+type pendingOrder_stddev_fields {
+ quantity: Float
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Int
+"""aggregate stddev_pop on columns"""
+type pendingOrder_stddev_pop_fields {
+ quantity: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: bigint
+"""aggregate stddev_samp on columns"""
+type pendingOrder_stddev_samp_fields {
+ quantity: Float
}
"""
-order by sum() on columns of table "nftTransfer"
+Streaming cursor of the table "pendingOrder"
"""
-input nftTransfer_sum_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+input pendingOrder_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: pendingOrder_stream_cursor_value_input!
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: order_by
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: order_by
+"""Initial value of the column from where the streaming should start"""
+input pendingOrder_stream_cursor_value_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventPassId: String
+ id: uuid
+ packId: String
+ quantity: Int
+}
+
+"""aggregate sum on columns"""
+type pendingOrder_sum_fields {
+ quantity: Int
}
"""
-update columns of table "nftTransfer"
+update columns of table "pendingOrder"
"""
-enum nftTransfer_update_column {
- """column name"""
- blockNumber
-
- """column name"""
- chainId
-
+enum pendingOrder_update_column {
"""column name"""
- contractAddress
+ accountId
"""column name"""
created_at
- """column name"""
- eventId
-
"""column name"""
eventPassId
- """column name"""
- fromAddress
-
"""column name"""
id
- """column name"""
- organizerId
-
- """column name"""
- packAmount
-
"""column name"""
packId
"""column name"""
- toAddress
-
- """column name"""
- tokenId
-
- """column name"""
- transactionHash
+ quantity
}
-input nftTransfer_updates {
+input pendingOrder_updates {
"""increments the numeric columns with given value of the filtered values"""
- _inc: nftTransfer_inc_input
+ _inc: pendingOrder_inc_input
"""sets the columns of the filtered rows to the given values"""
- _set: nftTransfer_set_input
+ _set: pendingOrder_set_input
"""filter the rows which have to be updated"""
- where: nftTransfer_bool_exp!
+ where: pendingOrder_bool_exp!
}
"""aggregate var_pop on columns"""
-type nftTransfer_var_pop_fields {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: Float
+type pendingOrder_var_pop_fields {
+ quantity: Float
+}
- """
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
- """
- packAmount: Float
+"""aggregate var_samp on columns"""
+type pendingOrder_var_samp_fields {
+ quantity: Float
+}
- """
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
- """
- tokenId: Float
+"""aggregate variance on columns"""
+type pendingOrder_variance_fields {
+ quantity: Float
}
"""
-order by var_pop() on columns of table "nftTransfer"
+The publishableApiKey table stores the publishable API keys used for querying data from the server externally. It includes fields for management and security, such as an allowlist, expiration timestamp, and status.
"""
-input nftTransfer_var_pop_order_by {
+type publishableApiKey {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
"""
- blockNumber: order_by
+ allowlist: String!
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ The publishable API key used for identification when querying data from the server externally.
"""
- packAmount: order_by
+ apiKey: String!
+ created_at: timestamptz!
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
"""
- tokenId: order_by
-}
+ expiresAt: timestamptz
+ id: uuid!
-"""aggregate var_samp on columns"""
-type nftTransfer_var_samp_fields {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
"""
- blockNumber: Float
+ name: String
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
"""
- packAmount: Float
+ organizerId: String!
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ The current status of the publishable API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
"""
- tokenId: Float
+ status: apiKeyStatus_enum
+ type: apiKeyType_enum!
+ updated_at: timestamptz!
}
"""
-order by var_samp() on columns of table "nftTransfer"
+aggregated selection of "publishableApiKey"
"""
-input nftTransfer_var_samp_order_by {
- """
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
- """
- blockNumber: order_by
+type publishableApiKey_aggregate {
+ aggregate: publishableApiKey_aggregate_fields
+ nodes: [publishableApiKey!]!
+}
+
+"""
+aggregate fields of "publishableApiKey"
+"""
+type publishableApiKey_aggregate_fields {
+ count(columns: [publishableApiKey_select_column!], distinct: Boolean): Int!
+ max: publishableApiKey_max_fields
+ min: publishableApiKey_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "publishableApiKey". All fields are combined with a logical 'AND'.
+"""
+input publishableApiKey_bool_exp {
+ _and: [publishableApiKey_bool_exp!]
+ _not: publishableApiKey_bool_exp
+ _or: [publishableApiKey_bool_exp!]
+ allowlist: String_comparison_exp
+ apiKey: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ expiresAt: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ name: String_comparison_exp
+ organizerId: String_comparison_exp
+ status: apiKeyStatus_enum_comparison_exp
+ type: apiKeyType_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+"""
+unique or primary key constraints on table "publishableApiKey"
+"""
+enum publishableApiKey_constraint {
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ unique or primary key constraint on columns "apiKey"
"""
- packAmount: order_by
+ publishableApiKey_apiKey_key
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ unique or primary key constraint on columns "id"
"""
- tokenId: order_by
+ publishableApiKey_pkey
}
-"""aggregate variance on columns"""
-type nftTransfer_variance_fields {
+"""
+input type for inserting data into table "publishableApiKey"
+"""
+input publishableApiKey_insert_input {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
"""
- blockNumber: Float
+ allowlist: String
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ The publishable API key used for identification when querying data from the server externally.
"""
- packAmount: Float
+ apiKey: String
+ created_at: timestamptz
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
"""
- tokenId: Float
-}
+ expiresAt: timestamptz
+ id: uuid
-"""
-order by variance() on columns of table "nftTransfer"
-"""
-input nftTransfer_variance_order_by {
"""
- The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
"""
- blockNumber: order_by
+ name: String
"""
- Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
"""
- packAmount: order_by
+ organizerId: String
"""
- The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.
+ The current status of the publishable API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
"""
- tokenId: order_by
-}
-
-"""
-Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account
-"""
-type order {
- """An object relationship"""
- account: account
- accountId: uuid!
- created_at: timestamptz!
- eventPass(
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
- eventPassId: String
-
- """An object relationship"""
- eventPassNftContract: eventPassNftContract
- id: uuid!
- pack(
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
-
- """An object relationship"""
- packAmount: passAmount
- packId: String
-
- """An object relationship"""
- packNftContract: packNftContract
-
- """An object relationship"""
- packPricing: passPricing
-
- """An object relationship"""
- passAmount: passAmount
-
- """An object relationship"""
- passPricing: passPricing
- quantity: Int!
- status: orderStatus_enum!
- stripeCheckoutSessionId: String
- updated_at: timestamptz!
-}
-
-"""
-columns and relationships of "orderStatus"
-"""
-type orderStatus {
- value: String!
+ status: apiKeyStatus_enum
+ type: apiKeyType_enum
+ updated_at: timestamptz
}
-"""
-aggregated selection of "orderStatus"
-"""
-type orderStatus_aggregate {
- aggregate: orderStatus_aggregate_fields
- nodes: [orderStatus!]!
-}
+"""aggregate max on columns"""
+type publishableApiKey_max_fields {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
+ """
+ allowlist: String
-"""
-aggregate fields of "orderStatus"
-"""
-type orderStatus_aggregate_fields {
- count(columns: [orderStatus_select_column!], distinct: Boolean): Int!
- max: orderStatus_max_fields
- min: orderStatus_min_fields
-}
+ """
+ The publishable API key used for identification when querying data from the server externally.
+ """
+ apiKey: String
+ created_at: timestamptz
-"""
-Boolean expression to filter rows from the table "orderStatus". All fields are combined with a logical 'AND'.
-"""
-input orderStatus_bool_exp {
- _and: [orderStatus_bool_exp!]
- _not: orderStatus_bool_exp
- _or: [orderStatus_bool_exp!]
- value: String_comparison_exp
-}
+ """
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
+ id: uuid
+
+ """
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
+ """
+ name: String
-"""
-unique or primary key constraints on table "orderStatus"
-"""
-enum orderStatus_constraint {
"""
- unique or primary key constraint on columns "value"
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
"""
- orderStatus_pkey
+ organizerId: String
+ updated_at: timestamptz
}
-enum orderStatus_enum {
- CANCELLED
- COMPLETED
- CONFIRMED
- ERROR
- IS_MINTING
- REFUNDED
- UNAUTHORIZED
-}
+"""aggregate min on columns"""
+type publishableApiKey_min_fields {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
+ """
+ allowlist: String
-"""
-Boolean expression to compare columns of type "orderStatus_enum". All fields are combined with logical 'AND'.
-"""
-input orderStatus_enum_comparison_exp {
- _eq: orderStatus_enum
- _in: [orderStatus_enum!]
- _is_null: Boolean
- _neq: orderStatus_enum
- _nin: [orderStatus_enum!]
-}
+ """
+ The publishable API key used for identification when querying data from the server externally.
+ """
+ apiKey: String
+ created_at: timestamptz
-"""
-input type for inserting data into table "orderStatus"
-"""
-input orderStatus_insert_input {
- value: String
-}
+ """
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
+ id: uuid
-"""aggregate max on columns"""
-type orderStatus_max_fields {
- value: String
-}
+ """
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
+ """
+ name: String
-"""aggregate min on columns"""
-type orderStatus_min_fields {
- value: String
+ """
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
+ updated_at: timestamptz
}
"""
-response of any mutation on the table "orderStatus"
+response of any mutation on the table "publishableApiKey"
"""
-type orderStatus_mutation_response {
+type publishableApiKey_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [orderStatus!]!
+ returning: [publishableApiKey!]!
}
"""
-on_conflict condition type for table "orderStatus"
+on_conflict condition type for table "publishableApiKey"
"""
-input orderStatus_on_conflict {
- constraint: orderStatus_constraint!
- update_columns: [orderStatus_update_column!]! = []
- where: orderStatus_bool_exp
+input publishableApiKey_on_conflict {
+ constraint: publishableApiKey_constraint!
+ update_columns: [publishableApiKey_update_column!]! = []
+ where: publishableApiKey_bool_exp
}
-"""Ordering options when selecting data from "orderStatus"."""
-input orderStatus_order_by {
- value: order_by
+"""Ordering options when selecting data from "publishableApiKey"."""
+input publishableApiKey_order_by {
+ allowlist: order_by
+ apiKey: order_by
+ created_at: order_by
+ expiresAt: order_by
+ id: order_by
+ name: order_by
+ organizerId: order_by
+ status: order_by
+ type: order_by
+ updated_at: order_by
}
-"""primary key columns input for table: orderStatus"""
-input orderStatus_pk_columns_input {
- value: String!
+"""primary key columns input for table: publishableApiKey"""
+input publishableApiKey_pk_columns_input {
+ id: uuid!
}
"""
-select columns of table "orderStatus"
+select columns of table "publishableApiKey"
"""
-enum orderStatus_select_column {
+enum publishableApiKey_select_column {
"""column name"""
- value
+ allowlist
+
+ """column name"""
+ apiKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ expiresAt
+
+ """column name"""
+ id
+
+ """column name"""
+ name
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ type
+
+ """column name"""
+ updated_at
}
"""
-input type for updating data in table "orderStatus"
+input type for updating data in table "publishableApiKey"
"""
-input orderStatus_set_input {
- value: String
+input publishableApiKey_set_input {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
+ """
+ allowlist: String
+
+ """
+ The publishable API key used for identification when querying data from the server externally.
+ """
+ apiKey: String
+ created_at: timestamptz
+
+ """
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
+ id: uuid
+
+ """
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
+ """
+ name: String
+
+ """
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
+
+ """
+ The current status of the publishable API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
+ type: apiKeyType_enum
+ updated_at: timestamptz
}
"""
-Streaming cursor of the table "orderStatus"
+Streaming cursor of the table "publishableApiKey"
"""
-input orderStatus_stream_cursor_input {
+input publishableApiKey_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: orderStatus_stream_cursor_value_input!
+ initial_value: publishableApiKey_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input orderStatus_stream_cursor_value_input {
- value: String
+input publishableApiKey_stream_cursor_value_input {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.
+ """
+ allowlist: String
+
+ """
+ The publishable API key used for identification when querying data from the server externally.
+ """
+ apiKey: String
+ created_at: timestamptz
+
+ """
+ The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
+ id: uuid
+
+ """
+ A user-defined name for the publishable API key, providing a human-readable identifier for the key.
+ """
+ name: String
+
+ """
+ The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
+
+ """
+ The current status of the publishable API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
+ type: apiKeyType_enum
+ updated_at: timestamptz
}
"""
-update columns of table "orderStatus"
+update columns of table "publishableApiKey"
"""
-enum orderStatus_update_column {
+enum publishableApiKey_update_column {
"""column name"""
- value
+ allowlist
+
+ """column name"""
+ apiKey
+
+ """column name"""
+ created_at
+
+ """column name"""
+ expiresAt
+
+ """column name"""
+ id
+
+ """column name"""
+ name
+
+ """column name"""
+ organizerId
+
+ """column name"""
+ status
+
+ """column name"""
+ type
+
+ """column name"""
+ updated_at
}
-input orderStatus_updates {
+input publishableApiKey_updates {
"""sets the columns of the filtered rows to the given values"""
- _set: orderStatus_set_input
+ _set: publishableApiKey_set_input
"""filter the rows which have to be updated"""
- where: orderStatus_bool_exp!
+ where: publishableApiKey_bool_exp!
}
-"""
-aggregated selection of "order"
-"""
-type order_aggregate {
- aggregate: order_aggregate_fields
- nodes: [order!]!
-}
+type query_root {
+ """
+ fetch data from the table: "account"
+ """
+ account(
+ """distinct select on columns"""
+ distinct_on: [account_select_column!]
-input order_aggregate_bool_exp {
- count: order_aggregate_bool_exp_count
-}
+ """limit the number of rows returned"""
+ limit: Int
-input order_aggregate_bool_exp_count {
- arguments: [order_select_column!]
- distinct: Boolean
- filter: order_bool_exp
- predicate: Int_comparison_exp!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-aggregate fields of "order"
-"""
-type order_aggregate_fields {
- avg: order_avg_fields
- count(columns: [order_select_column!], distinct: Boolean): Int!
- max: order_max_fields
- min: order_min_fields
- stddev: order_stddev_fields
- stddev_pop: order_stddev_pop_fields
- stddev_samp: order_stddev_samp_fields
- sum: order_sum_fields
- var_pop: order_var_pop_fields
- var_samp: order_var_samp_fields
- variance: order_variance_fields
-}
+ """sort the rows by one or more columns"""
+ order_by: [account_order_by!]
-"""
-order by aggregate values of table "order"
-"""
-input order_aggregate_order_by {
- avg: order_avg_order_by
- count: order_by
- max: order_max_order_by
- min: order_min_order_by
- stddev: order_stddev_order_by
- stddev_pop: order_stddev_pop_order_by
- stddev_samp: order_stddev_samp_order_by
- sum: order_sum_order_by
- var_pop: order_var_pop_order_by
- var_samp: order_var_samp_order_by
- variance: order_variance_order_by
-}
+ """filter the rows returned"""
+ where: account_bool_exp
+ ): [account!]!
-"""
-input type for inserting array relation for remote table "order"
-"""
-input order_arr_rel_insert_input {
- data: [order_insert_input!]!
+ """
+ fetch aggregated fields from the table: "account"
+ """
+ account_aggregate(
+ """distinct select on columns"""
+ distinct_on: [account_select_column!]
- """upsert condition"""
- on_conflict: order_on_conflict
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate avg on columns"""
-type order_avg_fields {
- quantity: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-order by avg() on columns of table "order"
-"""
-input order_avg_order_by {
- quantity: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [account_order_by!]
-"""
-Boolean expression to filter rows from the table "order". All fields are combined with a logical 'AND'.
-"""
-input order_bool_exp {
- _and: [order_bool_exp!]
- _not: order_bool_exp
- _or: [order_bool_exp!]
- account: account_bool_exp
- accountId: uuid_comparison_exp
- created_at: timestamptz_comparison_exp
- eventPassId: String_comparison_exp
- eventPassNftContract: eventPassNftContract_bool_exp
- id: uuid_comparison_exp
- packAmount: passAmount_bool_exp
- packId: String_comparison_exp
- packNftContract: packNftContract_bool_exp
- packPricing: passPricing_bool_exp
- passAmount: passAmount_bool_exp
- passPricing: passPricing_bool_exp
- quantity: Int_comparison_exp
- status: orderStatus_enum_comparison_exp
- stripeCheckoutSessionId: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """filter the rows returned"""
+ where: account_bool_exp
+ ): account_aggregate!
-"""column ordering options"""
-enum order_by {
- """in ascending order, nulls last"""
- asc
+ """fetch data from the table: "account" using primary key columns"""
+ account_by_pk(id: uuid!): account
- """in ascending order, nulls first"""
- asc_nulls_first
+ """
+ fetch data from the table: "apiKeyStatus"
+ """
+ apiKeyStatus(
+ """distinct select on columns"""
+ distinct_on: [apiKeyStatus_select_column!]
- """in ascending order, nulls last"""
- asc_nulls_last
+ """limit the number of rows returned"""
+ limit: Int
- """in descending order, nulls first"""
- desc
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """in descending order, nulls first"""
- desc_nulls_first
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyStatus_order_by!]
- """in descending order, nulls last"""
- desc_nulls_last
-}
+ """filter the rows returned"""
+ where: apiKeyStatus_bool_exp
+ ): [apiKeyStatus!]!
-"""
-unique or primary key constraints on table "order"
-"""
-enum order_constraint {
"""
- unique or primary key constraint on columns "id"
+ fetch aggregated fields from the table: "apiKeyStatus"
"""
- order_pkey
-}
+ apiKeyStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [apiKeyStatus_select_column!]
-"""
-input type for incrementing numeric columns in table "order"
-"""
-input order_inc_input {
- quantity: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "order"
-"""
-input order_insert_input {
- account: account_obj_rel_insert_input
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- eventPassNftContract: eventPassNftContract_obj_rel_insert_input
- id: uuid
- packAmount: passAmount_obj_rel_insert_input
- packId: String
- packNftContract: packNftContract_obj_rel_insert_input
- packPricing: passPricing_obj_rel_insert_input
- passAmount: passAmount_obj_rel_insert_input
- passPricing: passPricing_obj_rel_insert_input
- quantity: Int
- status: orderStatus_enum
- stripeCheckoutSessionId: String
- updated_at: timestamptz
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type order_max_fields {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
- stripeCheckoutSessionId: String
- updated_at: timestamptz
-}
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyStatus_order_by!]
-"""
-order by max() on columns of table "order"
-"""
-input order_max_order_by {
- accountId: order_by
- created_at: order_by
- eventPassId: order_by
- id: order_by
- packId: order_by
- quantity: order_by
- stripeCheckoutSessionId: order_by
- updated_at: order_by
-}
+ """filter the rows returned"""
+ where: apiKeyStatus_bool_exp
+ ): apiKeyStatus_aggregate!
+
+ """fetch data from the table: "apiKeyStatus" using primary key columns"""
+ apiKeyStatus_by_pk(
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String!
+ ): apiKeyStatus
+
+ """
+ fetch data from the table: "apiKeyType"
+ """
+ apiKeyType(
+ """distinct select on columns"""
+ distinct_on: [apiKeyType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyType_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyType_bool_exp
+ ): [apiKeyType!]!
+
+ """
+ fetch aggregated fields from the table: "apiKeyType"
+ """
+ apiKeyType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [apiKeyType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyType_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyType_bool_exp
+ ): apiKeyType_aggregate!
+
+ """fetch data from the table: "apiKeyType" using primary key columns"""
+ apiKeyType_by_pk(
+ """The type of the API key"""
+ value: String!
+ ): apiKeyType
+
+ """Retrieve a single asset"""
+ asset(
+ """
+ Defines which locales should be returned.
+
+ Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: AssetWhereUniqueInput!
+ ): Asset
+
+ """Retrieve document version"""
+ assetVersion(where: VersionWhereInput!): DocumentVersion
+
+ """Retrieve multiple assets"""
+ assets(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: AssetOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: AssetWhereInput
+ ): [Asset!]!
+
+ """Retrieve multiple assets using the Relay connection interface"""
+ assetsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: AssetOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: AssetWhereInput
+ ): AssetConnection!
+
+ """Retrieve a single contentSpace"""
+ contentSpace(
+ """
+ Defines which locales should be returned.
+
+ Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: ContentSpaceWhereUniqueInput!
+ ): ContentSpace
+
+ """
+ fetch data from the table: "contentSpaceParameters"
+ """
+ contentSpaceParameters(
+ """distinct select on columns"""
+ distinct_on: [contentSpaceParameters_select_column!]
-"""aggregate min on columns"""
-type order_min_fields {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
- stripeCheckoutSessionId: String
- updated_at: timestamptz
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-order by min() on columns of table "order"
-"""
-input order_min_order_by {
- accountId: order_by
- created_at: order_by
- eventPassId: order_by
- id: order_by
- packId: order_by
- quantity: order_by
- stripeCheckoutSessionId: order_by
- updated_at: order_by
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-response of any mutation on the table "order"
-"""
-type order_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """sort the rows by one or more columns"""
+ order_by: [contentSpaceParameters_order_by!]
- """data from the rows affected by the mutation"""
- returning: [order!]!
-}
+ """filter the rows returned"""
+ where: contentSpaceParameters_bool_exp
+ ): [contentSpaceParameters!]!
-"""
-on_conflict condition type for table "order"
-"""
-input order_on_conflict {
- constraint: order_constraint!
- update_columns: [order_update_column!]! = []
- where: order_bool_exp
-}
+ """
+ fetch aggregated fields from the table: "contentSpaceParameters"
+ """
+ contentSpaceParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [contentSpaceParameters_select_column!]
-"""Ordering options when selecting data from "order"."""
-input order_order_by {
- account: account_order_by
- accountId: order_by
- created_at: order_by
- eventPassId: order_by
- eventPassNftContract: eventPassNftContract_order_by
- id: order_by
- packAmount: passAmount_order_by
- packId: order_by
- packNftContract: packNftContract_order_by
- packPricing: passPricing_order_by
- passAmount: passAmount_order_by
- passPricing: passPricing_order_by
- quantity: order_by
- status: order_by
- stripeCheckoutSessionId: order_by
- updated_at: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""primary key columns input for table: order"""
-input order_pk_columns_input {
- id: uuid!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-select columns of table "order"
-"""
-enum order_select_column {
- """column name"""
- accountId
+ """sort the rows by one or more columns"""
+ order_by: [contentSpaceParameters_order_by!]
- """column name"""
- created_at
+ """filter the rows returned"""
+ where: contentSpaceParameters_bool_exp
+ ): contentSpaceParameters_aggregate!
- """column name"""
- eventPassId
+ """
+ fetch data from the table: "contentSpaceParameters" using primary key columns
+ """
+ contentSpaceParameters_by_pk(id: uuid!): contentSpaceParameters
- """column name"""
- id
+ """
+ fetch data from the table: "contentSpaceStatus"
+ """
+ contentSpaceStatus(
+ """distinct select on columns"""
+ distinct_on: [contentSpaceStatus_select_column!]
- """column name"""
- packId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- quantity
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- status
+ """sort the rows by one or more columns"""
+ order_by: [contentSpaceStatus_order_by!]
- """column name"""
- stripeCheckoutSessionId
+ """filter the rows returned"""
+ where: contentSpaceStatus_bool_exp
+ ): [contentSpaceStatus!]!
- """column name"""
- updated_at
-}
+ """
+ fetch aggregated fields from the table: "contentSpaceStatus"
+ """
+ contentSpaceStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [contentSpaceStatus_select_column!]
-"""
-input type for updating data in table "order"
-"""
-input order_set_input {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
- status: orderStatus_enum
- stripeCheckoutSessionId: String
- updated_at: timestamptz
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate stddev on columns"""
-type order_stddev_fields {
- quantity: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-order by stddev() on columns of table "order"
-"""
-input order_stddev_order_by {
- quantity: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [contentSpaceStatus_order_by!]
-"""aggregate stddev_pop on columns"""
-type order_stddev_pop_fields {
- quantity: Float
-}
+ """filter the rows returned"""
+ where: contentSpaceStatus_bool_exp
+ ): contentSpaceStatus_aggregate!
-"""
-order by stddev_pop() on columns of table "order"
-"""
-input order_stddev_pop_order_by {
- quantity: order_by
-}
+ """
+ fetch data from the table: "contentSpaceStatus" using primary key columns
+ """
+ contentSpaceStatus_by_pk(value: String!): contentSpaceStatus
-"""aggregate stddev_samp on columns"""
-type order_stddev_samp_fields {
- quantity: Float
-}
+ """Retrieve document version"""
+ contentSpaceVersion(where: VersionWhereInput!): DocumentVersion
-"""
-order by stddev_samp() on columns of table "order"
-"""
-input order_stddev_samp_order_by {
- quantity: order_by
-}
+ """Retrieve multiple contentSpaces"""
+ contentSpaces(
+ after: String
+ before: String
+ first: Int
+ last: Int
-"""
-Streaming cursor of the table "order"
-"""
-input order_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: order_stream_cursor_value_input!
+ """
+ Defines which locales should be returned.
+
+ Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ContentSpaceOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ContentSpaceWhereInput
+ ): [ContentSpace!]!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """Retrieve multiple contentSpaces using the Relay connection interface"""
+ contentSpacesConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
-"""Initial value of the column from where the streaming should start"""
-input order_stream_cursor_value_input {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
- status: orderStatus_enum
- stripeCheckoutSessionId: String
- updated_at: timestamptz
-}
+ """
+ Defines which locales should be returned.
+
+ Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ContentSpaceOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ContentSpaceWhereInput
+ ): ContentSpaceConnection!
-"""aggregate sum on columns"""
-type order_sum_fields {
- quantity: Int
-}
+ """
+ fetch data from the table: "currency"
+ """
+ currency(
+ """distinct select on columns"""
+ distinct_on: [currency_select_column!]
-"""
-order by sum() on columns of table "order"
-"""
-input order_sum_order_by {
- quantity: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-update columns of table "order"
-"""
-enum order_update_column {
- """column name"""
- accountId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- created_at
+ """sort the rows by one or more columns"""
+ order_by: [currency_order_by!]
- """column name"""
- eventPassId
+ """filter the rows returned"""
+ where: currency_bool_exp
+ ): [currency!]!
- """column name"""
- id
+ """
+ fetch aggregated fields from the table: "currency"
+ """
+ currency_aggregate(
+ """distinct select on columns"""
+ distinct_on: [currency_select_column!]
- """column name"""
- packId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- quantity
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- status
+ """sort the rows by one or more columns"""
+ order_by: [currency_order_by!]
- """column name"""
- stripeCheckoutSessionId
+ """filter the rows returned"""
+ where: currency_bool_exp
+ ): currency_aggregate!
- """column name"""
- updated_at
-}
+ """fetch data from the table: "currency" using primary key columns"""
+ currency_by_pk(value: String!): currency
-input order_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: order_inc_input
+ """Fetches an object given its ID"""
+ entities(
+ """Defines which locales to query for"""
+ locales: [Locale!]
- """sets the columns of the filtered rows to the given values"""
- _set: order_set_input
+ """The where parameters to query components"""
+ where: [EntityWhereInput!]!
+ ): [Entity!]
- """filter the rows which have to be updated"""
- where: order_bool_exp!
-}
+ """Retrieve a single event"""
+ event(
+ """
+ Defines which locales should be returned.
+
+ Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: EventWhereUniqueInput!
+ ): Event
-"""aggregate var_pop on columns"""
-type order_var_pop_fields {
- quantity: Float
-}
+ """
+ fetch data from the table: "eventParameters"
+ """
+ eventParameters(
+ """distinct select on columns"""
+ distinct_on: [eventParameters_select_column!]
-"""
-order by var_pop() on columns of table "order"
-"""
-input order_var_pop_order_by {
- quantity: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate var_samp on columns"""
-type order_var_samp_fields {
- quantity: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-order by var_samp() on columns of table "order"
-"""
-input order_var_samp_order_by {
- quantity: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventParameters_order_by!]
-"""aggregate variance on columns"""
-type order_variance_fields {
- quantity: Float
-}
+ """filter the rows returned"""
+ where: eventParameters_bool_exp
+ ): [eventParameters!]!
-"""
-order by variance() on columns of table "order"
-"""
-input order_variance_order_by {
- quantity: order_by
-}
+ """
+ fetch aggregated fields from the table: "eventParameters"
+ """
+ eventParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventParameters_select_column!]
-"""
-Junction table linking pack NFTs to event pass NFTs. Ensures that each event pass NFT is uniquely associated with a pack.
-"""
-type packEventPassNft {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid!
+ """limit the number of rows returned"""
+ limit: Int
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-aggregated selection of "packEventPassNft"
-"""
-type packEventPassNft_aggregate {
- aggregate: packEventPassNft_aggregate_fields
- nodes: [packEventPassNft!]!
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventParameters_order_by!]
-input packEventPassNft_aggregate_bool_exp {
- count: packEventPassNft_aggregate_bool_exp_count
-}
+ """filter the rows returned"""
+ where: eventParameters_bool_exp
+ ): eventParameters_aggregate!
-input packEventPassNft_aggregate_bool_exp_count {
- arguments: [packEventPassNft_select_column!]
- distinct: Boolean
- filter: packEventPassNft_bool_exp
- predicate: Int_comparison_exp!
-}
+ """fetch data from the table: "eventParameters" using primary key columns"""
+ eventParameters_by_pk(id: uuid!): eventParameters
-"""
-aggregate fields of "packEventPassNft"
-"""
-type packEventPassNft_aggregate_fields {
- count(columns: [packEventPassNft_select_column!], distinct: Boolean): Int!
- max: packEventPassNft_max_fields
- min: packEventPassNft_min_fields
-}
+ """Retrieve a single eventPass"""
+ eventPass(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: EventPassWhereUniqueInput!
+ ): EventPass
-"""
-order by aggregate values of table "packEventPassNft"
-"""
-input packEventPassNft_aggregate_order_by {
- count: order_by
- max: packEventPassNft_max_order_by
- min: packEventPassNft_min_order_by
-}
+ """Retrieve a single eventPassDelayedRevealed"""
+ eventPassDelayedRevealed(
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: EventPassDelayedRevealedWhereUniqueInput!
+ ): EventPassDelayedRevealed
-"""
-input type for inserting array relation for remote table "packEventPassNft"
-"""
-input packEventPassNft_arr_rel_insert_input {
- data: [packEventPassNft_insert_input!]!
+ """Retrieve document version"""
+ eventPassDelayedRevealedVersion(where: VersionWhereInput!): DocumentVersion
- """upsert condition"""
- on_conflict: packEventPassNft_on_conflict
-}
+ """
+ fetch data from the table: "eventPassNft"
+ """
+ eventPassNft(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
-"""
-Boolean expression to filter rows from the table "packEventPassNft". All fields are combined with a logical 'AND'.
-"""
-input packEventPassNft_bool_exp {
- _and: [packEventPassNft_bool_exp!]
- _not: packEventPassNft_bool_exp
- _or: [packEventPassNft_bool_exp!]
- eventPassNftId: uuid_comparison_exp
- packNftSupplyId: uuid_comparison_exp
-}
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): [eventPassNft!]!
-"""
-unique or primary key constraints on table "packEventPassNft"
-"""
-enum packEventPassNft_constraint {
"""
- unique or primary key constraint on columns "eventPassNftId"
+ fetch data from the table: "eventPassNftContract"
"""
- packEventPassNft_eventPassNftId_key
+ eventPassNftContract(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassNftContract_bool_exp
+ ): [eventPassNftContract!]!
"""
- unique or primary key constraint on columns "packNftSupplyId", "eventPassNftId"
+ fetch data from the table: "eventPassNftContractType"
"""
- packEventPassNft_pkey
-}
+ eventPassNftContractType(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContractType_select_column!]
-"""
-input type for inserting data into table "packEventPassNft"
-"""
-input packEventPassNft_insert_input {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid
+ """limit the number of rows returned"""
+ limit: Int
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type packEventPassNft_max_fields {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContractType_order_by!]
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid
-}
+ """filter the rows returned"""
+ where: eventPassNftContractType_bool_exp
+ ): [eventPassNftContractType!]!
-"""
-order by max() on columns of table "packEventPassNft"
-"""
-input packEventPassNft_max_order_by {
- """Identifier for the event pass NFT."""
- eventPassNftId: order_by
+ """
+ fetch aggregated fields from the table: "eventPassNftContractType"
+ """
+ eventPassNftContractType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContractType_select_column!]
- """Identifier for the pack NFT supply."""
- packNftSupplyId: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate min on columns"""
-type packEventPassNft_min_fields {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContractType_order_by!]
-"""
-order by min() on columns of table "packEventPassNft"
-"""
-input packEventPassNft_min_order_by {
- """Identifier for the event pass NFT."""
- eventPassNftId: order_by
+ """filter the rows returned"""
+ where: eventPassNftContractType_bool_exp
+ ): eventPassNftContractType_aggregate!
- """Identifier for the pack NFT supply."""
- packNftSupplyId: order_by
-}
+ """
+ fetch data from the table: "eventPassNftContractType" using primary key columns
+ """
+ eventPassNftContractType_by_pk(
+ """Type name for event pass NFT contract."""
+ value: String!
+ ): eventPassNftContractType
-"""
-response of any mutation on the table "packEventPassNft"
-"""
-type packEventPassNft_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ fetch aggregated fields from the table: "eventPassNftContract"
+ """
+ eventPassNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNftContract_select_column!]
- """data from the rows affected by the mutation"""
- returning: [packEventPassNft!]!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-on_conflict condition type for table "packEventPassNft"
-"""
-input packEventPassNft_on_conflict {
- constraint: packEventPassNft_constraint!
- update_columns: [packEventPassNft_update_column!]! = []
- where: packEventPassNft_bool_exp
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""Ordering options when selecting data from "packEventPassNft"."""
-input packEventPassNft_order_by {
- eventPassNftId: order_by
- packNftSupplyId: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNftContract_order_by!]
-"""primary key columns input for table: packEventPassNft"""
-input packEventPassNft_pk_columns_input {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid!
+ """filter the rows returned"""
+ where: eventPassNftContract_bool_exp
+ ): eventPassNftContract_aggregate!
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid!
-}
+ """
+ fetch data from the table: "eventPassNftContract" using primary key columns
+ """
+ eventPassNftContract_by_pk(id: uuid!): eventPassNftContract
-"""
-select columns of table "packEventPassNft"
-"""
-enum packEventPassNft_select_column {
- """column name"""
- eventPassNftId
+ """
+ fetch aggregated fields from the table: "eventPassNft"
+ """
+ eventPassNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassNft_select_column!]
- """column name"""
- packNftSupplyId
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for updating data in table "packEventPassNft"
-"""
-input packEventPassNft_set_input {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventPassNft_order_by!]
-"""
-Streaming cursor of the table "packEventPassNft"
-"""
-input packEventPassNft_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: packEventPassNft_stream_cursor_value_input!
+ """filter the rows returned"""
+ where: eventPassNft_bool_exp
+ ): eventPassNft_aggregate!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """fetch data from the table: "eventPassNft" using primary key columns"""
+ eventPassNft_by_pk(id: uuid!): eventPassNft
-"""Initial value of the column from where the streaming should start"""
-input packEventPassNft_stream_cursor_value_input {
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid
+ """
+ fetch data from the table: "eventPassOrderSums"
+ """
+ eventPassOrderSums(
+ """distinct select on columns"""
+ distinct_on: [eventPassOrderSums_select_column!]
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-update columns of table "packEventPassNft"
-"""
-enum packEventPassNft_update_column {
- """column name"""
- eventPassNftId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- packNftSupplyId
-}
+ """sort the rows by one or more columns"""
+ order_by: [eventPassOrderSums_order_by!]
-input packEventPassNft_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: packEventPassNft_set_input
+ """filter the rows returned"""
+ where: eventPassOrderSums_bool_exp
+ ): [eventPassOrderSums!]!
- """filter the rows which have to be updated"""
- where: packEventPassNft_bool_exp!
-}
+ """
+ fetch aggregated fields from the table: "eventPassOrderSums"
+ """
+ eventPassOrderSums_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventPassOrderSums_select_column!]
-"""
-Manages the NFTs associated with each pack, including details like contract address, chain ID, and the contents of each pack.
-"""
-type packNftContract {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String!
+ """limit the number of rows returned"""
+ limit: Int
- """Smart contract address for the NFT collection."""
- contractAddress: String!
- created_at: timestamptz!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """An array relationship"""
- eventPassNftContracts(
+ """sort the rows by one or more columns"""
+ order_by: [eventPassOrderSums_order_by!]
+
+ """filter the rows returned"""
+ where: eventPassOrderSums_bool_exp
+ ): eventPassOrderSums_aggregate!
+
+ """
+ fetch data from the table: "eventPassOrderSums" using primary key columns
+ """
+ eventPassOrderSums_by_pk(eventPassId: String!): eventPassOrderSums
+
+ """
+ fetch data from the table: "eventPassType"
+ """
+ eventPassType(
"""distinct select on columns"""
- distinct_on: [packNftContractEventPass_select_column!]
+ distinct_on: [eventPassType_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -22160,16 +30990,18 @@ type packNftContract {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [packNftContractEventPass_order_by!]
+ order_by: [eventPassType_order_by!]
"""filter the rows returned"""
- where: packNftContractEventPass_bool_exp
- ): [packNftContractEventPass!]!
+ where: eventPassType_bool_exp
+ ): [eventPassType!]!
- """An aggregate relationship"""
- eventPassNftContracts_aggregate(
+ """
+ fetch aggregated fields from the table: "eventPassType"
+ """
+ eventPassType_aggregate(
"""distinct select on columns"""
- distinct_on: [packNftContractEventPass_select_column!]
+ distinct_on: [eventPassType_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -22178,16 +31010,24 @@ type packNftContract {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [packNftContractEventPass_order_by!]
+ order_by: [eventPassType_order_by!]
"""filter the rows returned"""
- where: packNftContractEventPass_bool_exp
- ): packNftContractEventPass_aggregate!
+ where: eventPassType_bool_exp
+ ): eventPassType_aggregate!
- """An array relationship"""
- eventPassNfts(
+ """fetch data from the table: "eventPassType" using primary key columns"""
+ eventPassType_by_pk(
+ """Type name for event pass."""
+ value: String!
+ ): eventPassType
+
+ """
+ fetch data from the table: "eventPassValidationType"
+ """
+ eventPassValidationType(
"""distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ distinct_on: [eventPassValidationType_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -22196,16 +31036,18 @@ type packNftContract {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ order_by: [eventPassValidationType_order_by!]
"""filter the rows returned"""
- where: eventPassNft_bool_exp
- ): [eventPassNft!]!
+ where: eventPassValidationType_bool_exp
+ ): [eventPassValidationType!]!
- """An aggregate relationship"""
- eventPassNfts_aggregate(
+ """
+ fetch aggregated fields from the table: "eventPassValidationType"
+ """
+ eventPassValidationType_aggregate(
"""distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ distinct_on: [eventPassValidationType_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -22214,971 +31056,932 @@ type packNftContract {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ order_by: [eventPassValidationType_order_by!]
"""filter the rows returned"""
- where: eventPassNft_bool_exp
- ): eventPassNft_aggregate!
+ where: eventPassValidationType_bool_exp
+ ): eventPassValidationType_aggregate!
- """Unique identifier for each pack NFT contract."""
- id: uuid!
+ """
+ fetch data from the table: "eventPassValidationType" using primary key columns
+ """
+ eventPassValidationType_by_pk(
+ """Type name for event pass validation."""
+ value: String!
+ ): eventPassValidationType
+
+ """Retrieve document version"""
+ eventPassVersion(where: VersionWhereInput!): DocumentVersion
+
+ """Retrieve multiple eventPasses"""
+ eventPasses(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventPassOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventPassWhereInput
+ ): [EventPass!]!
+
+ """Retrieve multiple eventPasses using the Relay connection interface"""
+ eventPassesConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventPassOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventPassWhereInput
+ ): EventPassConnection!
+
+ """Retrieve multiple eventPassesDelayedRevealed"""
+ eventPassesDelayedRevealed(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventPassDelayedRevealedOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventPassDelayedRevealedWhereInput
+ ): [EventPassDelayedRevealed!]!
"""
- Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
+ Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface
"""
- isAirdrop: Boolean!
+ eventPassesDelayedRevealedConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """Identifier for the lottery associated with the pack."""
- lotteryId: String!
+ """
+ Defines which locales should be returned.
+
+ Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventPassDelayedRevealedOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventPassDelayedRevealedWhereInput
+ ): EventPassDelayedRevealedConnection!
- """Identifier for the organizer responsible for the pack."""
- organizerId: String!
+ """
+ fetch data from the table: "eventStatus"
+ """
+ eventStatus(
+ """distinct select on columns"""
+ distinct_on: [eventStatus_select_column!]
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String!
+ """limit the number of rows returned"""
+ limit: Int
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int!
- updated_at: timestamptz!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventStatus_order_by!]
+
+ """filter the rows returned"""
+ where: eventStatus_bool_exp
+ ): [eventStatus!]!
-"""
-This junction table links each pack NFT contract to various event pass NFT contracts, along with the quantity of each event pass type included in the pack. It facilitates the management of event passes bundled within a specific pack.
-"""
-type packNftContractEventPass {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch aggregated fields from the table: "eventStatus"
"""
- amount: Int!
+ eventStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [eventStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [eventStatus_order_by!]
+
+ """filter the rows returned"""
+ where: eventStatus_bool_exp
+ ): eventStatus_aggregate!
+
+ """fetch data from the table: "eventStatus" using primary key columns"""
+ eventStatus_by_pk(value: String!): eventStatus
+
+ """Retrieve document version"""
+ eventVersion(where: VersionWhereInput!): DocumentVersion
+
+ """Retrieve multiple events"""
+ events(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventWhereInput
+ ): [Event!]!
+
+ """Retrieve multiple events using the Relay connection interface"""
+ eventsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String!
+ """
+ Defines which locales should be returned.
+
+ Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: EventOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: EventWhereInput
+ ): EventConnection!
"""
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ fetch data from the table: "follow"
"""
- packNftContractId: uuid!
-}
-
-"""
-aggregated selection of "packNftContractEventPass"
-"""
-type packNftContractEventPass_aggregate {
- aggregate: packNftContractEventPass_aggregate_fields
- nodes: [packNftContractEventPass!]!
-}
-
-input packNftContractEventPass_aggregate_bool_exp {
- count: packNftContractEventPass_aggregate_bool_exp_count
-}
-
-input packNftContractEventPass_aggregate_bool_exp_count {
- arguments: [packNftContractEventPass_select_column!]
- distinct: Boolean
- filter: packNftContractEventPass_bool_exp
- predicate: Int_comparison_exp!
-}
-
-"""
-aggregate fields of "packNftContractEventPass"
-"""
-type packNftContractEventPass_aggregate_fields {
- avg: packNftContractEventPass_avg_fields
- count(columns: [packNftContractEventPass_select_column!], distinct: Boolean): Int!
- max: packNftContractEventPass_max_fields
- min: packNftContractEventPass_min_fields
- stddev: packNftContractEventPass_stddev_fields
- stddev_pop: packNftContractEventPass_stddev_pop_fields
- stddev_samp: packNftContractEventPass_stddev_samp_fields
- sum: packNftContractEventPass_sum_fields
- var_pop: packNftContractEventPass_var_pop_fields
- var_samp: packNftContractEventPass_var_samp_fields
- variance: packNftContractEventPass_variance_fields
-}
+ follow(
+ """distinct select on columns"""
+ distinct_on: [follow_select_column!]
-"""
-order by aggregate values of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_aggregate_order_by {
- avg: packNftContractEventPass_avg_order_by
- count: order_by
- max: packNftContractEventPass_max_order_by
- min: packNftContractEventPass_min_order_by
- stddev: packNftContractEventPass_stddev_order_by
- stddev_pop: packNftContractEventPass_stddev_pop_order_by
- stddev_samp: packNftContractEventPass_stddev_samp_order_by
- sum: packNftContractEventPass_sum_order_by
- var_pop: packNftContractEventPass_var_pop_order_by
- var_samp: packNftContractEventPass_var_samp_order_by
- variance: packNftContractEventPass_variance_order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting array relation for remote table "packNftContractEventPass"
-"""
-input packNftContractEventPass_arr_rel_insert_input {
- data: [packNftContractEventPass_insert_input!]!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """upsert condition"""
- on_conflict: packNftContractEventPass_on_conflict
-}
+ """sort the rows by one or more columns"""
+ order_by: [follow_order_by!]
-"""aggregate avg on columns"""
-type packNftContractEventPass_avg_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """filter the rows returned"""
+ where: follow_bool_exp
+ ): [follow!]!
-"""
-order by avg() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_avg_order_by {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch aggregated fields from the table: "follow"
"""
- amount: order_by
-}
+ follow_aggregate(
+ """distinct select on columns"""
+ distinct_on: [follow_select_column!]
-"""
-Boolean expression to filter rows from the table "packNftContractEventPass". All fields are combined with a logical 'AND'.
-"""
-input packNftContractEventPass_bool_exp {
- _and: [packNftContractEventPass_bool_exp!]
- _not: packNftContractEventPass_bool_exp
- _or: [packNftContractEventPass_bool_exp!]
- amount: Int_comparison_exp
- eventPassId: String_comparison_exp
- packNftContractId: uuid_comparison_exp
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-unique or primary key constraints on table "packNftContractEventPass"
-"""
-enum packNftContractEventPass_constraint {
- """
- unique or primary key constraint on columns "eventPassId", "packNftContractId"
- """
- packNftContractEventPass_pkey
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-input type for incrementing numeric columns in table "packNftContractEventPass"
-"""
-input packNftContractEventPass_inc_input {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Int
-}
+ """sort the rows by one or more columns"""
+ order_by: [follow_order_by!]
-"""
-input type for inserting data into table "packNftContractEventPass"
-"""
-input packNftContractEventPass_insert_input {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Int
+ """filter the rows returned"""
+ where: follow_bool_exp
+ ): follow_aggregate!
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String
+ """fetch data from the table: "follow" using primary key columns"""
+ follow_by_pk(
+ """
+ References the unique identifier of the account that is following an organizer.
+ """
+ accountId: uuid!
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid
-}
+ """
+ Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
+ """
+ organizerSlug: String!
+ ): follow
-"""aggregate max on columns"""
-type packNftContractEventPass_max_fields {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch data from the table: "kyc"
"""
- amount: Int
+ kyc(
+ """distinct select on columns"""
+ distinct_on: [kyc_select_column!]
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String
+ """limit the number of rows returned"""
+ limit: Int
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-order by max() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_max_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
+ """sort the rows by one or more columns"""
+ order_by: [kyc_order_by!]
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: order_by
+ """filter the rows returned"""
+ where: kyc_bool_exp
+ ): [kyc!]!
"""
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ fetch data from the table: "kycLevelName"
"""
- packNftContractId: order_by
-}
+ kycLevelName(
+ """distinct select on columns"""
+ distinct_on: [kycLevelName_select_column!]
-"""aggregate min on columns"""
-type packNftContractEventPass_min_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Int
+ """limit the number of rows returned"""
+ limit: Int
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid
-}
+ """sort the rows by one or more columns"""
+ order_by: [kycLevelName_order_by!]
-"""
-order by min() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_min_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
+ """filter the rows returned"""
+ where: kycLevelName_bool_exp
+ ): [kycLevelName!]!
"""
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ fetch aggregated fields from the table: "kycLevelName"
"""
- eventPassId: order_by
+ kycLevelName_aggregate(
+ """distinct select on columns"""
+ distinct_on: [kycLevelName_select_column!]
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-response of any mutation on the table "packNftContractEventPass"
-"""
-type packNftContractEventPass_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """data from the rows affected by the mutation"""
- returning: [packNftContractEventPass!]!
-}
+ """sort the rows by one or more columns"""
+ order_by: [kycLevelName_order_by!]
-"""
-on_conflict condition type for table "packNftContractEventPass"
-"""
-input packNftContractEventPass_on_conflict {
- constraint: packNftContractEventPass_constraint!
- update_columns: [packNftContractEventPass_update_column!]! = []
- where: packNftContractEventPass_bool_exp
-}
+ """filter the rows returned"""
+ where: kycLevelName_bool_exp
+ ): kycLevelName_aggregate!
-"""Ordering options when selecting data from "packNftContractEventPass"."""
-input packNftContractEventPass_order_by {
- amount: order_by
- eventPassId: order_by
- packNftContractId: order_by
-}
+ """fetch data from the table: "kycLevelName" using primary key columns"""
+ kycLevelName_by_pk(
+ """
+ basic_kyc_level: Basic level of KYC verification.
+ advanced_kyc_level: Advanced level of KYC verification.
+ """
+ value: String!
+ ): kycLevelName
-"""primary key columns input for table: packNftContractEventPass"""
-input packNftContractEventPass_pk_columns_input {
"""
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ fetch data from the table: "kycStatus"
"""
- eventPassId: String!
+ kycStatus(
+ """distinct select on columns"""
+ distinct_on: [kycStatus_select_column!]
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-select columns of table "packNftContractEventPass"
-"""
-enum packNftContractEventPass_select_column {
- """column name"""
- amount
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- eventPassId
+ """sort the rows by one or more columns"""
+ order_by: [kycStatus_order_by!]
- """column name"""
- packNftContractId
-}
+ """filter the rows returned"""
+ where: kycStatus_bool_exp
+ ): [kycStatus!]!
-"""
-input type for updating data in table "packNftContractEventPass"
-"""
-input packNftContractEventPass_set_input {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch aggregated fields from the table: "kycStatus"
"""
- amount: Int
+ kycStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [kycStatus_select_column!]
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String
+ """limit the number of rows returned"""
+ limit: Int
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate stddev on columns"""
-type packNftContractEventPass_stddev_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [kycStatus_order_by!]
-"""
-order by stddev() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_stddev_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
-}
+ """filter the rows returned"""
+ where: kycStatus_bool_exp
+ ): kycStatus_aggregate!
-"""aggregate stddev_pop on columns"""
-type packNftContractEventPass_stddev_pop_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """fetch data from the table: "kycStatus" using primary key columns"""
+ kycStatus_by_pk(
+ """
+ init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
+ pending: An applicant is ready to be processed.
+ prechecked: The check is in a half way of being finished.
+ queued: The checks have been started for the applicant.
+ completed: The check has been completed.
+ onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
+ """
+ value: String!
+ ): kycStatus
-"""
-order by stddev_pop() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_stddev_pop_order_by {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch aggregated fields from the table: "kyc"
"""
- amount: order_by
-}
+ kyc_aggregate(
+ """distinct select on columns"""
+ distinct_on: [kyc_select_column!]
-"""aggregate stddev_samp on columns"""
-type packNftContractEventPass_stddev_samp_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-order by stddev_samp() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_stddev_samp_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-Streaming cursor of the table "packNftContractEventPass"
-"""
-input packNftContractEventPass_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: packNftContractEventPass_stream_cursor_value_input!
+ """sort the rows by one or more columns"""
+ order_by: [kyc_order_by!]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """filter the rows returned"""
+ where: kyc_bool_exp
+ ): kyc_aggregate!
-"""Initial value of the column from where the streaming should start"""
-input packNftContractEventPass_stream_cursor_value_input {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Int
+ """fetch data from the table: "kyc" using primary key columns"""
+ kyc_by_pk(
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid!
+ ): kyc
"""
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ fetch data from the table: "lotteryParameters"
"""
- eventPassId: String
+ lotteryParameters(
+ """distinct select on columns"""
+ distinct_on: [lotteryParameters_select_column!]
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate sum on columns"""
-type packNftContractEventPass_sum_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Int
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-order by sum() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_sum_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [lotteryParameters_order_by!]
-"""
-update columns of table "packNftContractEventPass"
-"""
-enum packNftContractEventPass_update_column {
- """column name"""
- amount
+ """filter the rows returned"""
+ where: lotteryParameters_bool_exp
+ ): [lotteryParameters!]!
- """column name"""
- eventPassId
+ """
+ fetch aggregated fields from the table: "lotteryParameters"
+ """
+ lotteryParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [lotteryParameters_select_column!]
- """column name"""
- packNftContractId
-}
+ """limit the number of rows returned"""
+ limit: Int
-input packNftContractEventPass_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContractEventPass_inc_input
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContractEventPass_set_input
+ """sort the rows by one or more columns"""
+ order_by: [lotteryParameters_order_by!]
- """filter the rows which have to be updated"""
- where: packNftContractEventPass_bool_exp!
-}
+ """filter the rows returned"""
+ where: lotteryParameters_bool_exp
+ ): lotteryParameters_aggregate!
-"""aggregate var_pop on columns"""
-type packNftContractEventPass_var_pop_fields {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch data from the table: "lotteryParameters" using primary key columns
"""
- amount: Float
-}
+ lotteryParameters_by_pk(id: uuid!): lotteryParameters
-"""
-order by var_pop() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_var_pop_order_by {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch data from the table: "lotteryStatus"
"""
- amount: order_by
-}
+ lotteryStatus(
+ """distinct select on columns"""
+ distinct_on: [lotteryStatus_select_column!]
-"""aggregate var_samp on columns"""
-type packNftContractEventPass_var_samp_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-order by var_samp() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_var_samp_order_by {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: order_by
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate variance on columns"""
-type packNftContractEventPass_variance_fields {
- """
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
- """
- amount: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [lotteryStatus_order_by!]
+
+ """filter the rows returned"""
+ where: lotteryStatus_bool_exp
+ ): [lotteryStatus!]!
-"""
-order by variance() on columns of table "packNftContractEventPass"
-"""
-input packNftContractEventPass_variance_order_by {
"""
- The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.
+ fetch aggregated fields from the table: "lotteryStatus"
"""
- amount: order_by
-}
+ lotteryStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [lotteryStatus_select_column!]
-"""
-aggregated selection of "packNftContract"
-"""
-type packNftContract_aggregate {
- aggregate: packNftContract_aggregate_fields
- nodes: [packNftContract!]!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-aggregate fields of "packNftContract"
-"""
-type packNftContract_aggregate_fields {
- avg: packNftContract_avg_fields
- count(columns: [packNftContract_select_column!], distinct: Boolean): Int!
- max: packNftContract_max_fields
- min: packNftContract_min_fields
- stddev: packNftContract_stddev_fields
- stddev_pop: packNftContract_stddev_pop_fields
- stddev_samp: packNftContract_stddev_samp_fields
- sum: packNftContract_sum_fields
- var_pop: packNftContract_var_pop_fields
- var_samp: packNftContract_var_samp_fields
- variance: packNftContract_variance_fields
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate avg on columns"""
-type packNftContract_avg_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [lotteryStatus_order_by!]
-"""
-Boolean expression to filter rows from the table "packNftContract". All fields are combined with a logical 'AND'.
-"""
-input packNftContract_bool_exp {
- _and: [packNftContract_bool_exp!]
- _not: packNftContract_bool_exp
- _or: [packNftContract_bool_exp!]
- chainId: String_comparison_exp
- contractAddress: String_comparison_exp
- created_at: timestamptz_comparison_exp
- eventPassNftContracts: packNftContractEventPass_bool_exp
- eventPassNftContracts_aggregate: packNftContractEventPass_aggregate_bool_exp
- eventPassNfts: eventPassNft_bool_exp
- eventPassNfts_aggregate: eventPassNft_aggregate_bool_exp
- id: uuid_comparison_exp
- isAirdrop: Boolean_comparison_exp
- lotteryId: String_comparison_exp
- organizerId: String_comparison_exp
- packId: String_comparison_exp
- rewardsPerPack: Int_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """filter the rows returned"""
+ where: lotteryStatus_bool_exp
+ ): lotteryStatus_aggregate!
-"""
-unique or primary key constraints on table "packNftContract"
-"""
-enum packNftContract_constraint {
- """
- unique or primary key constraint on columns "packId"
- """
- packId_unique
+ """fetch data from the table: "lotteryStatus" using primary key columns"""
+ lotteryStatus_by_pk(value: String!): lotteryStatus
+
+ """Retrieve a single loyaltyCard"""
+ loyaltyCard(
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
"""
- unique or primary key constraint on columns "chainId", "contractAddress"
+ fetch data from the table: "loyaltyCardNft"
"""
- packNftContract_contractAddress_chainId_key
+ loyaltyCardNft(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNft_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardNft_bool_exp
+ ): [loyaltyCardNft!]!
"""
- unique or primary key constraint on columns "id"
+ fetch data from the table: "loyaltyCardNftContract"
"""
- packNftContract_pkey
-}
+ loyaltyCardNftContract(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNftContract_select_column!]
-"""
-input type for incrementing numeric columns in table "packNftContract"
-"""
-input packNftContract_inc_input {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "packNftContract"
-"""
-input packNftContract_insert_input {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Smart contract address for the NFT collection."""
- contractAddress: String
- created_at: timestamptz
- eventPassNftContracts: packNftContractEventPass_arr_rel_insert_input
- eventPassNfts: eventPassNft_arr_rel_insert_input
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNftContract_order_by!]
- """Unique identifier for each pack NFT contract."""
- id: uuid
+ """filter the rows returned"""
+ where: loyaltyCardNftContract_bool_exp
+ ): [loyaltyCardNftContract!]!
"""
- Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
+ fetch aggregated fields from the table: "loyaltyCardNftContract"
"""
- isAirdrop: Boolean
+ loyaltyCardNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNftContract_select_column!]
- """Identifier for the lottery associated with the pack."""
- lotteryId: String
+ """limit the number of rows returned"""
+ limit: Int
- """Identifier for the organizer responsible for the pack."""
- organizerId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNftContract_order_by!]
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: loyaltyCardNftContract_bool_exp
+ ): loyaltyCardNftContract_aggregate!
-"""aggregate max on columns"""
-type packNftContract_max_fields {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String
+ """
+ fetch data from the table: "loyaltyCardNftContract" using primary key columns
+ """
+ loyaltyCardNftContract_by_pk(id: uuid!): loyaltyCardNftContract
- """Smart contract address for the NFT collection."""
- contractAddress: String
- created_at: timestamptz
+ """
+ fetch aggregated fields from the table: "loyaltyCardNft"
+ """
+ loyaltyCardNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNft_select_column!]
- """Unique identifier for each pack NFT contract."""
- id: uuid
+ """limit the number of rows returned"""
+ limit: Int
- """Identifier for the lottery associated with the pack."""
- lotteryId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Identifier for the organizer responsible for the pack."""
- organizerId: String
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNft_order_by!]
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String
+ """filter the rows returned"""
+ where: loyaltyCardNft_bool_exp
+ ): loyaltyCardNft_aggregate!
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
- updated_at: timestamptz
-}
+ """fetch data from the table: "loyaltyCardNft" using primary key columns"""
+ loyaltyCardNft_by_pk(id: uuid!): loyaltyCardNft
-"""aggregate min on columns"""
-type packNftContract_min_fields {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String
+ """
+ fetch data from the table: "loyaltyCardParameters"
+ """
+ loyaltyCardParameters(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardParameters_select_column!]
- """Smart contract address for the NFT collection."""
- contractAddress: String
- created_at: timestamptz
+ """limit the number of rows returned"""
+ limit: Int
- """Unique identifier for each pack NFT contract."""
- id: uuid
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Identifier for the lottery associated with the pack."""
- lotteryId: String
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardParameters_order_by!]
- """Identifier for the organizer responsible for the pack."""
- organizerId: String
+ """filter the rows returned"""
+ where: loyaltyCardParameters_bool_exp
+ ): [loyaltyCardParameters!]!
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String
+ """
+ fetch aggregated fields from the table: "loyaltyCardParameters"
+ """
+ loyaltyCardParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardParameters_select_column!]
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
- updated_at: timestamptz
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-response of any mutation on the table "packNftContract"
-"""
-type packNftContract_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """data from the rows affected by the mutation"""
- returning: [packNftContract!]!
-}
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardParameters_order_by!]
-"""
-input type for inserting object relation for remote table "packNftContract"
-"""
-input packNftContract_obj_rel_insert_input {
- data: packNftContract_insert_input!
+ """filter the rows returned"""
+ where: loyaltyCardParameters_bool_exp
+ ): loyaltyCardParameters_aggregate!
- """upsert condition"""
- on_conflict: packNftContract_on_conflict
-}
+ """
+ fetch data from the table: "loyaltyCardParameters" using primary key columns
+ """
+ loyaltyCardParameters_by_pk(id: uuid!): loyaltyCardParameters
-"""
-on_conflict condition type for table "packNftContract"
-"""
-input packNftContract_on_conflict {
- constraint: packNftContract_constraint!
- update_columns: [packNftContract_update_column!]! = []
- where: packNftContract_bool_exp
-}
+ """
+ fetch data from the table: "loyaltyCardStatus"
+ """
+ loyaltyCardStatus(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardStatus_select_column!]
-"""Ordering options when selecting data from "packNftContract"."""
-input packNftContract_order_by {
- chainId: order_by
- contractAddress: order_by
- created_at: order_by
- eventPassNftContracts_aggregate: packNftContractEventPass_aggregate_order_by
- eventPassNfts_aggregate: eventPassNft_aggregate_order_by
- id: order_by
- isAirdrop: order_by
- lotteryId: order_by
- organizerId: order_by
- packId: order_by
- rewardsPerPack: order_by
- updated_at: order_by
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""primary key columns input for table: packNftContract"""
-input packNftContract_pk_columns_input {
- """Unique identifier for each pack NFT contract."""
- id: uuid!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-select columns of table "packNftContract"
-"""
-enum packNftContract_select_column {
- """column name"""
- chainId
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardStatus_order_by!]
- """column name"""
- contractAddress
+ """filter the rows returned"""
+ where: loyaltyCardStatus_bool_exp
+ ): [loyaltyCardStatus!]!
- """column name"""
- created_at
+ """
+ fetch aggregated fields from the table: "loyaltyCardStatus"
+ """
+ loyaltyCardStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardStatus_select_column!]
- """column name"""
- id
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- isAirdrop
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- lotteryId
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardStatus_order_by!]
- """column name"""
- organizerId
+ """filter the rows returned"""
+ where: loyaltyCardStatus_bool_exp
+ ): loyaltyCardStatus_aggregate!
- """column name"""
- packId
+ """
+ fetch data from the table: "loyaltyCardStatus" using primary key columns
+ """
+ loyaltyCardStatus_by_pk(value: String!): loyaltyCardStatus
- """column name"""
- rewardsPerPack
+ """Retrieve document version"""
+ loyaltyCardVersion(where: VersionWhereInput!): DocumentVersion
- """column name"""
- updated_at
-}
+ """Retrieve multiple loyaltyCards"""
+ loyaltyCards(
+ after: String
+ before: String
+ first: Int
+ last: Int
-"""
-input type for updating data in table "packNftContract"
-"""
-input packNftContract_set_input {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereInput
+ ): [LoyaltyCard!]!
- """Smart contract address for the NFT collection."""
- contractAddress: String
- created_at: timestamptz
+ """Retrieve multiple loyaltyCards using the Relay connection interface"""
+ loyaltyCardsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """Unique identifier for each pack NFT contract."""
- id: uuid
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereInput
+ ): LoyaltyCardConnection!
"""
- Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
+ fetch data from the table: "minterTemporaryWallet"
"""
- isAirdrop: Boolean
+ minterTemporaryWallet(
+ """distinct select on columns"""
+ distinct_on: [minterTemporaryWallet_select_column!]
- """Identifier for the lottery associated with the pack."""
- lotteryId: String
+ """limit the number of rows returned"""
+ limit: Int
- """Identifier for the organizer responsible for the pack."""
- organizerId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String
+ """sort the rows by one or more columns"""
+ order_by: [minterTemporaryWallet_order_by!]
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: minterTemporaryWallet_bool_exp
+ ): [minterTemporaryWallet!]!
-"""aggregate stddev on columns"""
-type packNftContract_stddev_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """
+ fetch aggregated fields from the table: "minterTemporaryWallet"
+ """
+ minterTemporaryWallet_aggregate(
+ """distinct select on columns"""
+ distinct_on: [minterTemporaryWallet_select_column!]
-"""aggregate stddev_pop on columns"""
-type packNftContract_stddev_pop_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate stddev_samp on columns"""
-type packNftContract_stddev_samp_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-Streaming cursor of the table "packNftContract"
-"""
-input packNftContract_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: packNftContract_stream_cursor_value_input!
+ """sort the rows by one or more columns"""
+ order_by: [minterTemporaryWallet_order_by!]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """filter the rows returned"""
+ where: minterTemporaryWallet_bool_exp
+ ): minterTemporaryWallet_aggregate!
-"""Initial value of the column from where the streaming should start"""
-input packNftContract_stream_cursor_value_input {
- """Blockchain network identifier where the NFT contract resides."""
- chainId: String
+ """
+ fetch data from the table: "minterTemporaryWallet" using primary key columns
+ """
+ minterTemporaryWallet_by_pk(
+ """The blockchain address of the temporary wallet."""
+ address: String!
+ ): minterTemporaryWallet
- """Smart contract address for the NFT collection."""
- contractAddress: String
- created_at: timestamptz
+ """
+ fetch data from the table: "nftMintPassword"
+ """
+ nftMintPassword(
+ """distinct select on columns"""
+ distinct_on: [nftMintPassword_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [nftMintPassword_order_by!]
- """Unique identifier for each pack NFT contract."""
- id: uuid
+ """filter the rows returned"""
+ where: nftMintPassword_bool_exp
+ ): [nftMintPassword!]!
"""
- Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.
+ fetch aggregated fields from the table: "nftMintPassword"
"""
- isAirdrop: Boolean
-
- """Identifier for the lottery associated with the pack."""
- lotteryId: String
+ nftMintPassword_aggregate(
+ """distinct select on columns"""
+ distinct_on: [nftMintPassword_select_column!]
- """Identifier for the organizer responsible for the pack."""
- organizerId: String
+ """limit the number of rows returned"""
+ limit: Int
- """Unique identifier for each pack, ensuring no duplicates in the system."""
- packId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
- updated_at: timestamptz
-}
+ """sort the rows by one or more columns"""
+ order_by: [nftMintPassword_order_by!]
-"""aggregate sum on columns"""
-type packNftContract_sum_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Int
-}
+ """filter the rows returned"""
+ where: nftMintPassword_bool_exp
+ ): nftMintPassword_aggregate!
-"""
-update columns of table "packNftContract"
-"""
-enum packNftContract_update_column {
- """column name"""
- chainId
+ """fetch data from the table: "nftMintPassword" using primary key columns"""
+ nftMintPassword_by_pk(id: uuid!): nftMintPassword
- """column name"""
- contractAddress
+ """
+ fetch data from the table: "nftStatus"
+ """
+ nftStatus(
+ """distinct select on columns"""
+ distinct_on: [nftStatus_select_column!]
- """column name"""
- created_at
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- id
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- isAirdrop
+ """sort the rows by one or more columns"""
+ order_by: [nftStatus_order_by!]
- """column name"""
- lotteryId
+ """filter the rows returned"""
+ where: nftStatus_bool_exp
+ ): [nftStatus!]!
- """column name"""
- organizerId
+ """
+ fetch aggregated fields from the table: "nftStatus"
+ """
+ nftStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [nftStatus_select_column!]
- """column name"""
- packId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- rewardsPerPack
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- updated_at
-}
+ """sort the rows by one or more columns"""
+ order_by: [nftStatus_order_by!]
-input packNftContract_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: packNftContract_inc_input
+ """filter the rows returned"""
+ where: nftStatus_bool_exp
+ ): nftStatus_aggregate!
- """sets the columns of the filtered rows to the given values"""
- _set: packNftContract_set_input
+ """fetch data from the table: "nftStatus" using primary key columns"""
+ nftStatus_by_pk(value: String!): nftStatus
- """filter the rows which have to be updated"""
- where: packNftContract_bool_exp!
-}
+ """
+ fetch data from the table: "nftTransfer"
+ """
+ nftTransfer(
+ """distinct select on columns"""
+ distinct_on: [nftTransfer_select_column!]
-"""aggregate var_pop on columns"""
-type packNftContract_var_pop_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate var_samp on columns"""
-type packNftContract_var_samp_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate variance on columns"""
-type packNftContract_variance_fields {
- """Number of rewards (or items) contained within each pack."""
- rewardsPerPack: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [nftTransfer_order_by!]
-"""
-This table represents the supply details of pack NFTs, tracking the ownership, contents, and metadata associated with each pack.
-"""
-type packNftSupply {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String!
+ """filter the rows returned"""
+ where: nftTransfer_bool_exp
+ ): [nftTransfer!]!
"""
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
+ fetch aggregated fields from the table: "nftTransfer"
"""
- contractAddress: String!
- created_at: timestamptz!
+ nftTransfer_aggregate(
+ """distinct select on columns"""
+ distinct_on: [nftTransfer_select_column!]
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """limit the number of rows returned"""
+ limit: Int
- """
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
- """
- error: String
- id: uuid!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Indicates whether the pack NFT has been delivered to the owner."""
- isDelivered: Boolean!
+ """sort the rows by one or more columns"""
+ order_by: [nftTransfer_order_by!]
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ """filter the rows returned"""
+ where: nftTransfer_bool_exp
+ ): nftTransfer_aggregate!
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String!
+ """fetch data from the table: "nftTransfer" using primary key columns"""
+ nftTransfer_by_pk(id: uuid!): nftTransfer
- """An array relationship"""
- packEventPassNfts(
+ """Fetches an object given its ID"""
+ node(
+ """The ID of an object"""
+ id: ID!
+
+ """
+ Defines which locales should be returned.
+
+ Note that `Node` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ ): Node
+
+ """
+ fetch data from the table: "order"
+ """
+ order(
"""distinct select on columns"""
- distinct_on: [packEventPassNft_select_column!]
+ distinct_on: [order_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -23187,16 +31990,18 @@ type packNftSupply {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [packEventPassNft_order_by!]
+ order_by: [order_order_by!]
"""filter the rows returned"""
- where: packEventPassNft_bool_exp
- ): [packEventPassNft!]!
+ where: order_bool_exp
+ ): [order!]!
- """An aggregate relationship"""
- packEventPassNfts_aggregate(
+ """
+ fetch data from the table: "orderStatus"
+ """
+ orderStatus(
"""distinct select on columns"""
- distinct_on: [packEventPassNft_select_column!]
+ distinct_on: [orderStatus_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -23205,1578 +32010,1365 @@ type packNftSupply {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [packEventPassNft_order_by!]
+ order_by: [orderStatus_order_by!]
"""filter the rows returned"""
- where: packEventPassNft_bool_exp
- ): packEventPassNft_aggregate!
+ where: orderStatus_bool_exp
+ ): [orderStatus!]!
- """A unique identifier for the pack within the platform."""
- packId: String!
+ """
+ fetch aggregated fields from the table: "orderStatus"
+ """
+ orderStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [orderStatus_select_column!]
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-aggregated selection of "packNftSupply"
-"""
-type packNftSupply_aggregate {
- aggregate: packNftSupply_aggregate_fields
- nodes: [packNftSupply!]!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-aggregate fields of "packNftSupply"
-"""
-type packNftSupply_aggregate_fields {
- count(columns: [packNftSupply_select_column!], distinct: Boolean): Int!
- max: packNftSupply_max_fields
- min: packNftSupply_min_fields
-}
+ """sort the rows by one or more columns"""
+ order_by: [orderStatus_order_by!]
-"""
-Boolean expression to filter rows from the table "packNftSupply". All fields are combined with a logical 'AND'.
-"""
-input packNftSupply_bool_exp {
- _and: [packNftSupply_bool_exp!]
- _not: packNftSupply_bool_exp
- _or: [packNftSupply_bool_exp!]
- chainId: String_comparison_exp
- contractAddress: String_comparison_exp
- created_at: timestamptz_comparison_exp
- currentOwnerAddress: String_comparison_exp
- error: String_comparison_exp
- id: uuid_comparison_exp
- isDelivered: Boolean_comparison_exp
- lastNftTransferId: uuid_comparison_exp
- organizerId: String_comparison_exp
- packEventPassNfts: packEventPassNft_bool_exp
- packEventPassNfts_aggregate: packEventPassNft_aggregate_bool_exp
- packId: String_comparison_exp
- tokenUri: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """filter the rows returned"""
+ where: orderStatus_bool_exp
+ ): orderStatus_aggregate!
-"""
-unique or primary key constraints on table "packNftSupply"
-"""
-enum packNftSupply_constraint {
- """
- unique or primary key constraint on columns "chainId", "contractAddress", "packId"
- """
- packNftSupply_contractAddress_chainId_packId_key
+ """fetch data from the table: "orderStatus" using primary key columns"""
+ orderStatus_by_pk(value: String!): orderStatus
"""
- unique or primary key constraint on columns "id"
+ fetch aggregated fields from the table: "order"
"""
- packNftSupply_pkey
-}
+ order_aggregate(
+ """distinct select on columns"""
+ distinct_on: [order_select_column!]
-"""
-input type for inserting data into table "packNftSupply"
-"""
-input packNftSupply_insert_input {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String
+ """limit the number of rows returned"""
+ limit: Int
- """
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
- """
- contractAddress: String
- created_at: timestamptz
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """sort the rows by one or more columns"""
+ order_by: [order_order_by!]
- """
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
- """
- error: String
- id: uuid
+ """filter the rows returned"""
+ where: order_bool_exp
+ ): order_aggregate!
- """Indicates whether the pack NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """fetch data from the table: "order" using primary key columns"""
+ order_by_pk(id: uuid!): order
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ """Retrieve a single organizer"""
+ organizer(
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereUniqueInput!
+ ): Organizer
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String
- packEventPassNfts: packEventPassNft_arr_rel_insert_input
+ """Retrieve document version"""
+ organizerVersion(where: VersionWhereInput!): DocumentVersion
- """A unique identifier for the pack within the platform."""
- packId: String
+ """Retrieve multiple organizers"""
+ organizers(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz
-}
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: OrganizerOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereInput
+ ): [Organizer!]!
-"""aggregate max on columns"""
-type packNftSupply_max_fields {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String
+ """Retrieve multiple organizers using the Relay connection interface"""
+ organizersConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: OrganizerOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: OrganizerWhereInput
+ ): OrganizerConnection!
+
+ """Retrieve a single pack"""
+ pack(
+ """
+ Defines which locales should be returned.
+
+ Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: PackWhereUniqueInput!
+ ): Pack
"""
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
+ fetch data from the table: "packEventPassNft"
"""
- contractAddress: String
- created_at: timestamptz
+ packEventPassNft(
+ """distinct select on columns"""
+ distinct_on: [packEventPassNft_select_column!]
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [packEventPassNft_order_by!]
+
+ """filter the rows returned"""
+ where: packEventPassNft_bool_exp
+ ): [packEventPassNft!]!
"""
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
+ fetch aggregated fields from the table: "packEventPassNft"
"""
- error: String
- id: uuid
-
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ packEventPassNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packEventPassNft_select_column!]
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String
+ """limit the number of rows returned"""
+ limit: Int
- """A unique identifier for the pack within the platform."""
- packId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz
-}
+ """sort the rows by one or more columns"""
+ order_by: [packEventPassNft_order_by!]
-"""aggregate min on columns"""
-type packNftSupply_min_fields {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String
+ """filter the rows returned"""
+ where: packEventPassNft_bool_exp
+ ): packEventPassNft_aggregate!
"""
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
+ fetch data from the table: "packEventPassNft" using primary key columns
"""
- contractAddress: String
- created_at: timestamptz
+ packEventPassNft_by_pk(
+ """Identifier for the event pass NFT."""
+ eventPassNftId: uuid!
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """Identifier for the pack NFT supply."""
+ packNftSupplyId: uuid!
+ ): packEventPassNft
"""
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
+ fetch data from the table: "packNftContract"
"""
- error: String
- id: uuid
+ packNftContract(
+ """distinct select on columns"""
+ distinct_on: [packNftContract_select_column!]
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ """limit the number of rows returned"""
+ limit: Int
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """A unique identifier for the pack within the platform."""
- packId: String
+ """sort the rows by one or more columns"""
+ order_by: [packNftContract_order_by!]
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: packNftContract_bool_exp
+ ): [packNftContract!]!
-"""
-response of any mutation on the table "packNftSupply"
-"""
-type packNftSupply_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ fetch data from the table: "packNftContractEventPass"
+ """
+ packNftContractEventPass(
+ """distinct select on columns"""
+ distinct_on: [packNftContractEventPass_select_column!]
- """data from the rows affected by the mutation"""
- returning: [packNftSupply!]!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-on_conflict condition type for table "packNftSupply"
-"""
-input packNftSupply_on_conflict {
- constraint: packNftSupply_constraint!
- update_columns: [packNftSupply_update_column!]! = []
- where: packNftSupply_bool_exp
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""Ordering options when selecting data from "packNftSupply"."""
-input packNftSupply_order_by {
- chainId: order_by
- contractAddress: order_by
- created_at: order_by
- currentOwnerAddress: order_by
- error: order_by
- id: order_by
- isDelivered: order_by
- lastNftTransferId: order_by
- organizerId: order_by
- packEventPassNfts_aggregate: packEventPassNft_aggregate_order_by
- packId: order_by
- tokenUri: order_by
- updated_at: order_by
-}
+ """sort the rows by one or more columns"""
+ order_by: [packNftContractEventPass_order_by!]
-"""primary key columns input for table: packNftSupply"""
-input packNftSupply_pk_columns_input {
- id: uuid!
-}
+ """filter the rows returned"""
+ where: packNftContractEventPass_bool_exp
+ ): [packNftContractEventPass!]!
-"""
-select columns of table "packNftSupply"
-"""
-enum packNftSupply_select_column {
- """column name"""
- chainId
+ """
+ fetch aggregated fields from the table: "packNftContractEventPass"
+ """
+ packNftContractEventPass_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packNftContractEventPass_select_column!]
- """column name"""
- contractAddress
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- created_at
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- currentOwnerAddress
+ """sort the rows by one or more columns"""
+ order_by: [packNftContractEventPass_order_by!]
- """column name"""
- error
+ """filter the rows returned"""
+ where: packNftContractEventPass_bool_exp
+ ): packNftContractEventPass_aggregate!
- """column name"""
- id
+ """
+ fetch data from the table: "packNftContractEventPass" using primary key columns
+ """
+ packNftContractEventPass_by_pk(
+ """
+ Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
+ """
+ eventPassId: String!
- """column name"""
- isDelivered
+ """
+ Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
+ """
+ packNftContractId: uuid!
+ ): packNftContractEventPass
- """column name"""
- lastNftTransferId
+ """
+ fetch aggregated fields from the table: "packNftContract"
+ """
+ packNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packNftContract_select_column!]
- """column name"""
- organizerId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- packId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- tokenUri
+ """sort the rows by one or more columns"""
+ order_by: [packNftContract_order_by!]
- """column name"""
- updated_at
-}
+ """filter the rows returned"""
+ where: packNftContract_bool_exp
+ ): packNftContract_aggregate!
-"""
-input type for updating data in table "packNftSupply"
-"""
-input packNftSupply_set_input {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String
+ """fetch data from the table: "packNftContract" using primary key columns"""
+ packNftContract_by_pk(
+ """Unique identifier for each pack NFT contract."""
+ id: uuid!
+ ): packNftContract
"""
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
+ fetch data from the table: "packNftSupply"
"""
- contractAddress: String
- created_at: timestamptz
+ packNftSupply(
+ """distinct select on columns"""
+ distinct_on: [packNftSupply_select_column!]
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """limit the number of rows returned"""
+ limit: Int
- """
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
- """
- error: String
- id: uuid
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """Indicates whether the pack NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """sort the rows by one or more columns"""
+ order_by: [packNftSupply_order_by!]
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ """filter the rows returned"""
+ where: packNftSupply_bool_exp
+ ): [packNftSupply!]!
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String
+ """
+ fetch aggregated fields from the table: "packNftSupply"
+ """
+ packNftSupply_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packNftSupply_select_column!]
- """A unique identifier for the pack within the platform."""
- packId: String
+ """limit the number of rows returned"""
+ limit: Int
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-Streaming cursor of the table "packNftSupply"
-"""
-input packNftSupply_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: packNftSupply_stream_cursor_value_input!
+ """sort the rows by one or more columns"""
+ order_by: [packNftSupply_order_by!]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """filter the rows returned"""
+ where: packNftSupply_bool_exp
+ ): packNftSupply_aggregate!
-"""Initial value of the column from where the streaming should start"""
-input packNftSupply_stream_cursor_value_input {
- """The specific blockchain or network on which the pack NFT exists."""
- chainId: String
+ """fetch data from the table: "packNftSupply" using primary key columns"""
+ packNftSupply_by_pk(id: uuid!): packNftSupply
"""
- The address of the smart contract representing the pack NFT. Essential for blockchain interactions.
+ fetch data from the table: "packOrderSums"
"""
- contractAddress: String
- created_at: timestamptz
+ packOrderSums(
+ """distinct select on columns"""
+ distinct_on: [packOrderSums_select_column!]
- """The blockchain address of the current owner of the pack NFT."""
- currentOwnerAddress: String
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [packOrderSums_order_by!]
+
+ """filter the rows returned"""
+ where: packOrderSums_bool_exp
+ ): [packOrderSums!]!
"""
- Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.
+ fetch aggregated fields from the table: "packOrderSums"
"""
- error: String
- id: uuid
+ packOrderSums_aggregate(
+ """distinct select on columns"""
+ distinct_on: [packOrderSums_select_column!]
- """Indicates whether the pack NFT has been delivered to the owner."""
- isDelivered: Boolean
+ """limit the number of rows returned"""
+ limit: Int
- """The reference to the latest transfer record for this pack NFT."""
- lastNftTransferId: uuid
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """The identifier of the organizer associated with this pack NFT."""
- organizerId: String
+ """sort the rows by one or more columns"""
+ order_by: [packOrderSums_order_by!]
- """A unique identifier for the pack within the platform."""
- packId: String
+ """filter the rows returned"""
+ where: packOrderSums_bool_exp
+ ): packOrderSums_aggregate!
- """The URI pointing to the metadata of the pack NFT."""
- tokenUri: String
- updated_at: timestamptz
-}
+ """fetch data from the table: "packOrderSums" using primary key columns"""
+ packOrderSums_by_pk(packId: String!): packOrderSums
-"""
-update columns of table "packNftSupply"
-"""
-enum packNftSupply_update_column {
- """column name"""
- chainId
+ """Retrieve document version"""
+ packVersion(where: VersionWhereInput!): DocumentVersion
- """column name"""
- contractAddress
+ """Retrieve multiple packs"""
+ packs(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """column name"""
- created_at
+ """
+ Defines which locales should be returned.
+
+ Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: PackOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: PackWhereInput
+ ): [Pack!]!
- """column name"""
- currentOwnerAddress
+ """Retrieve multiple packs using the Relay connection interface"""
+ packsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """column name"""
- error
+ """
+ Defines which locales should be returned.
+
+ Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: PackOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: PackWhereInput
+ ): PackConnection!
- """column name"""
- id
+ """
+ fetch data from the table: "passAmount"
+ """
+ passAmount(
+ """distinct select on columns"""
+ distinct_on: [passAmount_select_column!]
- """column name"""
- isDelivered
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- lastNftTransferId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- organizerId
+ """sort the rows by one or more columns"""
+ order_by: [passAmount_order_by!]
- """column name"""
- packId
+ """filter the rows returned"""
+ where: passAmount_bool_exp
+ ): [passAmount!]!
- """column name"""
- tokenUri
+ """
+ fetch aggregated fields from the table: "passAmount"
+ """
+ passAmount_aggregate(
+ """distinct select on columns"""
+ distinct_on: [passAmount_select_column!]
- """column name"""
- updated_at
-}
+ """limit the number of rows returned"""
+ limit: Int
-input packNftSupply_updates {
- """sets the columns of the filtered rows to the given values"""
- _set: packNftSupply_set_input
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """filter the rows which have to be updated"""
- where: packNftSupply_bool_exp!
-}
+ """sort the rows by one or more columns"""
+ order_by: [passAmount_order_by!]
-"""Hold the sums for the Pack Orders"""
-type packOrderSums {
- packId: String!
- totalReserved: Int!
-}
+ """filter the rows returned"""
+ where: passAmount_bool_exp
+ ): passAmount_aggregate!
-"""
-aggregated selection of "packOrderSums"
-"""
-type packOrderSums_aggregate {
- aggregate: packOrderSums_aggregate_fields
- nodes: [packOrderSums!]!
-}
+ """fetch data from the table: "passAmount" using primary key columns"""
+ passAmount_by_pk(id: uuid!): passAmount
-"""
-aggregate fields of "packOrderSums"
-"""
-type packOrderSums_aggregate_fields {
- avg: packOrderSums_avg_fields
- count(columns: [packOrderSums_select_column!], distinct: Boolean): Int!
- max: packOrderSums_max_fields
- min: packOrderSums_min_fields
- stddev: packOrderSums_stddev_fields
- stddev_pop: packOrderSums_stddev_pop_fields
- stddev_samp: packOrderSums_stddev_samp_fields
- sum: packOrderSums_sum_fields
- var_pop: packOrderSums_var_pop_fields
- var_samp: packOrderSums_var_samp_fields
- variance: packOrderSums_variance_fields
-}
+ """
+ fetch data from the table: "passPricing"
+ """
+ passPricing(
+ """distinct select on columns"""
+ distinct_on: [passPricing_select_column!]
-"""aggregate avg on columns"""
-type packOrderSums_avg_fields {
- totalReserved: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-Boolean expression to filter rows from the table "packOrderSums". All fields are combined with a logical 'AND'.
-"""
-input packOrderSums_bool_exp {
- _and: [packOrderSums_bool_exp!]
- _not: packOrderSums_bool_exp
- _or: [packOrderSums_bool_exp!]
- packId: String_comparison_exp
- totalReserved: Int_comparison_exp
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [passPricing_order_by!]
+
+ """filter the rows returned"""
+ where: passPricing_bool_exp
+ ): [passPricing!]!
-"""
-unique or primary key constraints on table "packOrderSums"
-"""
-enum packOrderSums_constraint {
"""
- unique or primary key constraint on columns "packId"
+ fetch aggregated fields from the table: "passPricing"
"""
- packOrderSums_pkey
-}
+ passPricing_aggregate(
+ """distinct select on columns"""
+ distinct_on: [passPricing_select_column!]
-"""
-input type for incrementing numeric columns in table "packOrderSums"
-"""
-input packOrderSums_inc_input {
- totalReserved: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "packOrderSums"
-"""
-input packOrderSums_insert_input {
- packId: String
- totalReserved: Int
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type packOrderSums_max_fields {
- packId: String
- totalReserved: Int
-}
+ """sort the rows by one or more columns"""
+ order_by: [passPricing_order_by!]
-"""aggregate min on columns"""
-type packOrderSums_min_fields {
- packId: String
- totalReserved: Int
-}
+ """filter the rows returned"""
+ where: passPricing_bool_exp
+ ): passPricing_aggregate!
-"""
-response of any mutation on the table "packOrderSums"
-"""
-type packOrderSums_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """fetch data from the table: "passPricing" using primary key columns"""
+ passPricing_by_pk(id: uuid!): passPricing
- """data from the rows affected by the mutation"""
- returning: [packOrderSums!]!
-}
+ """
+ fetch data from the table: "pendingOrder"
+ """
+ pendingOrder(
+ """distinct select on columns"""
+ distinct_on: [pendingOrder_select_column!]
-"""
-on_conflict condition type for table "packOrderSums"
-"""
-input packOrderSums_on_conflict {
- constraint: packOrderSums_constraint!
- update_columns: [packOrderSums_update_column!]! = []
- where: packOrderSums_bool_exp
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""Ordering options when selecting data from "packOrderSums"."""
-input packOrderSums_order_by {
- packId: order_by
- totalReserved: order_by
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""primary key columns input for table: packOrderSums"""
-input packOrderSums_pk_columns_input {
- packId: String!
-}
+ """sort the rows by one or more columns"""
+ order_by: [pendingOrder_order_by!]
-"""
-select columns of table "packOrderSums"
-"""
-enum packOrderSums_select_column {
- """column name"""
- packId
+ """filter the rows returned"""
+ where: pendingOrder_bool_exp
+ ): [pendingOrder!]!
- """column name"""
- totalReserved
-}
+ """
+ fetch aggregated fields from the table: "pendingOrder"
+ """
+ pendingOrder_aggregate(
+ """distinct select on columns"""
+ distinct_on: [pendingOrder_select_column!]
-"""
-input type for updating data in table "packOrderSums"
-"""
-input packOrderSums_set_input {
- packId: String
- totalReserved: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate stddev on columns"""
-type packOrderSums_stddev_fields {
- totalReserved: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate stddev_pop on columns"""
-type packOrderSums_stddev_pop_fields {
- totalReserved: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [pendingOrder_order_by!]
-"""aggregate stddev_samp on columns"""
-type packOrderSums_stddev_samp_fields {
- totalReserved: Float
-}
+ """filter the rows returned"""
+ where: pendingOrder_bool_exp
+ ): pendingOrder_aggregate!
-"""
-Streaming cursor of the table "packOrderSums"
-"""
-input packOrderSums_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: packOrderSums_stream_cursor_value_input!
+ """fetch data from the table: "pendingOrder" using primary key columns"""
+ pendingOrder_by_pk(id: uuid!): pendingOrder
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ fetch data from the table: "publishableApiKey"
+ """
+ publishableApiKey(
+ """distinct select on columns"""
+ distinct_on: [publishableApiKey_select_column!]
-"""Initial value of the column from where the streaming should start"""
-input packOrderSums_stream_cursor_value_input {
- packId: String
- totalReserved: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate sum on columns"""
-type packOrderSums_sum_fields {
- totalReserved: Int
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-update columns of table "packOrderSums"
-"""
-enum packOrderSums_update_column {
- """column name"""
- packId
+ """sort the rows by one or more columns"""
+ order_by: [publishableApiKey_order_by!]
- """column name"""
- totalReserved
-}
+ """filter the rows returned"""
+ where: publishableApiKey_bool_exp
+ ): [publishableApiKey!]!
-input packOrderSums_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: packOrderSums_inc_input
+ """
+ fetch aggregated fields from the table: "publishableApiKey"
+ """
+ publishableApiKey_aggregate(
+ """distinct select on columns"""
+ distinct_on: [publishableApiKey_select_column!]
- """sets the columns of the filtered rows to the given values"""
- _set: packOrderSums_set_input
+ """limit the number of rows returned"""
+ limit: Int
- """filter the rows which have to be updated"""
- where: packOrderSums_bool_exp!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate var_pop on columns"""
-type packOrderSums_var_pop_fields {
- totalReserved: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [publishableApiKey_order_by!]
-"""aggregate var_samp on columns"""
-type packOrderSums_var_samp_fields {
- totalReserved: Float
-}
+ """filter the rows returned"""
+ where: publishableApiKey_bool_exp
+ ): publishableApiKey_aggregate!
-"""aggregate variance on columns"""
-type packOrderSums_variance_fields {
- totalReserved: Float
-}
+ """
+ fetch data from the table: "publishableApiKey" using primary key columns
+ """
+ publishableApiKey_by_pk(id: uuid!): publishableApiKey
-"""
-The passAmount table stores quantity information related to each eventPass or Pack
-"""
-type passAmount {
- created_at: timestamptz!
- eventPassId: String
- id: uuid!
- maxAmount: Int!
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int!
- updated_at: timestamptz!
-}
+ """
+ fetch data from the table: "roleAssignment"
+ """
+ roleAssignment(
+ """distinct select on columns"""
+ distinct_on: [roleAssignment_select_column!]
-"""
-aggregated selection of "passAmount"
-"""
-type passAmount_aggregate {
- aggregate: passAmount_aggregate_fields
- nodes: [passAmount!]!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-aggregate fields of "passAmount"
-"""
-type passAmount_aggregate_fields {
- avg: passAmount_avg_fields
- count(columns: [passAmount_select_column!], distinct: Boolean): Int!
- max: passAmount_max_fields
- min: passAmount_min_fields
- stddev: passAmount_stddev_fields
- stddev_pop: passAmount_stddev_pop_fields
- stddev_samp: passAmount_stddev_samp_fields
- sum: passAmount_sum_fields
- var_pop: passAmount_var_pop_fields
- var_samp: passAmount_var_samp_fields
- variance: passAmount_variance_fields
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate avg on columns"""
-type passAmount_avg_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [roleAssignment_order_by!]
-"""
-Boolean expression to filter rows from the table "passAmount". All fields are combined with a logical 'AND'.
-"""
-input passAmount_bool_exp {
- _and: [passAmount_bool_exp!]
- _not: passAmount_bool_exp
- _or: [passAmount_bool_exp!]
- created_at: timestamptz_comparison_exp
- eventPassId: String_comparison_exp
- id: uuid_comparison_exp
- maxAmount: Int_comparison_exp
- maxAmountPerUser: Int_comparison_exp
- packId: String_comparison_exp
- timeBeforeDelete: Int_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """filter the rows returned"""
+ where: roleAssignment_bool_exp
+ ): [roleAssignment!]!
-"""
-unique or primary key constraints on table "passAmount"
-"""
-enum passAmount_constraint {
"""
- unique or primary key constraint on columns "eventPassId"
+ fetch aggregated fields from the table: "roleAssignment"
"""
- idx_passamount_eventpassid
+ roleAssignment_aggregate(
+ """distinct select on columns"""
+ distinct_on: [roleAssignment_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [roleAssignment_order_by!]
+
+ """filter the rows returned"""
+ where: roleAssignment_bool_exp
+ ): roleAssignment_aggregate!
"""
- unique or primary key constraint on columns "packId"
+ fetch data from the table: "roles"
"""
- idx_passamount_packid
+ roles(
+ """distinct select on columns"""
+ distinct_on: [roles_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [roles_order_by!]
+
+ """filter the rows returned"""
+ where: roles_bool_exp
+ ): [roles!]!
"""
- unique or primary key constraint on columns "id"
+ fetch aggregated fields from the table: "roles"
"""
- passAmount_pkey
-}
+ roles_aggregate(
+ """distinct select on columns"""
+ distinct_on: [roles_select_column!]
-"""
-input type for incrementing numeric columns in table "passAmount"
-"""
-input passAmount_inc_input {
- maxAmount: Int
- maxAmountPerUser: Int
- timeBeforeDelete: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "passAmount"
-"""
-input passAmount_insert_input {
- created_at: timestamptz
- eventPassId: String
- id: uuid
- maxAmount: Int
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int
- updated_at: timestamptz
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type passAmount_max_fields {
- created_at: timestamptz
- eventPassId: String
- id: uuid
- maxAmount: Int
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int
- updated_at: timestamptz
-}
+ """sort the rows by one or more columns"""
+ order_by: [roles_order_by!]
-"""aggregate min on columns"""
-type passAmount_min_fields {
- created_at: timestamptz
- eventPassId: String
- id: uuid
- maxAmount: Int
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: roles_bool_exp
+ ): roles_aggregate!
-"""
-response of any mutation on the table "passAmount"
-"""
-type passAmount_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """fetch data from the table: "roles" using primary key columns"""
+ roles_by_pk(
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String!
+ ): roles
- """data from the rows affected by the mutation"""
- returning: [passAmount!]!
-}
+ """Retrieve a single scheduledOperation"""
+ scheduledOperation(
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: ScheduledOperationWhereUniqueInput!
+ ): ScheduledOperation
-"""
-input type for inserting object relation for remote table "passAmount"
-"""
-input passAmount_obj_rel_insert_input {
- data: passAmount_insert_input!
+ """Retrieve multiple scheduledOperations"""
+ scheduledOperations(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """upsert condition"""
- on_conflict: passAmount_on_conflict
-}
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ScheduledOperationOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ScheduledOperationWhereInput
+ ): [ScheduledOperation!]!
-"""
-on_conflict condition type for table "passAmount"
-"""
-input passAmount_on_conflict {
- constraint: passAmount_constraint!
- update_columns: [passAmount_update_column!]! = []
- where: passAmount_bool_exp
-}
+ """
+ Retrieve multiple scheduledOperations using the Relay connection interface
+ """
+ scheduledOperationsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
-"""Ordering options when selecting data from "passAmount"."""
-input passAmount_order_by {
- created_at: order_by
- eventPassId: order_by
- id: order_by
- maxAmount: order_by
- maxAmountPerUser: order_by
- packId: order_by
- timeBeforeDelete: order_by
- updated_at: order_by
-}
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ScheduledOperationOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ScheduledOperationWhereInput
+ ): ScheduledOperationConnection!
-"""primary key columns input for table: passAmount"""
-input passAmount_pk_columns_input {
- id: uuid!
-}
+ """Retrieve a single scheduledRelease"""
+ scheduledRelease(
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: ScheduledReleaseWhereUniqueInput!
+ ): ScheduledRelease
-"""
-select columns of table "passAmount"
-"""
-enum passAmount_select_column {
- """column name"""
- created_at
+ """Retrieve multiple scheduledReleases"""
+ scheduledReleases(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """column name"""
- eventPassId
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ScheduledReleaseOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ScheduledReleaseWhereInput
+ ): [ScheduledRelease!]!
- """column name"""
- id
+ """
+ Retrieve multiple scheduledReleases using the Relay connection interface
+ """
+ scheduledReleasesConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
- """column name"""
- maxAmount
+ """
+ Defines which locales should be returned.
+
+ Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: ScheduledReleaseOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: ScheduledReleaseWhereInput
+ ): ScheduledReleaseConnection!
- """column name"""
- maxAmountPerUser
+ """
+ fetch data from the table: "secretApiKey"
+ """
+ secretApiKey(
+ """distinct select on columns"""
+ distinct_on: [secretApiKey_select_column!]
- """column name"""
- packId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- timeBeforeDelete
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- updated_at
-}
+ """sort the rows by one or more columns"""
+ order_by: [secretApiKey_order_by!]
-"""
-input type for updating data in table "passAmount"
-"""
-input passAmount_set_input {
- created_at: timestamptz
- eventPassId: String
- id: uuid
- maxAmount: Int
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: secretApiKey_bool_exp
+ ): [secretApiKey!]!
-"""aggregate stddev on columns"""
-type passAmount_stddev_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """
+ fetch aggregated fields from the table: "secretApiKey"
+ """
+ secretApiKey_aggregate(
+ """distinct select on columns"""
+ distinct_on: [secretApiKey_select_column!]
-"""aggregate stddev_pop on columns"""
-type passAmount_stddev_pop_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate stddev_samp on columns"""
-type passAmount_stddev_samp_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-Streaming cursor of the table "passAmount"
-"""
-input passAmount_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: passAmount_stream_cursor_value_input!
+ """sort the rows by one or more columns"""
+ order_by: [secretApiKey_order_by!]
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """filter the rows returned"""
+ where: secretApiKey_bool_exp
+ ): secretApiKey_aggregate!
-"""Initial value of the column from where the streaming should start"""
-input passAmount_stream_cursor_value_input {
- created_at: timestamptz
- eventPassId: String
- id: uuid
- maxAmount: Int
- maxAmountPerUser: Int
- packId: String
- timeBeforeDelete: Int
- updated_at: timestamptz
-}
+ """fetch data from the table: "secretApiKey" using primary key columns"""
+ secretApiKey_by_pk(id: uuid!): secretApiKey
-"""aggregate sum on columns"""
-type passAmount_sum_fields {
- maxAmount: Int
- maxAmountPerUser: Int
- timeBeforeDelete: Int
-}
+ """
+ fetch data from the table: "shopifyCampaignParameters"
+ """
+ shopifyCampaignParameters(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignParameters_select_column!]
-"""
-update columns of table "passAmount"
-"""
-enum passAmount_update_column {
- """column name"""
- created_at
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- eventPassId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- id
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignParameters_order_by!]
- """column name"""
- maxAmount
+ """filter the rows returned"""
+ where: shopifyCampaignParameters_bool_exp
+ ): [shopifyCampaignParameters!]!
- """column name"""
- maxAmountPerUser
+ """
+ fetch aggregated fields from the table: "shopifyCampaignParameters"
+ """
+ shopifyCampaignParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- packId
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignParameters_order_by!]
- """column name"""
- timeBeforeDelete
+ """filter the rows returned"""
+ where: shopifyCampaignParameters_bool_exp
+ ): shopifyCampaignParameters_aggregate!
- """column name"""
- updated_at
-}
+ """
+ fetch data from the table: "shopifyCampaignParameters" using primary key columns
+ """
+ shopifyCampaignParameters_by_pk(
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String!
+ ): shopifyCampaignParameters
-input passAmount_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: passAmount_inc_input
+ """
+ fetch data from the table: "shopifyCampaignStatus"
+ """
+ shopifyCampaignStatus(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignStatus_select_column!]
- """sets the columns of the filtered rows to the given values"""
- _set: passAmount_set_input
+ """limit the number of rows returned"""
+ limit: Int
- """filter the rows which have to be updated"""
- where: passAmount_bool_exp!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate var_pop on columns"""
-type passAmount_var_pop_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignStatus_order_by!]
-"""aggregate var_samp on columns"""
-type passAmount_var_samp_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """filter the rows returned"""
+ where: shopifyCampaignStatus_bool_exp
+ ): [shopifyCampaignStatus!]!
-"""aggregate variance on columns"""
-type passAmount_variance_fields {
- maxAmount: Float
- maxAmountPerUser: Float
- timeBeforeDelete: Float
-}
+ """
+ fetch aggregated fields from the table: "shopifyCampaignStatus"
+ """
+ shopifyCampaignStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignStatus_select_column!]
-"""
-The passPricing table stores pricing information for an eventPass or Pack.
-"""
-type passPricing {
- amount: Int!
- created_at: timestamptz!
- currency: currency_enum!
- eventPassId: String
- id: uuid!
- packId: String
- updated_at: timestamptz!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-aggregated selection of "passPricing"
-"""
-type passPricing_aggregate {
- aggregate: passPricing_aggregate_fields
- nodes: [passPricing!]!
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""
-aggregate fields of "passPricing"
-"""
-type passPricing_aggregate_fields {
- avg: passPricing_avg_fields
- count(columns: [passPricing_select_column!], distinct: Boolean): Int!
- max: passPricing_max_fields
- min: passPricing_min_fields
- stddev: passPricing_stddev_fields
- stddev_pop: passPricing_stddev_pop_fields
- stddev_samp: passPricing_stddev_samp_fields
- sum: passPricing_sum_fields
- var_pop: passPricing_var_pop_fields
- var_samp: passPricing_var_samp_fields
- variance: passPricing_variance_fields
-}
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignStatus_order_by!]
-"""aggregate avg on columns"""
-type passPricing_avg_fields {
- amount: Float
-}
+ """filter the rows returned"""
+ where: shopifyCampaignStatus_bool_exp
+ ): shopifyCampaignStatus_aggregate!
-"""
-Boolean expression to filter rows from the table "passPricing". All fields are combined with a logical 'AND'.
-"""
-input passPricing_bool_exp {
- _and: [passPricing_bool_exp!]
- _not: passPricing_bool_exp
- _or: [passPricing_bool_exp!]
- amount: Int_comparison_exp
- created_at: timestamptz_comparison_exp
- currency: currency_enum_comparison_exp
- eventPassId: String_comparison_exp
- id: uuid_comparison_exp
- packId: String_comparison_exp
- updated_at: timestamptz_comparison_exp
-}
+ """
+ fetch data from the table: "shopifyCampaignStatus" using primary key columns
+ """
+ shopifyCampaignStatus_by_pk(value: String!): shopifyCampaignStatus
-"""
-unique or primary key constraints on table "passPricing"
-"""
-enum passPricing_constraint {
"""
- unique or primary key constraint on columns "id"
+ fetch data from the table: "shopifyCustomer"
"""
- passPricing_pkey
-}
+ shopifyCustomer(
+ """distinct select on columns"""
+ distinct_on: [shopifyCustomer_select_column!]
-"""
-input type for incrementing numeric columns in table "passPricing"
-"""
-input passPricing_inc_input {
- amount: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "passPricing"
-"""
-input passPricing_insert_input {
- amount: Int
- created_at: timestamptz
- currency: currency_enum
- eventPassId: String
- id: uuid
- packId: String
- updated_at: timestamptz
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type passPricing_max_fields {
- amount: Int
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- updated_at: timestamptz
-}
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCustomer_order_by!]
-"""aggregate min on columns"""
-type passPricing_min_fields {
- amount: Int
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: shopifyCustomer_bool_exp
+ ): [shopifyCustomer!]!
-"""
-response of any mutation on the table "passPricing"
-"""
-type passPricing_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """
+ fetch aggregated fields from the table: "shopifyCustomer"
+ """
+ shopifyCustomer_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCustomer_select_column!]
- """data from the rows affected by the mutation"""
- returning: [passPricing!]!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting object relation for remote table "passPricing"
-"""
-input passPricing_obj_rel_insert_input {
- data: passPricing_insert_input!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """upsert condition"""
- on_conflict: passPricing_on_conflict
-}
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCustomer_order_by!]
-"""
-on_conflict condition type for table "passPricing"
-"""
-input passPricing_on_conflict {
- constraint: passPricing_constraint!
- update_columns: [passPricing_update_column!]! = []
- where: passPricing_bool_exp
-}
+ """filter the rows returned"""
+ where: shopifyCustomer_bool_exp
+ ): shopifyCustomer_aggregate!
-"""Ordering options when selecting data from "passPricing"."""
-input passPricing_order_by {
- amount: order_by
- created_at: order_by
- currency: order_by
- eventPassId: order_by
- id: order_by
- packId: order_by
- updated_at: order_by
-}
+ """
+ fetch data from the table: "shopifyDomain"
+ """
+ shopifyDomain(
+ """distinct select on columns"""
+ distinct_on: [shopifyDomain_select_column!]
-"""primary key columns input for table: passPricing"""
-input passPricing_pk_columns_input {
- id: uuid!
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-select columns of table "passPricing"
-"""
-enum passPricing_select_column {
- """column name"""
- amount
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- created_at
+ """sort the rows by one or more columns"""
+ order_by: [shopifyDomain_order_by!]
- """column name"""
- currency
+ """filter the rows returned"""
+ where: shopifyDomain_bool_exp
+ ): [shopifyDomain!]!
- """column name"""
- eventPassId
+ """
+ fetch aggregated fields from the table: "shopifyDomain"
+ """
+ shopifyDomain_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyDomain_select_column!]
- """column name"""
- id
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- packId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- updated_at
-}
+ """sort the rows by one or more columns"""
+ order_by: [shopifyDomain_order_by!]
-"""
-input type for updating data in table "passPricing"
-"""
-input passPricing_set_input {
- amount: Int
- created_at: timestamptz
- currency: currency_enum
- eventPassId: String
- id: uuid
- packId: String
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: shopifyDomain_bool_exp
+ ): shopifyDomain_aggregate!
-"""aggregate stddev on columns"""
-type passPricing_stddev_fields {
- amount: Float
-}
+ """fetch data from the table: "shopifyDomain" using primary key columns"""
+ shopifyDomain_by_pk(
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String!
+ ): shopifyDomain
-"""aggregate stddev_pop on columns"""
-type passPricing_stddev_pop_fields {
- amount: Float
-}
+ """
+ fetch data from the table: "stampNft"
+ """
+ stampNft(
+ """distinct select on columns"""
+ distinct_on: [stampNft_select_column!]
-"""aggregate stddev_samp on columns"""
-type passPricing_stddev_samp_fields {
- amount: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-Streaming cursor of the table "passPricing"
-"""
-input passPricing_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: passPricing_stream_cursor_value_input!
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """sort the rows by one or more columns"""
+ order_by: [stampNft_order_by!]
-"""Initial value of the column from where the streaming should start"""
-input passPricing_stream_cursor_value_input {
- amount: Int
- created_at: timestamptz
- currency: currency_enum
- eventPassId: String
- id: uuid
- packId: String
- updated_at: timestamptz
-}
+ """filter the rows returned"""
+ where: stampNft_bool_exp
+ ): [stampNft!]!
-"""aggregate sum on columns"""
-type passPricing_sum_fields {
- amount: Int
-}
+ """
+ fetch data from the table: "stampNftContract"
+ """
+ stampNftContract(
+ """distinct select on columns"""
+ distinct_on: [stampNftContract_select_column!]
-"""
-update columns of table "passPricing"
-"""
-enum passPricing_update_column {
- """column name"""
- amount
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- created_at
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- currency
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContract_order_by!]
- """column name"""
- eventPassId
+ """filter the rows returned"""
+ where: stampNftContract_bool_exp
+ ): [stampNftContract!]!
- """column name"""
- id
+ """
+ fetch data from the table: "stampNftContractType"
+ """
+ stampNftContractType(
+ """distinct select on columns"""
+ distinct_on: [stampNftContractType_select_column!]
- """column name"""
- packId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- updated_at
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-input passPricing_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: passPricing_inc_input
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContractType_order_by!]
- """sets the columns of the filtered rows to the given values"""
- _set: passPricing_set_input
+ """filter the rows returned"""
+ where: stampNftContractType_bool_exp
+ ): [stampNftContractType!]!
- """filter the rows which have to be updated"""
- where: passPricing_bool_exp!
-}
+ """
+ fetch aggregated fields from the table: "stampNftContractType"
+ """
+ stampNftContractType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftContractType_select_column!]
-"""aggregate var_pop on columns"""
-type passPricing_var_pop_fields {
- amount: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate var_samp on columns"""
-type passPricing_var_samp_fields {
- amount: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate variance on columns"""
-type passPricing_variance_fields {
- amount: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContractType_order_by!]
-"""
-Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account. Those orders are time bound and are automatically destroyed given an amount of time to preserve access to the event for other users.
-"""
-type pendingOrder {
- """An object relationship"""
- account: account
- accountId: uuid!
- created_at: timestamptz!
- eventPass(
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
- eventPassId: String
+ """filter the rows returned"""
+ where: stampNftContractType_bool_exp
+ ): stampNftContractType_aggregate!
- """An object relationship"""
- eventPassNftContract: eventPassNftContract
- id: uuid!
- pack(
+ """
+ fetch data from the table: "stampNftContractType" using primary key columns
+ """
+ stampNftContractType_by_pk(
"""
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
"""
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): EventPass
+ value: String!
+ ): stampNftContractType
- """An object relationship"""
- packAmount: passAmount
- packId: String
+ """
+ fetch aggregated fields from the table: "stampNftContract"
+ """
+ stampNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftContract_select_column!]
- """An object relationship"""
- packNftContract: packNftContract
+ """limit the number of rows returned"""
+ limit: Int
- """An object relationship"""
- packPricing: passPricing
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """An object relationship"""
- passAmount: passAmount
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContract_order_by!]
- """An object relationship"""
- passPricing: passPricing
- quantity: Int!
-}
+ """filter the rows returned"""
+ where: stampNftContract_bool_exp
+ ): stampNftContract_aggregate!
-"""
-aggregated selection of "pendingOrder"
-"""
-type pendingOrder_aggregate {
- aggregate: pendingOrder_aggregate_fields
- nodes: [pendingOrder!]!
-}
+ """
+ fetch data from the table: "stampNftContract" using primary key columns
+ """
+ stampNftContract_by_pk(
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String!
-"""
-aggregate fields of "pendingOrder"
-"""
-type pendingOrder_aggregate_fields {
- avg: pendingOrder_avg_fields
- count(columns: [pendingOrder_select_column!], distinct: Boolean): Int!
- max: pendingOrder_max_fields
- min: pendingOrder_min_fields
- stddev: pendingOrder_stddev_fields
- stddev_pop: pendingOrder_stddev_pop_fields
- stddev_samp: pendingOrder_stddev_samp_fields
- sum: pendingOrder_sum_fields
- var_pop: pendingOrder_var_pop_fields
- var_samp: pendingOrder_var_samp_fields
- variance: pendingOrder_variance_fields
-}
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String!
+ ): stampNftContract
-"""aggregate avg on columns"""
-type pendingOrder_avg_fields {
- quantity: Float
-}
+ """
+ fetch data from the table: "stampNftSupply"
+ """
+ stampNftSupply(
+ """distinct select on columns"""
+ distinct_on: [stampNftSupply_select_column!]
-"""
-Boolean expression to filter rows from the table "pendingOrder". All fields are combined with a logical 'AND'.
-"""
-input pendingOrder_bool_exp {
- _and: [pendingOrder_bool_exp!]
- _not: pendingOrder_bool_exp
- _or: [pendingOrder_bool_exp!]
- account: account_bool_exp
- accountId: uuid_comparison_exp
- created_at: timestamptz_comparison_exp
- eventPassId: String_comparison_exp
- eventPassNftContract: eventPassNftContract_bool_exp
- id: uuid_comparison_exp
- packAmount: passAmount_bool_exp
- packId: String_comparison_exp
- packNftContract: packNftContract_bool_exp
- packPricing: passPricing_bool_exp
- passAmount: passAmount_bool_exp
- passPricing: passPricing_bool_exp
- quantity: Int_comparison_exp
-}
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftSupply_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftSupply_bool_exp
+ ): [stampNftSupply!]!
-"""
-unique or primary key constraints on table "pendingOrder"
-"""
-enum pendingOrder_constraint {
"""
- unique or primary key constraint on columns "eventPassId", "accountId"
+ fetch aggregated fields from the table: "stampNftSupply"
"""
- idx_pendingorder_eventpassid_accountid
+ stampNftSupply_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftSupply_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftSupply_order_by!]
- """
- unique or primary key constraint on columns "accountId", "packId"
- """
- idx_pendingorder_packid_accountid
+ """filter the rows returned"""
+ where: stampNftSupply_bool_exp
+ ): stampNftSupply_aggregate!
+
+ """fetch data from the table: "stampNftSupply" using primary key columns"""
+ stampNftSupply_by_pk(id: uuid!): stampNftSupply
"""
- unique or primary key constraint on columns "id"
+ fetch aggregated fields from the table: "stampNft"
"""
- pendingOrder_pkey
-}
+ stampNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNft_select_column!]
-"""
-input type for incrementing numeric columns in table "pendingOrder"
-"""
-input pendingOrder_inc_input {
- quantity: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-input type for inserting data into table "pendingOrder"
-"""
-input pendingOrder_insert_input {
- account: account_obj_rel_insert_input
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- eventPassNftContract: eventPassNftContract_obj_rel_insert_input
- id: uuid
- packAmount: passAmount_obj_rel_insert_input
- packId: String
- packNftContract: packNftContract_obj_rel_insert_input
- packPricing: passPricing_obj_rel_insert_input
- passAmount: passAmount_obj_rel_insert_input
- passPricing: passPricing_obj_rel_insert_input
- quantity: Int
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate max on columns"""
-type pendingOrder_max_fields {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
-}
+ """sort the rows by one or more columns"""
+ order_by: [stampNft_order_by!]
-"""aggregate min on columns"""
-type pendingOrder_min_fields {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
-}
+ """filter the rows returned"""
+ where: stampNft_bool_exp
+ ): stampNft_aggregate!
-"""
-response of any mutation on the table "pendingOrder"
-"""
-type pendingOrder_mutation_response {
- """number of rows affected by the mutation"""
- affected_rows: Int!
+ """fetch data from the table: "stampNft" using primary key columns"""
+ stampNft_by_pk(id: uuid!): stampNft
- """data from the rows affected by the mutation"""
- returning: [pendingOrder!]!
-}
+ """
+ fetch data from the table: "stripeCheckoutSession"
+ """
+ stripeCheckoutSession(
+ """distinct select on columns"""
+ distinct_on: [stripeCheckoutSession_select_column!]
-"""
-on_conflict condition type for table "pendingOrder"
-"""
-input pendingOrder_on_conflict {
- constraint: pendingOrder_constraint!
- update_columns: [pendingOrder_update_column!]! = []
- where: pendingOrder_bool_exp
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""Ordering options when selecting data from "pendingOrder"."""
-input pendingOrder_order_by {
- account: account_order_by
- accountId: order_by
- created_at: order_by
- eventPassId: order_by
- eventPassNftContract: eventPassNftContract_order_by
- id: order_by
- packAmount: passAmount_order_by
- packId: order_by
- packNftContract: packNftContract_order_by
- packPricing: passPricing_order_by
- passAmount: passAmount_order_by
- passPricing: passPricing_order_by
- quantity: order_by
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""primary key columns input for table: pendingOrder"""
-input pendingOrder_pk_columns_input {
- id: uuid!
-}
+ """sort the rows by one or more columns"""
+ order_by: [stripeCheckoutSession_order_by!]
-"""
-select columns of table "pendingOrder"
-"""
-enum pendingOrder_select_column {
- """column name"""
- accountId
+ """filter the rows returned"""
+ where: stripeCheckoutSession_bool_exp
+ ): [stripeCheckoutSession!]!
- """column name"""
- created_at
+ """
+ fetch data from the table: "stripeCheckoutSessionType"
+ """
+ stripeCheckoutSessionType(
+ """distinct select on columns"""
+ distinct_on: [stripeCheckoutSessionType_select_column!]
- """column name"""
- eventPassId
+ """limit the number of rows returned"""
+ limit: Int
- """column name"""
- id
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- packId
+ """sort the rows by one or more columns"""
+ order_by: [stripeCheckoutSessionType_order_by!]
- """column name"""
- quantity
-}
+ """filter the rows returned"""
+ where: stripeCheckoutSessionType_bool_exp
+ ): [stripeCheckoutSessionType!]!
-"""
-input type for updating data in table "pendingOrder"
-"""
-input pendingOrder_set_input {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
-}
+ """
+ fetch aggregated fields from the table: "stripeCheckoutSessionType"
+ """
+ stripeCheckoutSessionType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stripeCheckoutSessionType_select_column!]
-"""aggregate stddev on columns"""
-type pendingOrder_stddev_fields {
- quantity: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate stddev_pop on columns"""
-type pendingOrder_stddev_pop_fields {
- quantity: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
-"""aggregate stddev_samp on columns"""
-type pendingOrder_stddev_samp_fields {
- quantity: Float
-}
+ """sort the rows by one or more columns"""
+ order_by: [stripeCheckoutSessionType_order_by!]
-"""
-Streaming cursor of the table "pendingOrder"
-"""
-input pendingOrder_stream_cursor_input {
- """Stream column input with initial value"""
- initial_value: pendingOrder_stream_cursor_value_input!
+ """filter the rows returned"""
+ where: stripeCheckoutSessionType_bool_exp
+ ): stripeCheckoutSessionType_aggregate!
- """cursor ordering"""
- ordering: cursor_ordering
-}
+ """
+ fetch data from the table: "stripeCheckoutSessionType" using primary key columns
+ """
+ stripeCheckoutSessionType_by_pk(
+ """Type value."""
+ value: String!
+ ): stripeCheckoutSessionType
-"""Initial value of the column from where the streaming should start"""
-input pendingOrder_stream_cursor_value_input {
- accountId: uuid
- created_at: timestamptz
- eventPassId: String
- id: uuid
- packId: String
- quantity: Int
-}
+ """
+ fetch aggregated fields from the table: "stripeCheckoutSession"
+ """
+ stripeCheckoutSession_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stripeCheckoutSession_select_column!]
-"""aggregate sum on columns"""
-type pendingOrder_sum_fields {
- quantity: Int
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""
-update columns of table "pendingOrder"
-"""
-enum pendingOrder_update_column {
- """column name"""
- accountId
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """column name"""
- created_at
+ """sort the rows by one or more columns"""
+ order_by: [stripeCheckoutSession_order_by!]
- """column name"""
- eventPassId
+ """filter the rows returned"""
+ where: stripeCheckoutSession_bool_exp
+ ): stripeCheckoutSession_aggregate!
- """column name"""
- id
+ """
+ fetch data from the table: "stripeCheckoutSession" using primary key columns
+ """
+ stripeCheckoutSession_by_pk(
+ """Unique identifier for the Stripe Checkout Session."""
+ stripeSessionId: String!
+ ): stripeCheckoutSession
- """column name"""
- packId
+ """
+ fetch data from the table: "stripeCustomer"
+ """
+ stripeCustomer(
+ """distinct select on columns"""
+ distinct_on: [stripeCustomer_select_column!]
- """column name"""
- quantity
-}
+ """limit the number of rows returned"""
+ limit: Int
-input pendingOrder_updates {
- """increments the numeric columns with given value of the filtered values"""
- _inc: pendingOrder_inc_input
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
- """sets the columns of the filtered rows to the given values"""
- _set: pendingOrder_set_input
+ """sort the rows by one or more columns"""
+ order_by: [stripeCustomer_order_by!]
- """filter the rows which have to be updated"""
- where: pendingOrder_bool_exp!
-}
+ """filter the rows returned"""
+ where: stripeCustomer_bool_exp
+ ): [stripeCustomer!]!
-"""aggregate var_pop on columns"""
-type pendingOrder_var_pop_fields {
- quantity: Float
-}
+ """
+ fetch aggregated fields from the table: "stripeCustomer"
+ """
+ stripeCustomer_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stripeCustomer_select_column!]
-"""aggregate var_samp on columns"""
-type pendingOrder_var_samp_fields {
- quantity: Float
-}
+ """limit the number of rows returned"""
+ limit: Int
-"""aggregate variance on columns"""
-type pendingOrder_variance_fields {
- quantity: Float
-}
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stripeCustomer_order_by!]
+
+ """filter the rows returned"""
+ where: stripeCustomer_bool_exp
+ ): stripeCustomer_aggregate!
+
+ """fetch data from the table: "stripeCustomer" using primary key columns"""
+ stripeCustomer_by_pk(
+ """Unique identifier for the Stripe Customer."""
+ stripeCustomerId: String!
+ ): stripeCustomer
-type query_root {
"""
- fetch data from the table: "account"
+ fetch data from the table: "timezone"
"""
- account(
+ timezone(
"""distinct select on columns"""
- distinct_on: [account_select_column!]
+ distinct_on: [timezone_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -24785,18 +33377,18 @@ type query_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [account_order_by!]
+ order_by: [timezone_order_by!]
"""filter the rows returned"""
- where: account_bool_exp
- ): [account!]!
+ where: timezone_bool_exp
+ ): [timezone!]!
"""
- fetch aggregated fields from the table: "account"
+ fetch aggregated fields from the table: "timezone"
"""
- account_aggregate(
+ timezone_aggregate(
"""distinct select on columns"""
- distinct_on: [account_select_column!]
+ distinct_on: [timezone_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -24805,35 +33397,32 @@ type query_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [account_order_by!]
+ order_by: [timezone_order_by!]
"""filter the rows returned"""
- where: account_bool_exp
- ): account_aggregate!
+ where: timezone_bool_exp
+ ): timezone_aggregate!
- """fetch data from the table: "account" using primary key columns"""
- account_by_pk(id: uuid!): account
+ """fetch data from the table: "timezone" using primary key columns"""
+ timezone_by_pk(value: String!): timezone
- """Retrieve a single asset"""
- asset(
+ """Retrieve a single user"""
+ user(
"""
Defines which locales should be returned.
- Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+ Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
"""
locales: [Locale!]! = [en]
stage: Stage! = PUBLISHED
- where: AssetWhereUniqueInput!
- ): Asset
-
- """Retrieve document version"""
- assetVersion(where: VersionWhereInput!): DocumentVersion
+ where: UserWhereUniqueInput!
+ ): User
- """Retrieve multiple assets"""
- assets(
+ """Retrieve multiple users"""
+ users(
after: String
before: String
first: Int
@@ -24842,20 +33431,20 @@ type query_root {
"""
Defines which locales should be returned.
- Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+ Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
"""
locales: [Locale!]! = [en]
- orderBy: AssetOrderByInput
+ orderBy: UserOrderByInput
skip: Int
stage: Stage! = PUBLISHED
- where: AssetWhereInput
- ): [Asset!]!
+ where: UserWhereInput
+ ): [User!]!
- """Retrieve multiple assets using the Relay connection interface"""
- assetsConnection(
+ """Retrieve multiple users using the Relay connection interface"""
+ usersConnection(
after: String
before: String
first: Int
@@ -24864,2649 +33453,3439 @@ type query_root {
"""
Defines which locales should be returned.
- Note that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
+ Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
"""
locales: [Locale!]! = [en]
- orderBy: AssetOrderByInput
+ orderBy: UserOrderByInput
skip: Int
stage: Stage! = PUBLISHED
- where: AssetWhereInput
- ): AssetConnection!
+ where: UserWhereInput
+ ): UserConnection!
+}
- """Retrieve a single contentSpace"""
- contentSpace(
+"""
+Table to assign roles to accounts, allowing a many-to-many relationship. Each account can have multiple roles and each role can be assigned to multiple accounts. This is part of the RBAC system integration.
+"""
+type roleAssignment {
+ accountId: uuid!
+ created_at: timestamptz!
+ eventId: String!
+ id: uuid!
+ invitedById: uuid!
+
+ """An object relationship"""
+ inviter: account!
+ organizer(
"""
Defines which locales should be returned.
- Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
"""
locales: [Locale!]! = [en]
stage: Stage! = PUBLISHED
- where: ContentSpaceWhereUniqueInput!
- ): ContentSpace
+ where: OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer!
+ ): Organizer
+ organizerId: String!
+ role: roles_enum!
+}
- """
- fetch data from the table: "contentSpaceParameters"
- """
- contentSpaceParameters(
- """distinct select on columns"""
- distinct_on: [contentSpaceParameters_select_column!]
+"""
+aggregated selection of "roleAssignment"
+"""
+type roleAssignment_aggregate {
+ aggregate: roleAssignment_aggregate_fields
+ nodes: [roleAssignment!]!
+}
- """limit the number of rows returned"""
- limit: Int
+input roleAssignment_aggregate_bool_exp {
+ count: roleAssignment_aggregate_bool_exp_count
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+input roleAssignment_aggregate_bool_exp_count {
+ arguments: [roleAssignment_select_column!]
+ distinct: Boolean
+ filter: roleAssignment_bool_exp
+ predicate: Int_comparison_exp!
+}
- """sort the rows by one or more columns"""
- order_by: [contentSpaceParameters_order_by!]
+"""
+aggregate fields of "roleAssignment"
+"""
+type roleAssignment_aggregate_fields {
+ count(columns: [roleAssignment_select_column!], distinct: Boolean): Int!
+ max: roleAssignment_max_fields
+ min: roleAssignment_min_fields
+}
- """filter the rows returned"""
- where: contentSpaceParameters_bool_exp
- ): [contentSpaceParameters!]!
+"""
+order by aggregate values of table "roleAssignment"
+"""
+input roleAssignment_aggregate_order_by {
+ count: order_by
+ max: roleAssignment_max_order_by
+ min: roleAssignment_min_order_by
+}
+
+"""
+input type for inserting array relation for remote table "roleAssignment"
+"""
+input roleAssignment_arr_rel_insert_input {
+ data: [roleAssignment_insert_input!]!
+
+ """upsert condition"""
+ on_conflict: roleAssignment_on_conflict
+}
+
+"""
+Boolean expression to filter rows from the table "roleAssignment". All fields are combined with a logical 'AND'.
+"""
+input roleAssignment_bool_exp {
+ _and: [roleAssignment_bool_exp!]
+ _not: roleAssignment_bool_exp
+ _or: [roleAssignment_bool_exp!]
+ accountId: uuid_comparison_exp
+ created_at: timestamptz_comparison_exp
+ eventId: String_comparison_exp
+ id: uuid_comparison_exp
+ invitedById: uuid_comparison_exp
+ inviter: account_bool_exp
+ organizerId: String_comparison_exp
+ role: roles_enum_comparison_exp
+}
+"""
+unique or primary key constraints on table "roleAssignment"
+"""
+enum roleAssignment_constraint {
"""
- fetch aggregated fields from the table: "contentSpaceParameters"
+ unique or primary key constraint on columns "organizerId", "accountId", "role", "eventId"
"""
- contentSpaceParameters_aggregate(
- """distinct select on columns"""
- distinct_on: [contentSpaceParameters_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ unique_role_assignment
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+input type for inserting data into table "roleAssignment"
+"""
+input roleAssignment_insert_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventId: String
+ id: uuid
+ invitedById: uuid
+ inviter: account_obj_rel_insert_input
+ organizerId: String
+ role: roles_enum
+}
- """sort the rows by one or more columns"""
- order_by: [contentSpaceParameters_order_by!]
+"""aggregate max on columns"""
+type roleAssignment_max_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventId: String
+ id: uuid
+ invitedById: uuid
+ organizerId: String
+}
- """filter the rows returned"""
- where: contentSpaceParameters_bool_exp
- ): contentSpaceParameters_aggregate!
+"""
+order by max() on columns of table "roleAssignment"
+"""
+input roleAssignment_max_order_by {
+ accountId: order_by
+ created_at: order_by
+ eventId: order_by
+ id: order_by
+ invitedById: order_by
+ organizerId: order_by
+}
- """
- fetch data from the table: "contentSpaceParameters" using primary key columns
- """
- contentSpaceParameters_by_pk(id: uuid!): contentSpaceParameters
+"""aggregate min on columns"""
+type roleAssignment_min_fields {
+ accountId: uuid
+ created_at: timestamptz
+ eventId: String
+ id: uuid
+ invitedById: uuid
+ organizerId: String
+}
- """
- fetch data from the table: "contentSpaceStatus"
- """
- contentSpaceStatus(
- """distinct select on columns"""
- distinct_on: [contentSpaceStatus_select_column!]
+"""
+order by min() on columns of table "roleAssignment"
+"""
+input roleAssignment_min_order_by {
+ accountId: order_by
+ created_at: order_by
+ eventId: order_by
+ id: order_by
+ invitedById: order_by
+ organizerId: order_by
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+response of any mutation on the table "roleAssignment"
+"""
+type roleAssignment_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """data from the rows affected by the mutation"""
+ returning: [roleAssignment!]!
+}
- """sort the rows by one or more columns"""
- order_by: [contentSpaceStatus_order_by!]
+"""
+on_conflict condition type for table "roleAssignment"
+"""
+input roleAssignment_on_conflict {
+ constraint: roleAssignment_constraint!
+ update_columns: [roleAssignment_update_column!]! = []
+ where: roleAssignment_bool_exp
+}
- """filter the rows returned"""
- where: contentSpaceStatus_bool_exp
- ): [contentSpaceStatus!]!
+"""Ordering options when selecting data from "roleAssignment"."""
+input roleAssignment_order_by {
+ accountId: order_by
+ created_at: order_by
+ eventId: order_by
+ id: order_by
+ invitedById: order_by
+ inviter: account_order_by
+ organizerId: order_by
+ role: order_by
+}
- """
- fetch aggregated fields from the table: "contentSpaceStatus"
- """
- contentSpaceStatus_aggregate(
- """distinct select on columns"""
- distinct_on: [contentSpaceStatus_select_column!]
+"""
+select columns of table "roleAssignment"
+"""
+enum roleAssignment_select_column {
+ """column name"""
+ accountId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ created_at
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ eventId
- """sort the rows by one or more columns"""
- order_by: [contentSpaceStatus_order_by!]
+ """column name"""
+ id
- """filter the rows returned"""
- where: contentSpaceStatus_bool_exp
- ): contentSpaceStatus_aggregate!
+ """column name"""
+ invitedById
- """
- fetch data from the table: "contentSpaceStatus" using primary key columns
- """
- contentSpaceStatus_by_pk(value: String!): contentSpaceStatus
+ """column name"""
+ organizerId
- """Retrieve document version"""
- contentSpaceVersion(where: VersionWhereInput!): DocumentVersion
+ """column name"""
+ role
+}
- """Retrieve multiple contentSpaces"""
- contentSpaces(
- after: String
- before: String
- first: Int
- last: Int
+"""
+input type for updating data in table "roleAssignment"
+"""
+input roleAssignment_set_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventId: String
+ id: uuid
+ invitedById: uuid
+ organizerId: String
+ role: roles_enum
+}
- """
- Defines which locales should be returned.
-
- Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ContentSpaceOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ContentSpaceWhereInput
- ): [ContentSpace!]!
+"""
+Streaming cursor of the table "roleAssignment"
+"""
+input roleAssignment_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: roleAssignment_stream_cursor_value_input!
- """Retrieve multiple contentSpaces using the Relay connection interface"""
- contentSpacesConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """
- Defines which locales should be returned.
-
- Note that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ContentSpaceOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ContentSpaceWhereInput
- ): ContentSpaceConnection!
+"""Initial value of the column from where the streaming should start"""
+input roleAssignment_stream_cursor_value_input {
+ accountId: uuid
+ created_at: timestamptz
+ eventId: String
+ id: uuid
+ invitedById: uuid
+ organizerId: String
+ role: roles_enum
+}
- """
- fetch data from the table: "currency"
- """
- currency(
- """distinct select on columns"""
- distinct_on: [currency_select_column!]
+"""
+update columns of table "roleAssignment"
+"""
+enum roleAssignment_update_column {
+ """column name"""
+ accountId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ created_at
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ eventId
- """sort the rows by one or more columns"""
- order_by: [currency_order_by!]
+ """column name"""
+ id
- """filter the rows returned"""
- where: currency_bool_exp
- ): [currency!]!
+ """column name"""
+ invitedById
- """
- fetch aggregated fields from the table: "currency"
- """
- currency_aggregate(
- """distinct select on columns"""
- distinct_on: [currency_select_column!]
+ """column name"""
+ organizerId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ role
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+input roleAssignment_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: roleAssignment_set_input
- """sort the rows by one or more columns"""
- order_by: [currency_order_by!]
+ """filter the rows which have to be updated"""
+ where: roleAssignment_bool_exp!
+}
- """filter the rows returned"""
- where: currency_bool_exp
- ): currency_aggregate!
+"""
+Stores user roles defining access levels and permissions within the Offline platform.
+"""
+type roles {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String!
+}
- """fetch data from the table: "currency" using primary key columns"""
- currency_by_pk(value: String!): currency
+"""
+aggregated selection of "roles"
+"""
+type roles_aggregate {
+ aggregate: roles_aggregate_fields
+ nodes: [roles!]!
+}
- """Fetches an object given its ID"""
- entities(
- """The where parameters to query components"""
- where: [EntityWhereInput!]!
- ): [Entity!]
+"""
+aggregate fields of "roles"
+"""
+type roles_aggregate_fields {
+ count(columns: [roles_select_column!], distinct: Boolean): Int!
+ max: roles_max_fields
+ min: roles_min_fields
+}
- """Retrieve a single event"""
- event(
- """
- Defines which locales should be returned.
-
- Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: EventWhereUniqueInput!
- ): Event
+"""
+Boolean expression to filter rows from the table "roles". All fields are combined with a logical 'AND'.
+"""
+input roles_bool_exp {
+ _and: [roles_bool_exp!]
+ _not: roles_bool_exp
+ _or: [roles_bool_exp!]
+ value: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "roles"
+"""
+enum roles_constraint {
"""
- fetch data from the table: "eventParameters"
+ unique or primary key constraint on columns "value"
"""
- eventParameters(
- """distinct select on columns"""
- distinct_on: [eventParameters_select_column!]
+ roles_pkey
+}
- """limit the number of rows returned"""
- limit: Int
+enum roles_enum {
+ organizer_admin
+ organizer_auditor
+ organizer_content_manager
+ organizer_finance_manager
+ organizer_guest
+ organizer_human_resources
+ organizer_operations_manager
+ organizer_super_admin
+ organizer_validator
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Boolean expression to compare columns of type "roles_enum". All fields are combined with logical 'AND'.
+"""
+input roles_enum_comparison_exp {
+ _eq: roles_enum
+ _in: [roles_enum!]
+ _is_null: Boolean
+ _neq: roles_enum
+ _nin: [roles_enum!]
+}
- """sort the rows by one or more columns"""
- order_by: [eventParameters_order_by!]
+"""
+input type for inserting data into table "roles"
+"""
+input roles_insert_input {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String
+}
- """filter the rows returned"""
- where: eventParameters_bool_exp
- ): [eventParameters!]!
+"""aggregate max on columns"""
+type roles_max_fields {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String
+}
- """
- fetch aggregated fields from the table: "eventParameters"
- """
- eventParameters_aggregate(
- """distinct select on columns"""
- distinct_on: [eventParameters_select_column!]
+"""aggregate min on columns"""
+type roles_min_fields {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+response of any mutation on the table "roles"
+"""
+type roles_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """data from the rows affected by the mutation"""
+ returning: [roles!]!
+}
- """sort the rows by one or more columns"""
- order_by: [eventParameters_order_by!]
+"""
+on_conflict condition type for table "roles"
+"""
+input roles_on_conflict {
+ constraint: roles_constraint!
+ update_columns: [roles_update_column!]! = []
+ where: roles_bool_exp
+}
- """filter the rows returned"""
- where: eventParameters_bool_exp
- ): eventParameters_aggregate!
+"""Ordering options when selecting data from "roles"."""
+input roles_order_by {
+ value: order_by
+}
- """fetch data from the table: "eventParameters" using primary key columns"""
- eventParameters_by_pk(id: uuid!): eventParameters
+"""primary key columns input for table: roles"""
+input roles_pk_columns_input {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String!
+}
- """Retrieve a single eventPass"""
- eventPass(
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: EventPassWhereUniqueInput!
- ): EventPass
+"""
+select columns of table "roles"
+"""
+enum roles_select_column {
+ """column name"""
+ value
+}
- """Retrieve a single eventPassDelayedRevealed"""
- eventPassDelayedRevealed(
- """
- Defines which locales should be returned.
-
- Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: EventPassDelayedRevealedWhereUniqueInput!
- ): EventPassDelayedRevealed
+"""
+input type for updating data in table "roles"
+"""
+input roles_set_input {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String
+}
- """Retrieve document version"""
- eventPassDelayedRevealedVersion(where: VersionWhereInput!): DocumentVersion
+"""
+Streaming cursor of the table "roles"
+"""
+input roles_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: roles_stream_cursor_value_input!
- """
- fetch data from the table: "eventPassNft"
- """
- eventPassNft(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """limit the number of rows returned"""
- limit: Int
+"""Initial value of the column from where the streaming should start"""
+input roles_stream_cursor_value_input {
+ "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
+ value: String
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+update columns of table "roles"
+"""
+enum roles_update_column {
+ """column name"""
+ value
+}
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+input roles_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: roles_set_input
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): [eventPassNft!]!
+ """filter the rows which have to be updated"""
+ where: roles_bool_exp!
+}
+"""
+The secretApiKey table stores the secret API keys used for querying sensitive data and performing mutations. It includes additional fields for security and management, such as hashed origin secret, encrypted integrity secret, expiration timestamp, and status.
+"""
+type secretApiKey {
"""
- fetch data from the table: "eventPassNftContract"
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
"""
- eventPassNftContract(
- """distinct select on columns"""
- distinct_on: [eventPassNftContract_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ allowlist: String!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String!
+ created_at: timestamptz!
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContract_order_by!]
+ """
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
+ """
+ encryptedIntegritySecret: String
- """filter the rows returned"""
- where: eventPassNftContract_bool_exp
- ): [eventPassNftContract!]!
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
"""
- fetch data from the table: "eventPassNftContractType"
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
"""
- eventPassNftContractType(
- """distinct select on columns"""
- distinct_on: [eventPassNftContractType_select_column!]
+ hashedOriginSecret: String
+ id: uuid!
- """limit the number of rows returned"""
- limit: Int
+ """
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
+ """
+ name: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String!
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContractType_order_by!]
+ """
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
+ """
+ originSecretSalt: String
- """filter the rows returned"""
- where: eventPassNftContractType_bool_exp
- ): [eventPassNftContractType!]!
+ """
+ The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
"""
- fetch aggregated fields from the table: "eventPassNftContractType"
+ The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.
"""
- eventPassNftContractType_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNftContractType_select_column!]
+ type: apiKeyType_enum!
+ updated_at: timestamptz!
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+aggregated selection of "secretApiKey"
+"""
+type secretApiKey_aggregate {
+ aggregate: secretApiKey_aggregate_fields
+ nodes: [secretApiKey!]!
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+aggregate fields of "secretApiKey"
+"""
+type secretApiKey_aggregate_fields {
+ count(columns: [secretApiKey_select_column!], distinct: Boolean): Int!
+ max: secretApiKey_max_fields
+ min: secretApiKey_min_fields
+}
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContractType_order_by!]
+"""
+Boolean expression to filter rows from the table "secretApiKey". All fields are combined with a logical 'AND'.
+"""
+input secretApiKey_bool_exp {
+ _and: [secretApiKey_bool_exp!]
+ _not: secretApiKey_bool_exp
+ _or: [secretApiKey_bool_exp!]
+ allowlist: String_comparison_exp
+ apiKey: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ encryptedIntegritySecret: String_comparison_exp
+ expiresAt: timestamptz_comparison_exp
+ hashedOriginSecret: String_comparison_exp
+ id: uuid_comparison_exp
+ name: String_comparison_exp
+ organizerId: String_comparison_exp
+ originSecretSalt: String_comparison_exp
+ status: apiKeyStatus_enum_comparison_exp
+ type: apiKeyType_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
- """filter the rows returned"""
- where: eventPassNftContractType_bool_exp
- ): eventPassNftContractType_aggregate!
+"""
+unique or primary key constraints on table "secretApiKey"
+"""
+enum secretApiKey_constraint {
+ """
+ unique or primary key constraint on columns "apiKey"
+ """
+ secretApiKey_apiKey_key
"""
- fetch data from the table: "eventPassNftContractType" using primary key columns
+ unique or primary key constraint on columns "id"
"""
- eventPassNftContractType_by_pk(
- """Type name for event pass NFT contract."""
- value: String!
- ): eventPassNftContractType
+ secretApiKey_pkey
+}
+"""
+input type for inserting data into table "secretApiKey"
+"""
+input secretApiKey_insert_input {
"""
- fetch aggregated fields from the table: "eventPassNftContract"
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
"""
- eventPassNftContract_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNftContract_select_column!]
+ allowlist: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String
+ created_at: timestamptz
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
+ """
+ encryptedIntegritySecret: String
- """sort the rows by one or more columns"""
- order_by: [eventPassNftContract_order_by!]
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
- """filter the rows returned"""
- where: eventPassNftContract_bool_exp
- ): eventPassNftContract_aggregate!
+ """
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
+ """
+ hashedOriginSecret: String
+ id: uuid
"""
- fetch data from the table: "eventPassNftContract" using primary key columns
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
"""
- eventPassNftContract_by_pk(id: uuid!): eventPassNftContract
+ name: String
"""
- fetch aggregated fields from the table: "eventPassNft"
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
"""
- eventPassNft_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassNft_select_column!]
+ organizerId: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
+ """
+ originSecretSalt: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
- """sort the rows by one or more columns"""
- order_by: [eventPassNft_order_by!]
+ """
+ The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.
+ """
+ type: apiKeyType_enum
+ updated_at: timestamptz
+}
- """filter the rows returned"""
- where: eventPassNft_bool_exp
- ): eventPassNft_aggregate!
+"""aggregate max on columns"""
+type secretApiKey_max_fields {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
+ """
+ allowlist: String
- """fetch data from the table: "eventPassNft" using primary key columns"""
- eventPassNft_by_pk(id: uuid!): eventPassNft
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String
+ created_at: timestamptz
"""
- fetch data from the table: "eventPassOrderSums"
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
"""
- eventPassOrderSums(
- """distinct select on columns"""
- distinct_on: [eventPassOrderSums_select_column!]
+ encryptedIntegritySecret: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
+ """
+ hashedOriginSecret: String
+ id: uuid
- """sort the rows by one or more columns"""
- order_by: [eventPassOrderSums_order_by!]
+ """
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
+ """
+ name: String
- """filter the rows returned"""
- where: eventPassOrderSums_bool_exp
- ): [eventPassOrderSums!]!
+ """
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
"""
- fetch aggregated fields from the table: "eventPassOrderSums"
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
"""
- eventPassOrderSums_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassOrderSums_select_column!]
+ originSecretSalt: String
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""aggregate min on columns"""
+type secretApiKey_min_fields {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
+ """
+ allowlist: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String
+ created_at: timestamptz
- """sort the rows by one or more columns"""
- order_by: [eventPassOrderSums_order_by!]
+ """
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
+ """
+ encryptedIntegritySecret: String
- """filter the rows returned"""
- where: eventPassOrderSums_bool_exp
- ): eventPassOrderSums_aggregate!
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
"""
- fetch data from the table: "eventPassOrderSums" using primary key columns
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
"""
- eventPassOrderSums_by_pk(eventPassId: String!): eventPassOrderSums
+ hashedOriginSecret: String
+ id: uuid
"""
- fetch data from the table: "eventPassType"
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
"""
- eventPassType(
- """distinct select on columns"""
- distinct_on: [eventPassType_select_column!]
+ name: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
+ """
+ originSecretSalt: String
+ updated_at: timestamptz
+}
- """sort the rows by one or more columns"""
- order_by: [eventPassType_order_by!]
+"""
+response of any mutation on the table "secretApiKey"
+"""
+type secretApiKey_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """filter the rows returned"""
- where: eventPassType_bool_exp
- ): [eventPassType!]!
+ """data from the rows affected by the mutation"""
+ returning: [secretApiKey!]!
+}
- """
- fetch aggregated fields from the table: "eventPassType"
- """
- eventPassType_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassType_select_column!]
+"""
+on_conflict condition type for table "secretApiKey"
+"""
+input secretApiKey_on_conflict {
+ constraint: secretApiKey_constraint!
+ update_columns: [secretApiKey_update_column!]! = []
+ where: secretApiKey_bool_exp
+}
- """limit the number of rows returned"""
- limit: Int
+"""Ordering options when selecting data from "secretApiKey"."""
+input secretApiKey_order_by {
+ allowlist: order_by
+ apiKey: order_by
+ created_at: order_by
+ encryptedIntegritySecret: order_by
+ expiresAt: order_by
+ hashedOriginSecret: order_by
+ id: order_by
+ name: order_by
+ organizerId: order_by
+ originSecretSalt: order_by
+ status: order_by
+ type: order_by
+ updated_at: order_by
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""primary key columns input for table: secretApiKey"""
+input secretApiKey_pk_columns_input {
+ id: uuid!
+}
- """sort the rows by one or more columns"""
- order_by: [eventPassType_order_by!]
+"""
+select columns of table "secretApiKey"
+"""
+enum secretApiKey_select_column {
+ """column name"""
+ allowlist
- """filter the rows returned"""
- where: eventPassType_bool_exp
- ): eventPassType_aggregate!
+ """column name"""
+ apiKey
- """fetch data from the table: "eventPassType" using primary key columns"""
- eventPassType_by_pk(
- """Type name for event pass."""
- value: String!
- ): eventPassType
+ """column name"""
+ created_at
- """
- fetch data from the table: "eventPassValidationType"
- """
- eventPassValidationType(
- """distinct select on columns"""
- distinct_on: [eventPassValidationType_select_column!]
+ """column name"""
+ encryptedIntegritySecret
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ expiresAt
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ hashedOriginSecret
- """sort the rows by one or more columns"""
- order_by: [eventPassValidationType_order_by!]
+ """column name"""
+ id
- """filter the rows returned"""
- where: eventPassValidationType_bool_exp
- ): [eventPassValidationType!]!
+ """column name"""
+ name
- """
- fetch aggregated fields from the table: "eventPassValidationType"
- """
- eventPassValidationType_aggregate(
- """distinct select on columns"""
- distinct_on: [eventPassValidationType_select_column!]
+ """column name"""
+ organizerId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ originSecretSalt
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ status
- """sort the rows by one or more columns"""
- order_by: [eventPassValidationType_order_by!]
+ """column name"""
+ type
- """filter the rows returned"""
- where: eventPassValidationType_bool_exp
- ): eventPassValidationType_aggregate!
+ """column name"""
+ updated_at
+}
+"""
+input type for updating data in table "secretApiKey"
+"""
+input secretApiKey_set_input {
"""
- fetch data from the table: "eventPassValidationType" using primary key columns
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
"""
- eventPassValidationType_by_pk(
- """Type name for event pass validation."""
- value: String!
- ): eventPassValidationType
-
- """Retrieve document version"""
- eventPassVersion(where: VersionWhereInput!): DocumentVersion
+ allowlist: String
- """Retrieve multiple eventPasses"""
- eventPasses(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String
+ created_at: timestamptz
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventPassOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventPassWhereInput
- ): [EventPass!]!
+ """
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
+ """
+ encryptedIntegritySecret: String
- """Retrieve multiple eventPasses using the Relay connection interface"""
- eventPassesConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
- """
- Defines which locales should be returned.
-
- Note that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventPassOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventPassWhereInput
- ): EventPassConnection!
+ """
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
+ """
+ hashedOriginSecret: String
+ id: uuid
- """Retrieve multiple eventPassesDelayedRevealed"""
- eventPassesDelayedRevealed(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
+ """
+ name: String
- """
- Defines which locales should be returned.
-
- Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventPassDelayedRevealedOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventPassDelayedRevealedWhereInput
- ): [EventPassDelayedRevealed!]!
+ """
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
"""
- Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
"""
- eventPassesDelayedRevealedConnection(
- after: String
- before: String
- first: Int
- last: Int
+ originSecretSalt: String
- """
- Defines which locales should be returned.
-
- Note that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventPassDelayedRevealedOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventPassDelayedRevealedWhereInput
- ): EventPassDelayedRevealedConnection!
+ """
+ The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
"""
- fetch data from the table: "eventStatus"
+ The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.
"""
- eventStatus(
- """distinct select on columns"""
- distinct_on: [eventStatus_select_column!]
+ type: apiKeyType_enum
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+Streaming cursor of the table "secretApiKey"
+"""
+input secretApiKey_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: secretApiKey_stream_cursor_value_input!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """sort the rows by one or more columns"""
- order_by: [eventStatus_order_by!]
+"""Initial value of the column from where the streaming should start"""
+input secretApiKey_stream_cursor_value_input {
+ """
+ A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.
+ """
+ allowlist: String
- """filter the rows returned"""
- where: eventStatus_bool_exp
- ): [eventStatus!]!
+ """
+ The secret API key used for authentication and identification when querying sensitive data and performing mutations.
+ """
+ apiKey: String
+ created_at: timestamptz
"""
- fetch aggregated fields from the table: "eventStatus"
+ The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.
"""
- eventStatus_aggregate(
- """distinct select on columns"""
- distinct_on: [eventStatus_select_column!]
+ encryptedIntegritySecret: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.
+ """
+ expiresAt: timestamptz
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.
+ """
+ hashedOriginSecret: String
+ id: uuid
- """sort the rows by one or more columns"""
- order_by: [eventStatus_order_by!]
+ """
+ A user-defined name for the secret API key, providing a human-readable identifier for the key.
+ """
+ name: String
- """filter the rows returned"""
- where: eventStatus_bool_exp
- ): eventStatus_aggregate!
+ """
+ The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.
+ """
+ organizerId: String
- """fetch data from the table: "eventStatus" using primary key columns"""
- eventStatus_by_pk(value: String!): eventStatus
+ """
+ The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.
+ """
+ originSecretSalt: String
- """Retrieve document version"""
- eventVersion(where: VersionWhereInput!): DocumentVersion
+ """
+ The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ status: apiKeyStatus_enum
- """Retrieve multiple events"""
- events(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.
+ """
+ type: apiKeyType_enum
+ updated_at: timestamptz
+}
- """
- Defines which locales should be returned.
-
- Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventWhereInput
- ): [Event!]!
+"""
+update columns of table "secretApiKey"
+"""
+enum secretApiKey_update_column {
+ """column name"""
+ allowlist
- """Retrieve multiple events using the Relay connection interface"""
- eventsConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """column name"""
+ apiKey
- """
- Defines which locales should be returned.
-
- Note that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: EventOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: EventWhereInput
- ): EventConnection!
+ """column name"""
+ created_at
- """
- fetch data from the table: "follow"
- """
- follow(
- """distinct select on columns"""
- distinct_on: [follow_select_column!]
+ """column name"""
+ encryptedIntegritySecret
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ expiresAt
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ hashedOriginSecret
- """sort the rows by one or more columns"""
- order_by: [follow_order_by!]
+ """column name"""
+ id
- """filter the rows returned"""
- where: follow_bool_exp
- ): [follow!]!
+ """column name"""
+ name
- """
- fetch aggregated fields from the table: "follow"
- """
- follow_aggregate(
- """distinct select on columns"""
- distinct_on: [follow_select_column!]
+ """column name"""
+ organizerId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ originSecretSalt
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ status
- """sort the rows by one or more columns"""
- order_by: [follow_order_by!]
+ """column name"""
+ type
- """filter the rows returned"""
- where: follow_bool_exp
- ): follow_aggregate!
+ """column name"""
+ updated_at
+}
- """fetch data from the table: "follow" using primary key columns"""
- follow_by_pk(
- """
- References the unique identifier of the account that is following an organizer.
- """
- accountId: uuid!
+input secretApiKey_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: secretApiKey_set_input
- """
- Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.
- """
- organizerSlug: String!
- ): follow
+ """filter the rows which have to be updated"""
+ where: secretApiKey_bool_exp!
+}
+"""
+This table stores parameters specific to Shopify campaigns, including gate identifiers and links to campaign data in the CRM. It supports context resolution in offline unlock iframes and enables tailored content display.
+"""
+type shopifyCampaignParameters {
"""
- fetch data from the table: "kyc"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- kyc(
- """distinct select on columns"""
- distinct_on: [kyc_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ created_at: timestamptz
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String!
- """sort the rows by one or more columns"""
- order_by: [kyc_order_by!]
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String!
- """filter the rows returned"""
- where: kyc_bool_exp
- ): [kyc!]!
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String!
+ status: shopifyCampaignStatus_enum
"""
- fetch data from the table: "kycLevelName"
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
"""
- kycLevelName(
- """distinct select on columns"""
- distinct_on: [kycLevelName_select_column!]
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+aggregated selection of "shopifyCampaignParameters"
+"""
+type shopifyCampaignParameters_aggregate {
+ aggregate: shopifyCampaignParameters_aggregate_fields
+ nodes: [shopifyCampaignParameters!]!
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+aggregate fields of "shopifyCampaignParameters"
+"""
+type shopifyCampaignParameters_aggregate_fields {
+ count(columns: [shopifyCampaignParameters_select_column!], distinct: Boolean): Int!
+ max: shopifyCampaignParameters_max_fields
+ min: shopifyCampaignParameters_min_fields
+}
- """sort the rows by one or more columns"""
- order_by: [kycLevelName_order_by!]
+"""
+Boolean expression to filter rows from the table "shopifyCampaignParameters". All fields are combined with a logical 'AND'.
+"""
+input shopifyCampaignParameters_bool_exp {
+ _and: [shopifyCampaignParameters_bool_exp!]
+ _not: shopifyCampaignParameters_bool_exp
+ _or: [shopifyCampaignParameters_bool_exp!]
+ created_at: timestamptz_comparison_exp
+ gateId: String_comparison_exp
+ organizerId: String_comparison_exp
+ shopifyCampaignTemplateId: String_comparison_exp
+ status: shopifyCampaignStatus_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
- """filter the rows returned"""
- where: kycLevelName_bool_exp
- ): [kycLevelName!]!
+"""
+unique or primary key constraints on table "shopifyCampaignParameters"
+"""
+enum shopifyCampaignParameters_constraint {
+ """
+ unique or primary key constraint on columns "gateId"
+ """
+ shopifyCampaignParameters_pkey
+}
+"""
+input type for inserting data into table "shopifyCampaignParameters"
+"""
+input shopifyCampaignParameters_insert_input {
"""
- fetch aggregated fields from the table: "kycLevelName"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- kycLevelName_aggregate(
- """distinct select on columns"""
- distinct_on: [kycLevelName_select_column!]
+ created_at: timestamptz
- """limit the number of rows returned"""
- limit: Int
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String
- """sort the rows by one or more columns"""
- order_by: [kycLevelName_order_by!]
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String
+ status: shopifyCampaignStatus_enum
- """filter the rows returned"""
- where: kycLevelName_bool_exp
- ): kycLevelName_aggregate!
+ """
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
+ """
+ updated_at: timestamptz
+}
- """fetch data from the table: "kycLevelName" using primary key columns"""
- kycLevelName_by_pk(
- """
- basic_kyc_level: Basic level of KYC verification.
- advanced_kyc_level: Advanced level of KYC verification.
- """
- value: String!
- ): kycLevelName
+"""aggregate max on columns"""
+type shopifyCampaignParameters_max_fields {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch data from the table: "kycStatus"
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
"""
- kycStatus(
- """distinct select on columns"""
- distinct_on: [kycStatus_select_column!]
+ gateId: String
- """limit the number of rows returned"""
- limit: Int
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String
- """sort the rows by one or more columns"""
- order_by: [kycStatus_order_by!]
+ """
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
+ """
+ updated_at: timestamptz
+}
- """filter the rows returned"""
- where: kycStatus_bool_exp
- ): [kycStatus!]!
+"""aggregate min on columns"""
+type shopifyCampaignParameters_min_fields {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch aggregated fields from the table: "kycStatus"
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
"""
- kycStatus_aggregate(
- """distinct select on columns"""
- distinct_on: [kycStatus_select_column!]
+ gateId: String
- """limit the number of rows returned"""
- limit: Int
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String
- """sort the rows by one or more columns"""
- order_by: [kycStatus_order_by!]
+ """
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
+ """
+ updated_at: timestamptz
+}
- """filter the rows returned"""
- where: kycStatus_bool_exp
- ): kycStatus_aggregate!
+"""
+response of any mutation on the table "shopifyCampaignParameters"
+"""
+type shopifyCampaignParameters_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """fetch data from the table: "kycStatus" using primary key columns"""
- kycStatus_by_pk(
- """
- init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.
- pending: An applicant is ready to be processed.
- prechecked: The check is in a half way of being finished.
- queued: The checks have been started for the applicant.
- completed: The check has been completed.
- onHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.
- """
- value: String!
- ): kycStatus
+ """data from the rows affected by the mutation"""
+ returning: [shopifyCampaignParameters!]!
+}
+
+"""
+on_conflict condition type for table "shopifyCampaignParameters"
+"""
+input shopifyCampaignParameters_on_conflict {
+ constraint: shopifyCampaignParameters_constraint!
+ update_columns: [shopifyCampaignParameters_update_column!]! = []
+ where: shopifyCampaignParameters_bool_exp
+}
+"""Ordering options when selecting data from "shopifyCampaignParameters"."""
+input shopifyCampaignParameters_order_by {
+ created_at: order_by
+ gateId: order_by
+ organizerId: order_by
+ shopifyCampaignTemplateId: order_by
+ status: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: shopifyCampaignParameters"""
+input shopifyCampaignParameters_pk_columns_input {
"""
- fetch aggregated fields from the table: "kyc"
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
"""
- kyc_aggregate(
- """distinct select on columns"""
- distinct_on: [kyc_select_column!]
+ gateId: String!
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+select columns of table "shopifyCampaignParameters"
+"""
+enum shopifyCampaignParameters_select_column {
+ """column name"""
+ created_at
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ gateId
- """sort the rows by one or more columns"""
- order_by: [kyc_order_by!]
+ """column name"""
+ organizerId
- """filter the rows returned"""
- where: kyc_bool_exp
- ): kyc_aggregate!
+ """column name"""
+ shopifyCampaignTemplateId
- """fetch data from the table: "kyc" using primary key columns"""
- kyc_by_pk(
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid!
- ): kyc
+ """column name"""
+ status
+
+ """column name"""
+ updated_at
+}
+"""
+input type for updating data in table "shopifyCampaignParameters"
+"""
+input shopifyCampaignParameters_set_input {
"""
- fetch data from the table: "lotteryParameters"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- lotteryParameters(
- """distinct select on columns"""
- distinct_on: [lotteryParameters_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ created_at: timestamptz
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String
- """sort the rows by one or more columns"""
- order_by: [lotteryParameters_order_by!]
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String
- """filter the rows returned"""
- where: lotteryParameters_bool_exp
- ): [lotteryParameters!]!
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String
+ status: shopifyCampaignStatus_enum
"""
- fetch aggregated fields from the table: "lotteryParameters"
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
"""
- lotteryParameters_aggregate(
- """distinct select on columns"""
- distinct_on: [lotteryParameters_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ updated_at: timestamptz
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Streaming cursor of the table "shopifyCampaignParameters"
+"""
+input shopifyCampaignParameters_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: shopifyCampaignParameters_stream_cursor_value_input!
- """sort the rows by one or more columns"""
- order_by: [lotteryParameters_order_by!]
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """filter the rows returned"""
- where: lotteryParameters_bool_exp
- ): lotteryParameters_aggregate!
+"""Initial value of the column from where the streaming should start"""
+input shopifyCampaignParameters_stream_cursor_value_input {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch data from the table: "lotteryParameters" using primary key columns
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
"""
- lotteryParameters_by_pk(id: uuid!): lotteryParameters
+ gateId: String
+
+ """Identifier for the organizer responsible for the campaign."""
+ organizerId: String
+
+ """Foreign key linking to the shopifyCampaignTemplate model in the CRM."""
+ shopifyCampaignTemplateId: String
+ status: shopifyCampaignStatus_enum
"""
- fetch data from the table: "lotteryStatus"
+ Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.
"""
- lotteryStatus(
- """distinct select on columns"""
- distinct_on: [lotteryStatus_select_column!]
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+update columns of table "shopifyCampaignParameters"
+"""
+enum shopifyCampaignParameters_update_column {
+ """column name"""
+ created_at
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ gateId
- """sort the rows by one or more columns"""
- order_by: [lotteryStatus_order_by!]
+ """column name"""
+ organizerId
- """filter the rows returned"""
- where: lotteryStatus_bool_exp
- ): [lotteryStatus!]!
+ """column name"""
+ shopifyCampaignTemplateId
- """
- fetch aggregated fields from the table: "lotteryStatus"
- """
- lotteryStatus_aggregate(
- """distinct select on columns"""
- distinct_on: [lotteryStatus_select_column!]
+ """column name"""
+ status
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ updated_at
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+input shopifyCampaignParameters_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignParameters_set_input
- """sort the rows by one or more columns"""
- order_by: [lotteryStatus_order_by!]
+ """filter the rows which have to be updated"""
+ where: shopifyCampaignParameters_bool_exp!
+}
- """filter the rows returned"""
- where: lotteryStatus_bool_exp
- ): lotteryStatus_aggregate!
+"""
+columns and relationships of "shopifyCampaignStatus"
+"""
+type shopifyCampaignStatus {
+ value: String!
+}
- """fetch data from the table: "lotteryStatus" using primary key columns"""
- lotteryStatus_by_pk(value: String!): lotteryStatus
+"""
+aggregated selection of "shopifyCampaignStatus"
+"""
+type shopifyCampaignStatus_aggregate {
+ aggregate: shopifyCampaignStatus_aggregate_fields
+ nodes: [shopifyCampaignStatus!]!
+}
+
+"""
+aggregate fields of "shopifyCampaignStatus"
+"""
+type shopifyCampaignStatus_aggregate_fields {
+ count(columns: [shopifyCampaignStatus_select_column!], distinct: Boolean): Int!
+ max: shopifyCampaignStatus_max_fields
+ min: shopifyCampaignStatus_min_fields
+}
+
+"""
+Boolean expression to filter rows from the table "shopifyCampaignStatus". All fields are combined with a logical 'AND'.
+"""
+input shopifyCampaignStatus_bool_exp {
+ _and: [shopifyCampaignStatus_bool_exp!]
+ _not: shopifyCampaignStatus_bool_exp
+ _or: [shopifyCampaignStatus_bool_exp!]
+ value: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "shopifyCampaignStatus"
+"""
+enum shopifyCampaignStatus_constraint {
"""
- fetch data from the table: "minterTemporaryWallet"
+ unique or primary key constraint on columns "value"
"""
- minterTemporaryWallet(
- """distinct select on columns"""
- distinct_on: [minterTemporaryWallet_select_column!]
+ shopifyCampaignStatus_pkey
+}
- """limit the number of rows returned"""
- limit: Int
+enum shopifyCampaignStatus_enum {
+ DRAFT
+ PUBLISHED
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Boolean expression to compare columns of type "shopifyCampaignStatus_enum". All fields are combined with logical 'AND'.
+"""
+input shopifyCampaignStatus_enum_comparison_exp {
+ _eq: shopifyCampaignStatus_enum
+ _in: [shopifyCampaignStatus_enum!]
+ _is_null: Boolean
+ _neq: shopifyCampaignStatus_enum
+ _nin: [shopifyCampaignStatus_enum!]
+}
- """sort the rows by one or more columns"""
- order_by: [minterTemporaryWallet_order_by!]
+"""
+input type for inserting data into table "shopifyCampaignStatus"
+"""
+input shopifyCampaignStatus_insert_input {
+ value: String
+}
- """filter the rows returned"""
- where: minterTemporaryWallet_bool_exp
- ): [minterTemporaryWallet!]!
+"""aggregate max on columns"""
+type shopifyCampaignStatus_max_fields {
+ value: String
+}
- """
- fetch aggregated fields from the table: "minterTemporaryWallet"
- """
- minterTemporaryWallet_aggregate(
- """distinct select on columns"""
- distinct_on: [minterTemporaryWallet_select_column!]
+"""aggregate min on columns"""
+type shopifyCampaignStatus_min_fields {
+ value: String
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+response of any mutation on the table "shopifyCampaignStatus"
+"""
+type shopifyCampaignStatus_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """data from the rows affected by the mutation"""
+ returning: [shopifyCampaignStatus!]!
+}
- """sort the rows by one or more columns"""
- order_by: [minterTemporaryWallet_order_by!]
+"""
+on_conflict condition type for table "shopifyCampaignStatus"
+"""
+input shopifyCampaignStatus_on_conflict {
+ constraint: shopifyCampaignStatus_constraint!
+ update_columns: [shopifyCampaignStatus_update_column!]! = []
+ where: shopifyCampaignStatus_bool_exp
+}
- """filter the rows returned"""
- where: minterTemporaryWallet_bool_exp
- ): minterTemporaryWallet_aggregate!
+"""Ordering options when selecting data from "shopifyCampaignStatus"."""
+input shopifyCampaignStatus_order_by {
+ value: order_by
+}
- """
- fetch data from the table: "minterTemporaryWallet" using primary key columns
- """
- minterTemporaryWallet_by_pk(
- """The blockchain address of the temporary wallet."""
- address: String!
- ): minterTemporaryWallet
+"""primary key columns input for table: shopifyCampaignStatus"""
+input shopifyCampaignStatus_pk_columns_input {
+ value: String!
+}
- """
- fetch data from the table: "nftTransfer"
- """
- nftTransfer(
- """distinct select on columns"""
- distinct_on: [nftTransfer_select_column!]
+"""
+select columns of table "shopifyCampaignStatus"
+"""
+enum shopifyCampaignStatus_select_column {
+ """column name"""
+ value
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+input type for updating data in table "shopifyCampaignStatus"
+"""
+input shopifyCampaignStatus_set_input {
+ value: String
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Streaming cursor of the table "shopifyCampaignStatus"
+"""
+input shopifyCampaignStatus_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: shopifyCampaignStatus_stream_cursor_value_input!
- """sort the rows by one or more columns"""
- order_by: [nftTransfer_order_by!]
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """filter the rows returned"""
- where: nftTransfer_bool_exp
- ): [nftTransfer!]!
+"""Initial value of the column from where the streaming should start"""
+input shopifyCampaignStatus_stream_cursor_value_input {
+ value: String
+}
- """
- fetch aggregated fields from the table: "nftTransfer"
- """
- nftTransfer_aggregate(
- """distinct select on columns"""
- distinct_on: [nftTransfer_select_column!]
+"""
+update columns of table "shopifyCampaignStatus"
+"""
+enum shopifyCampaignStatus_update_column {
+ """column name"""
+ value
+}
- """limit the number of rows returned"""
- limit: Int
+input shopifyCampaignStatus_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCampaignStatus_set_input
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """filter the rows which have to be updated"""
+ where: shopifyCampaignStatus_bool_exp!
+}
- """sort the rows by one or more columns"""
- order_by: [nftTransfer_order_by!]
+"""
+This table stores the link between the offline accounts and Shopify customer IDs. It allows organizers to manage customer data seamlessly across platforms without needing to handle sensitive personal information directly.
+"""
+type shopifyCustomer {
+ """
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
+ """
+ address: String!
- """filter the rows returned"""
- where: nftTransfer_bool_exp
- ): nftTransfer_aggregate!
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
- """fetch data from the table: "nftTransfer" using primary key columns"""
- nftTransfer_by_pk(id: uuid!): nftTransfer
+ """
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
+ """
+ customerId: String!
- """Fetches an object given its ID"""
- node(
- """The ID of an object"""
- id: ID!
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid!
- """
- Defines which locales should be returned.
-
- Note that `Node` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- ): Node
+ """
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
+ """
+ organizerId: String!
+ updated_at: timestamptz
+}
- """
- fetch data from the table: "order"
- """
- order(
- """distinct select on columns"""
- distinct_on: [order_select_column!]
+"""
+aggregated selection of "shopifyCustomer"
+"""
+type shopifyCustomer_aggregate {
+ aggregate: shopifyCustomer_aggregate_fields
+ nodes: [shopifyCustomer!]!
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+aggregate fields of "shopifyCustomer"
+"""
+type shopifyCustomer_aggregate_fields {
+ count(columns: [shopifyCustomer_select_column!], distinct: Boolean): Int!
+ max: shopifyCustomer_max_fields
+ min: shopifyCustomer_min_fields
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Boolean expression to filter rows from the table "shopifyCustomer". All fields are combined with a logical 'AND'.
+"""
+input shopifyCustomer_bool_exp {
+ _and: [shopifyCustomer_bool_exp!]
+ _not: shopifyCustomer_bool_exp
+ _or: [shopifyCustomer_bool_exp!]
+ address: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ customerId: String_comparison_exp
+ id: uuid_comparison_exp
+ organizerId: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
- """sort the rows by one or more columns"""
- order_by: [order_order_by!]
+"""
+unique or primary key constraints on table "shopifyCustomer"
+"""
+enum shopifyCustomer_constraint {
+ """
+ unique or primary key constraint on columns "customerId", "address", "organizerId"
+ """
+ shopifyCustomer_address_organizerId_customerId_key
+}
- """filter the rows returned"""
- where: order_bool_exp
- ): [order!]!
+"""
+input type for inserting data into table "shopifyCustomer"
+"""
+input shopifyCustomer_insert_input {
+ """
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
+ """
+ address: String
"""
- fetch data from the table: "orderStatus"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- orderStatus(
- """distinct select on columns"""
- distinct_on: [orderStatus_select_column!]
+ created_at: timestamptz
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
+ """
+ customerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid
- """sort the rows by one or more columns"""
- order_by: [orderStatus_order_by!]
+ """
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
- """filter the rows returned"""
- where: orderStatus_bool_exp
- ): [orderStatus!]!
+"""aggregate max on columns"""
+type shopifyCustomer_max_fields {
+ """
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
+ """
+ address: String
"""
- fetch aggregated fields from the table: "orderStatus"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- orderStatus_aggregate(
- """distinct select on columns"""
- distinct_on: [orderStatus_select_column!]
+ created_at: timestamptz
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
+ """
+ customerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid
- """sort the rows by one or more columns"""
- order_by: [orderStatus_order_by!]
+ """
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
- """filter the rows returned"""
- where: orderStatus_bool_exp
- ): orderStatus_aggregate!
+"""aggregate min on columns"""
+type shopifyCustomer_min_fields {
+ """
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
+ """
+ address: String
- """fetch data from the table: "orderStatus" using primary key columns"""
- orderStatus_by_pk(value: String!): orderStatus
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch aggregated fields from the table: "order"
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
"""
- order_aggregate(
- """distinct select on columns"""
- distinct_on: [order_select_column!]
+ customerId: String
- """limit the number of rows returned"""
- limit: Int
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
+ """
+ organizerId: String
+ updated_at: timestamptz
+}
- """sort the rows by one or more columns"""
- order_by: [order_order_by!]
+"""
+response of any mutation on the table "shopifyCustomer"
+"""
+type shopifyCustomer_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """filter the rows returned"""
- where: order_bool_exp
- ): order_aggregate!
+ """data from the rows affected by the mutation"""
+ returning: [shopifyCustomer!]!
+}
- """fetch data from the table: "order" using primary key columns"""
- order_by_pk(id: uuid!): order
+"""
+on_conflict condition type for table "shopifyCustomer"
+"""
+input shopifyCustomer_on_conflict {
+ constraint: shopifyCustomer_constraint!
+ update_columns: [shopifyCustomer_update_column!]! = []
+ where: shopifyCustomer_bool_exp
+}
- """Retrieve a single organizer"""
- organizer(
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: OrganizerWhereUniqueInput!
- ): Organizer
+"""Ordering options when selecting data from "shopifyCustomer"."""
+input shopifyCustomer_order_by {
+ address: order_by
+ created_at: order_by
+ customerId: order_by
+ id: order_by
+ organizerId: order_by
+ updated_at: order_by
+}
- """Retrieve document version"""
- organizerVersion(where: VersionWhereInput!): DocumentVersion
+"""
+select columns of table "shopifyCustomer"
+"""
+enum shopifyCustomer_select_column {
+ """column name"""
+ address
- """Retrieve multiple organizers"""
- organizers(
- after: String
- before: String
- first: Int
- last: Int
+ """column name"""
+ created_at
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: OrganizerOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: OrganizerWhereInput
- ): [Organizer!]!
+ """column name"""
+ customerId
- """Retrieve multiple organizers using the Relay connection interface"""
- organizersConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """column name"""
+ id
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: OrganizerOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: OrganizerWhereInput
- ): OrganizerConnection!
+ """column name"""
+ organizerId
- """Retrieve a single pack"""
- pack(
- """
- Defines which locales should be returned.
-
- Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: PackWhereUniqueInput!
- ): Pack
+ """column name"""
+ updated_at
+}
+"""
+input type for updating data in table "shopifyCustomer"
+"""
+input shopifyCustomer_set_input {
"""
- fetch data from the table: "packEventPassNft"
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
"""
- packEventPassNft(
- """distinct select on columns"""
- distinct_on: [packEventPassNft_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ address: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
- """sort the rows by one or more columns"""
- order_by: [packEventPassNft_order_by!]
+ """
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
+ """
+ customerId: String
- """filter the rows returned"""
- where: packEventPassNft_bool_exp
- ): [packEventPassNft!]!
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid
"""
- fetch aggregated fields from the table: "packEventPassNft"
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
"""
- packEventPassNft_aggregate(
- """distinct select on columns"""
- distinct_on: [packEventPassNft_select_column!]
+ organizerId: String
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+Streaming cursor of the table "shopifyCustomer"
+"""
+input shopifyCustomer_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: shopifyCustomer_stream_cursor_value_input!
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """sort the rows by one or more columns"""
- order_by: [packEventPassNft_order_by!]
+"""Initial value of the column from where the streaming should start"""
+input shopifyCustomer_stream_cursor_value_input {
+ """
+ Reference to the account table, ensuring that customer data is associated with a unique account address.
+ """
+ address: String
- """filter the rows returned"""
- where: packEventPassNft_bool_exp
- ): packEventPassNft_aggregate!
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch data from the table: "packEventPassNft" using primary key columns
+ The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.
"""
- packEventPassNft_by_pk(
- """Identifier for the event pass NFT."""
- eventPassNftId: uuid!
+ customerId: String
- """Identifier for the pack NFT supply."""
- packNftSupplyId: uuid!
- ): packEventPassNft
+ """Unique identifier for each entry, generated automatically as a UUID."""
+ id: uuid
"""
- fetch data from the table: "packNftContract"
+ Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.
"""
- packNftContract(
- """distinct select on columns"""
- distinct_on: [packNftContract_select_column!]
+ organizerId: String
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+update columns of table "shopifyCustomer"
+"""
+enum shopifyCustomer_update_column {
+ """column name"""
+ address
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ created_at
- """sort the rows by one or more columns"""
- order_by: [packNftContract_order_by!]
+ """column name"""
+ customerId
- """filter the rows returned"""
- where: packNftContract_bool_exp
- ): [packNftContract!]!
+ """column name"""
+ id
- """
- fetch data from the table: "packNftContractEventPass"
- """
- packNftContractEventPass(
- """distinct select on columns"""
- distinct_on: [packNftContractEventPass_select_column!]
+ """column name"""
+ organizerId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ updated_at
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+input shopifyCustomer_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyCustomer_set_input
- """sort the rows by one or more columns"""
- order_by: [packNftContractEventPass_order_by!]
+ """filter the rows which have to be updated"""
+ where: shopifyCustomer_bool_exp!
+}
- """filter the rows returned"""
- where: packNftContractEventPass_bool_exp
- ): [packNftContractEventPass!]!
+"""
+This table is used to link and authenticate queries from Shopify to an organizer in our system. It stores the unique Shopify domains associated with each organizer, allowing for efficient lookup and validation of incoming requests.
+"""
+type shopifyDomain {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch aggregated fields from the table: "packNftContractEventPass"
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
"""
- packNftContractEventPass_aggregate(
- """distinct select on columns"""
- distinct_on: [packNftContractEventPass_select_column!]
+ domain: String!
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String!
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+aggregated selection of "shopifyDomain"
+"""
+type shopifyDomain_aggregate {
+ aggregate: shopifyDomain_aggregate_fields
+ nodes: [shopifyDomain!]!
+}
- """sort the rows by one or more columns"""
- order_by: [packNftContractEventPass_order_by!]
+"""
+aggregate fields of "shopifyDomain"
+"""
+type shopifyDomain_aggregate_fields {
+ count(columns: [shopifyDomain_select_column!], distinct: Boolean): Int!
+ max: shopifyDomain_max_fields
+ min: shopifyDomain_min_fields
+}
- """filter the rows returned"""
- where: packNftContractEventPass_bool_exp
- ): packNftContractEventPass_aggregate!
+"""
+Boolean expression to filter rows from the table "shopifyDomain". All fields are combined with a logical 'AND'.
+"""
+input shopifyDomain_bool_exp {
+ _and: [shopifyDomain_bool_exp!]
+ _not: shopifyDomain_bool_exp
+ _or: [shopifyDomain_bool_exp!]
+ created_at: timestamptz_comparison_exp
+ domain: String_comparison_exp
+ organizerId: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "shopifyDomain"
+"""
+enum shopifyDomain_constraint {
"""
- fetch data from the table: "packNftContractEventPass" using primary key columns
+ unique or primary key constraint on columns "domain"
"""
- packNftContractEventPass_by_pk(
- """
- Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.
- """
- eventPassId: String!
+ shopifyDomain_pkey
+}
- """
- Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.
- """
- packNftContractId: uuid!
- ): packNftContractEventPass
+"""
+input type for inserting data into table "shopifyDomain"
+"""
+input shopifyDomain_insert_input {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch aggregated fields from the table: "packNftContract"
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
"""
- packNftContract_aggregate(
- """distinct select on columns"""
- distinct_on: [packNftContract_select_column!]
+ domain: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""aggregate max on columns"""
+type shopifyDomain_max_fields {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
- """sort the rows by one or more columns"""
- order_by: [packNftContract_order_by!]
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String
- """filter the rows returned"""
- where: packNftContract_bool_exp
- ): packNftContract_aggregate!
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String
+}
- """fetch data from the table: "packNftContract" using primary key columns"""
- packNftContract_by_pk(
- """Unique identifier for each pack NFT contract."""
- id: uuid!
- ): packNftContract
+"""aggregate min on columns"""
+type shopifyDomain_min_fields {
+ """
+ Timestamp indicating when the record was initially created, set automatically by the system.
+ """
+ created_at: timestamptz
"""
- fetch data from the table: "packNftSupply"
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
"""
- packNftSupply(
- """distinct select on columns"""
- distinct_on: [packNftSupply_select_column!]
+ domain: String
- """limit the number of rows returned"""
- limit: Int
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+response of any mutation on the table "shopifyDomain"
+"""
+type shopifyDomain_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """sort the rows by one or more columns"""
- order_by: [packNftSupply_order_by!]
+ """data from the rows affected by the mutation"""
+ returning: [shopifyDomain!]!
+}
- """filter the rows returned"""
- where: packNftSupply_bool_exp
- ): [packNftSupply!]!
+"""
+on_conflict condition type for table "shopifyDomain"
+"""
+input shopifyDomain_on_conflict {
+ constraint: shopifyDomain_constraint!
+ update_columns: [shopifyDomain_update_column!]! = []
+ where: shopifyDomain_bool_exp
+}
+
+"""Ordering options when selecting data from "shopifyDomain"."""
+input shopifyDomain_order_by {
+ created_at: order_by
+ domain: order_by
+ organizerId: order_by
+}
+"""primary key columns input for table: shopifyDomain"""
+input shopifyDomain_pk_columns_input {
"""
- fetch aggregated fields from the table: "packNftSupply"
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
"""
- packNftSupply_aggregate(
- """distinct select on columns"""
- distinct_on: [packNftSupply_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ domain: String!
+}
- """sort the rows by one or more columns"""
- order_by: [packNftSupply_order_by!]
+"""
+select columns of table "shopifyDomain"
+"""
+enum shopifyDomain_select_column {
+ """column name"""
+ created_at
- """filter the rows returned"""
- where: packNftSupply_bool_exp
- ): packNftSupply_aggregate!
+ """column name"""
+ domain
- """fetch data from the table: "packNftSupply" using primary key columns"""
- packNftSupply_by_pk(id: uuid!): packNftSupply
+ """column name"""
+ organizerId
+}
+"""
+input type for updating data in table "shopifyDomain"
+"""
+input shopifyDomain_set_input {
"""
- fetch data from the table: "packOrderSums"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- packOrderSums(
- """distinct select on columns"""
- distinct_on: [packOrderSums_select_column!]
+ created_at: timestamptz
- """limit the number of rows returned"""
- limit: Int
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String
+}
- """sort the rows by one or more columns"""
- order_by: [packOrderSums_order_by!]
+"""
+Streaming cursor of the table "shopifyDomain"
+"""
+input shopifyDomain_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: shopifyDomain_stream_cursor_value_input!
- """filter the rows returned"""
- where: packOrderSums_bool_exp
- ): [packOrderSums!]!
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+"""Initial value of the column from where the streaming should start"""
+input shopifyDomain_stream_cursor_value_input {
"""
- fetch aggregated fields from the table: "packOrderSums"
+ Timestamp indicating when the record was initially created, set automatically by the system.
"""
- packOrderSums_aggregate(
- """distinct select on columns"""
- distinct_on: [packOrderSums_select_column!]
+ created_at: timestamptz
- """limit the number of rows returned"""
- limit: Int
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.
+ """
+ organizerId: String
+}
- """sort the rows by one or more columns"""
- order_by: [packOrderSums_order_by!]
+"""
+update columns of table "shopifyDomain"
+"""
+enum shopifyDomain_update_column {
+ """column name"""
+ created_at
- """filter the rows returned"""
- where: packOrderSums_bool_exp
- ): packOrderSums_aggregate!
+ """column name"""
+ domain
- """fetch data from the table: "packOrderSums" using primary key columns"""
- packOrderSums_by_pk(packId: String!): packOrderSums
+ """column name"""
+ organizerId
+}
- """Retrieve document version"""
- packVersion(where: VersionWhereInput!): DocumentVersion
+input shopifyDomain_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: shopifyDomain_set_input
- """Retrieve multiple packs"""
- packs(
- after: String
- before: String
- first: Int
- last: Int
+ """filter the rows which have to be updated"""
+ where: shopifyDomain_bool_exp!
+}
- """
- Defines which locales should be returned.
-
- Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: PackOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: PackWhereInput
- ): [Pack!]!
+"""
+Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata.
+"""
+type stampNft {
+ chainId: String!
+ contractAddress: String!
+ created_at: timestamptz!
+ id: uuid!
- """Retrieve multiple packs using the Relay connection interface"""
- packsConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata(
+ """JSON select path"""
+ path: String
+ ): jsonb!
- """
- Defines which locales should be returned.
-
- Note that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: PackOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: PackWhereInput
- ): PackConnection!
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint!
"""
- fetch data from the table: "passAmount"
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
"""
- passAmount(
- """distinct select on columns"""
- distinct_on: [passAmount_select_column!]
+ tokenUri: String
+ updated_at: timestamptz!
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+Represents stamp NFT contracts used for marketing purposes. Each contract is associated with a type indicating the nature of the campaign, like a purchase completion event.
+"""
+type stampNftContract {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
+ """
+ campaignId: String!
- """sort the rows by one or more columns"""
- order_by: [passAmount_order_by!]
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String!
- """filter the rows returned"""
- where: passAmount_bool_exp
- ): [passAmount!]!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String!
+ created_at: timestamptz!
+ id: uuid
"""
- fetch aggregated fields from the table: "passAmount"
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- passAmount_aggregate(
- """distinct select on columns"""
- distinct_on: [passAmount_select_column!]
+ metadata(
+ """JSON select path"""
+ path: String
+ ): jsonb!
+ organizerId: String!
- """limit the number of rows returned"""
- limit: Int
+ """
+ The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.
+ """
+ type: stampNftContractType_enum!
+ updated_at: timestamptz!
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Defines contract types for the stampNftContract, representing various marketing campaigns or actions.
+"""
+type stampNftContractType {
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String!
+}
- """sort the rows by one or more columns"""
- order_by: [passAmount_order_by!]
+"""
+aggregated selection of "stampNftContractType"
+"""
+type stampNftContractType_aggregate {
+ aggregate: stampNftContractType_aggregate_fields
+ nodes: [stampNftContractType!]!
+}
- """filter the rows returned"""
- where: passAmount_bool_exp
- ): passAmount_aggregate!
+"""
+aggregate fields of "stampNftContractType"
+"""
+type stampNftContractType_aggregate_fields {
+ count(columns: [stampNftContractType_select_column!], distinct: Boolean): Int!
+ max: stampNftContractType_max_fields
+ min: stampNftContractType_min_fields
+}
- """fetch data from the table: "passAmount" using primary key columns"""
- passAmount_by_pk(id: uuid!): passAmount
+"""
+Boolean expression to filter rows from the table "stampNftContractType". All fields are combined with a logical 'AND'.
+"""
+input stampNftContractType_bool_exp {
+ _and: [stampNftContractType_bool_exp!]
+ _not: stampNftContractType_bool_exp
+ _or: [stampNftContractType_bool_exp!]
+ value: String_comparison_exp
+}
+"""
+unique or primary key constraints on table "stampNftContractType"
+"""
+enum stampNftContractType_constraint {
"""
- fetch data from the table: "passPricing"
+ unique or primary key constraint on columns "value"
"""
- passPricing(
- """distinct select on columns"""
- distinct_on: [passPricing_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ stampNftContractType_pkey
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+enum stampNftContractType_enum {
+ SHOPIFY_PURCHASE_COMPLETED
+}
- """sort the rows by one or more columns"""
- order_by: [passPricing_order_by!]
+"""
+Boolean expression to compare columns of type "stampNftContractType_enum". All fields are combined with logical 'AND'.
+"""
+input stampNftContractType_enum_comparison_exp {
+ _eq: stampNftContractType_enum
+ _in: [stampNftContractType_enum!]
+ _is_null: Boolean
+ _neq: stampNftContractType_enum
+ _nin: [stampNftContractType_enum!]
+}
- """filter the rows returned"""
- where: passPricing_bool_exp
- ): [passPricing!]!
+"""
+input type for inserting data into table "stampNftContractType"
+"""
+input stampNftContractType_insert_input {
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String
+}
+"""aggregate max on columns"""
+type stampNftContractType_max_fields {
"""
- fetch aggregated fields from the table: "passPricing"
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
"""
- passPricing_aggregate(
- """distinct select on columns"""
- distinct_on: [passPricing_select_column!]
+ value: String
+}
- """limit the number of rows returned"""
- limit: Int
+"""aggregate min on columns"""
+type stampNftContractType_min_fields {
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+response of any mutation on the table "stampNftContractType"
+"""
+type stampNftContractType_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """sort the rows by one or more columns"""
- order_by: [passPricing_order_by!]
+ """data from the rows affected by the mutation"""
+ returning: [stampNftContractType!]!
+}
- """filter the rows returned"""
- where: passPricing_bool_exp
- ): passPricing_aggregate!
+"""
+on_conflict condition type for table "stampNftContractType"
+"""
+input stampNftContractType_on_conflict {
+ constraint: stampNftContractType_constraint!
+ update_columns: [stampNftContractType_update_column!]! = []
+ where: stampNftContractType_bool_exp
+}
- """fetch data from the table: "passPricing" using primary key columns"""
- passPricing_by_pk(id: uuid!): passPricing
+"""Ordering options when selecting data from "stampNftContractType"."""
+input stampNftContractType_order_by {
+ value: order_by
+}
+"""primary key columns input for table: stampNftContractType"""
+input stampNftContractType_pk_columns_input {
"""
- fetch data from the table: "pendingOrder"
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
"""
- pendingOrder(
- """distinct select on columns"""
- distinct_on: [pendingOrder_select_column!]
+ value: String!
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+select columns of table "stampNftContractType"
+"""
+enum stampNftContractType_select_column {
+ """column name"""
+ value
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+input type for updating data in table "stampNftContractType"
+"""
+input stampNftContractType_set_input {
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String
+}
- """sort the rows by one or more columns"""
- order_by: [pendingOrder_order_by!]
+"""
+Streaming cursor of the table "stampNftContractType"
+"""
+input stampNftContractType_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: stampNftContractType_stream_cursor_value_input!
- """filter the rows returned"""
- where: pendingOrder_bool_exp
- ): [pendingOrder!]!
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
+"""Initial value of the column from where the streaming should start"""
+input stampNftContractType_stream_cursor_value_input {
"""
- fetch aggregated fields from the table: "pendingOrder"
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
"""
- pendingOrder_aggregate(
- """distinct select on columns"""
- distinct_on: [pendingOrder_select_column!]
+ value: String
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+update columns of table "stampNftContractType"
+"""
+enum stampNftContractType_update_column {
+ """column name"""
+ value
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+input stampNftContractType_updates {
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContractType_set_input
- """sort the rows by one or more columns"""
- order_by: [pendingOrder_order_by!]
+ """filter the rows which have to be updated"""
+ where: stampNftContractType_bool_exp!
+}
- """filter the rows returned"""
- where: pendingOrder_bool_exp
- ): pendingOrder_aggregate!
+"""
+aggregated selection of "stampNftContract"
+"""
+type stampNftContract_aggregate {
+ aggregate: stampNftContract_aggregate_fields
+ nodes: [stampNftContract!]!
+}
- """fetch data from the table: "pendingOrder" using primary key columns"""
- pendingOrder_by_pk(id: uuid!): pendingOrder
+"""
+aggregate fields of "stampNftContract"
+"""
+type stampNftContract_aggregate_fields {
+ count(columns: [stampNftContract_select_column!], distinct: Boolean): Int!
+ max: stampNftContract_max_fields
+ min: stampNftContract_min_fields
+}
+"""append existing jsonb value of filtered columns with new jsonb value"""
+input stampNftContract_append_input {
"""
- fetch data from the table: "roleAssignment"
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- roleAssignment(
- """distinct select on columns"""
- distinct_on: [roleAssignment_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [roleAssignment_order_by!]
+ metadata: jsonb
+}
- """filter the rows returned"""
- where: roleAssignment_bool_exp
- ): [roleAssignment!]!
+"""
+Boolean expression to filter rows from the table "stampNftContract". All fields are combined with a logical 'AND'.
+"""
+input stampNftContract_bool_exp {
+ _and: [stampNftContract_bool_exp!]
+ _not: stampNftContract_bool_exp
+ _or: [stampNftContract_bool_exp!]
+ activityWebhookId: String_comparison_exp
+ activityWebhookSigningKey: String_comparison_exp
+ campaignId: String_comparison_exp
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ metadata: jsonb_comparison_exp
+ organizerId: String_comparison_exp
+ type: stampNftContractType_enum_comparison_exp
+ updated_at: timestamptz_comparison_exp
+}
+"""
+unique or primary key constraints on table "stampNftContract"
+"""
+enum stampNftContract_constraint {
"""
- fetch aggregated fields from the table: "roleAssignment"
+ unique or primary key constraint on columns "activityWebhookSigningKey"
"""
- roleAssignment_aggregate(
- """distinct select on columns"""
- distinct_on: [roleAssignment_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ stampNftContract_activityWebhookSigningKey_key
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress"
+ """
+ stampNftContract_pkey
+}
- """sort the rows by one or more columns"""
- order_by: [roleAssignment_order_by!]
+"""
+delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+"""
+input stampNftContract_delete_at_path_input {
+ """
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
+ """
+ metadata: [String!]
+}
- """filter the rows returned"""
- where: roleAssignment_bool_exp
- ): roleAssignment_aggregate!
+"""
+delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+"""
+input stampNftContract_delete_elem_input {
+ """
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
+ """
+ metadata: Int
+}
+"""
+delete key/value pair or string element. key/value pairs are matched based on their key value
+"""
+input stampNftContract_delete_key_input {
"""
- fetch data from the table: "roles"
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- roles(
- """distinct select on columns"""
- distinct_on: [roles_select_column!]
+ metadata: String
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+input type for inserting data into table "stampNftContract"
+"""
+input stampNftContract_insert_input {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
+ """
+ campaignId: String
- """sort the rows by one or more columns"""
- order_by: [roles_order_by!]
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String
- """filter the rows returned"""
- where: roles_bool_exp
- ): [roles!]!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- fetch aggregated fields from the table: "roles"
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- roles_aggregate(
- """distinct select on columns"""
- distinct_on: [roles_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ metadata: jsonb
+ organizerId: String
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """
+ The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.
+ """
+ type: stampNftContractType_enum
+ updated_at: timestamptz
+}
- """sort the rows by one or more columns"""
- order_by: [roles_order_by!]
+"""aggregate max on columns"""
+type stampNftContract_max_fields {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
- """filter the rows returned"""
- where: roles_bool_exp
- ): roles_aggregate!
+ """
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
+ """
+ campaignId: String
- """fetch data from the table: "roles" using primary key columns"""
- roles_by_pk(
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String!
- ): roles
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String
- """Retrieve a single scheduledOperation"""
- scheduledOperation(
- """
- Defines which locales should be returned.
-
- Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: ScheduledOperationWhereUniqueInput!
- ): ScheduledOperation
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ updated_at: timestamptz
+}
- """Retrieve multiple scheduledOperations"""
- scheduledOperations(
- after: String
- before: String
- first: Int
- last: Int
+"""aggregate min on columns"""
+type stampNftContract_min_fields {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
- """
- Defines which locales should be returned.
-
- Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ScheduledOperationOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ScheduledOperationWhereInput
- ): [ScheduledOperation!]!
+ """
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
+ """
+ campaignId: String
"""
- Retrieve multiple scheduledOperations using the Relay connection interface
+ The identifier of the blockchain network where the contract is deployed.
"""
- scheduledOperationsConnection(
- after: String
- before: String
- first: Int
- last: Int
+ chainId: String
- """
- Defines which locales should be returned.
-
- Note that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ScheduledOperationOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ScheduledOperationWhereInput
- ): ScheduledOperationConnection!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+ organizerId: String
+ updated_at: timestamptz
+}
- """Retrieve a single scheduledRelease"""
- scheduledRelease(
- """
- Defines which locales should be returned.
-
- Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: ScheduledReleaseWhereUniqueInput!
- ): ScheduledRelease
+"""
+response of any mutation on the table "stampNftContract"
+"""
+type stampNftContract_mutation_response {
+ """number of rows affected by the mutation"""
+ affected_rows: Int!
- """Retrieve multiple scheduledReleases"""
- scheduledReleases(
- after: String
- before: String
- first: Int
- last: Int
+ """data from the rows affected by the mutation"""
+ returning: [stampNftContract!]!
+}
- """
- Defines which locales should be returned.
-
- Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ScheduledReleaseOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ScheduledReleaseWhereInput
- ): [ScheduledRelease!]!
+"""
+on_conflict condition type for table "stampNftContract"
+"""
+input stampNftContract_on_conflict {
+ constraint: stampNftContract_constraint!
+ update_columns: [stampNftContract_update_column!]! = []
+ where: stampNftContract_bool_exp
+}
+
+"""Ordering options when selecting data from "stampNftContract"."""
+input stampNftContract_order_by {
+ activityWebhookId: order_by
+ activityWebhookSigningKey: order_by
+ campaignId: order_by
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ id: order_by
+ metadata: order_by
+ organizerId: order_by
+ type: order_by
+ updated_at: order_by
+}
+"""primary key columns input for table: stampNftContract"""
+input stampNftContract_pk_columns_input {
"""
- Retrieve multiple scheduledReleases using the Relay connection interface
+ The identifier of the blockchain network where the contract is deployed.
"""
- scheduledReleasesConnection(
- after: String
- before: String
- first: Int
- last: Int
+ chainId: String!
- """
- Defines which locales should be returned.
-
- Note that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: ScheduledReleaseOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: ScheduledReleaseWhereInput
- ): ScheduledReleaseConnection!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String!
+}
+"""prepend existing jsonb value of filtered columns with new jsonb value"""
+input stampNftContract_prepend_input {
"""
- fetch data from the table: "stripeCheckoutSession"
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- stripeCheckoutSession(
- """distinct select on columns"""
- distinct_on: [stripeCheckoutSession_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ metadata: jsonb
+}
- """sort the rows by one or more columns"""
- order_by: [stripeCheckoutSession_order_by!]
+"""
+select columns of table "stampNftContract"
+"""
+enum stampNftContract_select_column {
+ """column name"""
+ activityWebhookId
- """filter the rows returned"""
- where: stripeCheckoutSession_bool_exp
- ): [stripeCheckoutSession!]!
+ """column name"""
+ activityWebhookSigningKey
- """
- fetch data from the table: "stripeCheckoutSessionType"
- """
- stripeCheckoutSessionType(
- """distinct select on columns"""
- distinct_on: [stripeCheckoutSessionType_select_column!]
+ """column name"""
+ campaignId
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ chainId
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ contractAddress
- """sort the rows by one or more columns"""
- order_by: [stripeCheckoutSessionType_order_by!]
+ """column name"""
+ created_at
- """filter the rows returned"""
- where: stripeCheckoutSessionType_bool_exp
- ): [stripeCheckoutSessionType!]!
+ """column name"""
+ id
- """
- fetch aggregated fields from the table: "stripeCheckoutSessionType"
- """
- stripeCheckoutSessionType_aggregate(
- """distinct select on columns"""
- distinct_on: [stripeCheckoutSessionType_select_column!]
+ """column name"""
+ metadata
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ organizerId
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ type
- """sort the rows by one or more columns"""
- order_by: [stripeCheckoutSessionType_order_by!]
+ """column name"""
+ updated_at
+}
- """filter the rows returned"""
- where: stripeCheckoutSessionType_bool_exp
- ): stripeCheckoutSessionType_aggregate!
+"""
+input type for updating data in table "stampNftContract"
+"""
+input stampNftContract_set_input {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
"""
- fetch data from the table: "stripeCheckoutSessionType" using primary key columns
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
"""
- stripeCheckoutSessionType_by_pk(
- """Type value."""
- value: String!
- ): stripeCheckoutSessionType
+ campaignId: String
"""
- fetch aggregated fields from the table: "stripeCheckoutSession"
+ The identifier of the blockchain network where the contract is deployed.
"""
- stripeCheckoutSession_aggregate(
- """distinct select on columns"""
- distinct_on: [stripeCheckoutSession_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
-
- """sort the rows by one or more columns"""
- order_by: [stripeCheckoutSession_order_by!]
+ chainId: String
- """filter the rows returned"""
- where: stripeCheckoutSession_bool_exp
- ): stripeCheckoutSession_aggregate!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
"""
- fetch data from the table: "stripeCheckoutSession" using primary key columns
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
"""
- stripeCheckoutSession_by_pk(
- """Unique identifier for the Stripe Checkout Session."""
- stripeSessionId: String!
- ): stripeCheckoutSession
+ metadata: jsonb
+ organizerId: String
"""
- fetch data from the table: "stripeCustomer"
+ The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.
"""
- stripeCustomer(
- """distinct select on columns"""
- distinct_on: [stripeCustomer_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
+ type: stampNftContractType_enum
+ updated_at: timestamptz
+}
- """skip the first n rows. Use only with order_by"""
- offset: Int
+"""
+Streaming cursor of the table "stampNftContract"
+"""
+input stampNftContract_stream_cursor_input {
+ """Stream column input with initial value"""
+ initial_value: stampNftContract_stream_cursor_value_input!
- """sort the rows by one or more columns"""
- order_by: [stripeCustomer_order_by!]
+ """cursor ordering"""
+ ordering: cursor_ordering
+}
- """filter the rows returned"""
- where: stripeCustomer_bool_exp
- ): [stripeCustomer!]!
+"""Initial value of the column from where the streaming should start"""
+input stampNftContract_stream_cursor_value_input {
+ activityWebhookId: String
+ activityWebhookSigningKey: String
"""
- fetch aggregated fields from the table: "stripeCustomer"
+ A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.
"""
- stripeCustomer_aggregate(
- """distinct select on columns"""
- distinct_on: [stripeCustomer_select_column!]
-
- """limit the number of rows returned"""
- limit: Int
-
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ campaignId: String
- """sort the rows by one or more columns"""
- order_by: [stripeCustomer_order_by!]
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String
- """filter the rows returned"""
- where: stripeCustomer_bool_exp
- ): stripeCustomer_aggregate!
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
- """fetch data from the table: "stripeCustomer" using primary key columns"""
- stripeCustomer_by_pk(
- """Unique identifier for the Stripe Customer."""
- stripeCustomerId: String!
- ): stripeCustomer
+ """
+ Structured metadata associated with the contract, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
+ organizerId: String
"""
- fetch data from the table: "timezone"
+ The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.
"""
- timezone(
- """distinct select on columns"""
- distinct_on: [timezone_select_column!]
+ type: stampNftContractType_enum
+ updated_at: timestamptz
+}
- """limit the number of rows returned"""
- limit: Int
+"""
+update columns of table "stampNftContract"
+"""
+enum stampNftContract_update_column {
+ """column name"""
+ activityWebhookId
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ activityWebhookSigningKey
- """sort the rows by one or more columns"""
- order_by: [timezone_order_by!]
+ """column name"""
+ campaignId
- """filter the rows returned"""
- where: timezone_bool_exp
- ): [timezone!]!
+ """column name"""
+ chainId
- """
- fetch aggregated fields from the table: "timezone"
- """
- timezone_aggregate(
- """distinct select on columns"""
- distinct_on: [timezone_select_column!]
+ """column name"""
+ contractAddress
- """limit the number of rows returned"""
- limit: Int
+ """column name"""
+ created_at
- """skip the first n rows. Use only with order_by"""
- offset: Int
+ """column name"""
+ id
- """sort the rows by one or more columns"""
- order_by: [timezone_order_by!]
+ """column name"""
+ metadata
- """filter the rows returned"""
- where: timezone_bool_exp
- ): timezone_aggregate!
+ """column name"""
+ organizerId
- """fetch data from the table: "timezone" using primary key columns"""
- timezone_by_pk(value: String!): timezone
+ """column name"""
+ type
- """Retrieve a single user"""
- user(
- """
- Defines which locales should be returned.
-
- Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: UserWhereUniqueInput!
- ): User
+ """column name"""
+ updated_at
+}
- """Retrieve multiple users"""
- users(
- after: String
- before: String
- first: Int
- last: Int
+input stampNftContract_updates {
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNftContract_append_input
- """
- Defines which locales should be returned.
-
- Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: UserOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: UserWhereInput
- ): [User!]!
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: stampNftContract_delete_at_path_input
- """Retrieve multiple users using the Relay connection interface"""
- usersConnection(
- after: String
- before: String
- first: Int
- last: Int
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: stampNftContract_delete_elem_input
- """
- Defines which locales should be returned.
-
- Note that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
- For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- orderBy: UserOrderByInput
- skip: Int
- stage: Stage! = PUBLISHED
- where: UserWhereInput
- ): UserConnection!
-}
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNftContract_delete_key_input
-"""
-Table to assign roles to accounts, allowing a many-to-many relationship. Each account can have multiple roles and each role can be assigned to multiple accounts. This is part of the RBAC system integration.
-"""
-type roleAssignment {
- accountId: uuid!
- created_at: timestamptz!
- eventId: String!
- id: uuid!
- invitedById: uuid!
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNftContract_prepend_input
- """An object relationship"""
- inviter: account!
- organizer(
- """
- Defines which locales should be returned.
-
- Note that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
- The first locale matching the provided list will be returned, entries with non matching locales will be filtered out.
-
- This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
- """
- locales: [Locale!]! = [en]
- stage: Stage! = PUBLISHED
- where: OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer!
- ): Organizer
- organizerId: String!
- role: roles_enum!
+ """sets the columns of the filtered rows to the given values"""
+ _set: stampNftContract_set_input
+
+ """filter the rows which have to be updated"""
+ where: stampNftContract_bool_exp!
}
"""
-aggregated selection of "roleAssignment"
+Tracks the current ownership and quantities of each token under a stampNftContract. Each row associates a token (identified by tokenId and contractAddress) with an owner and the quantity they hold.
"""
-type roleAssignment_aggregate {
- aggregate: roleAssignment_aggregate_fields
- nodes: [roleAssignment!]!
-}
+type stampNftSupply {
+ """The quantity of the token held by the current owner."""
+ amount: Int!
+ chainId: String!
+ contractAddress: String!
+ created_at: timestamptz!
-input roleAssignment_aggregate_bool_exp {
- count: roleAssignment_aggregate_bool_exp_count
-}
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String!
+ error: String
+ id: uuid!
-input roleAssignment_aggregate_bool_exp_count {
- arguments: [roleAssignment_select_column!]
- distinct: Boolean
- filter: roleAssignment_bool_exp
- predicate: Int_comparison_exp!
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ status: nftStatus_enum
+ tokenId: bigint!
+ updated_at: timestamptz!
}
"""
-aggregate fields of "roleAssignment"
+aggregated selection of "stampNftSupply"
"""
-type roleAssignment_aggregate_fields {
- count(columns: [roleAssignment_select_column!], distinct: Boolean): Int!
- max: roleAssignment_max_fields
- min: roleAssignment_min_fields
+type stampNftSupply_aggregate {
+ aggregate: stampNftSupply_aggregate_fields
+ nodes: [stampNftSupply!]!
}
"""
-order by aggregate values of table "roleAssignment"
+aggregate fields of "stampNftSupply"
"""
-input roleAssignment_aggregate_order_by {
- count: order_by
- max: roleAssignment_max_order_by
- min: roleAssignment_min_order_by
+type stampNftSupply_aggregate_fields {
+ avg: stampNftSupply_avg_fields
+ count(columns: [stampNftSupply_select_column!], distinct: Boolean): Int!
+ max: stampNftSupply_max_fields
+ min: stampNftSupply_min_fields
+ stddev: stampNftSupply_stddev_fields
+ stddev_pop: stampNftSupply_stddev_pop_fields
+ stddev_samp: stampNftSupply_stddev_samp_fields
+ sum: stampNftSupply_sum_fields
+ var_pop: stampNftSupply_var_pop_fields
+ var_samp: stampNftSupply_var_samp_fields
+ variance: stampNftSupply_variance_fields
}
-"""
-input type for inserting array relation for remote table "roleAssignment"
-"""
-input roleAssignment_arr_rel_insert_input {
- data: [roleAssignment_insert_input!]!
-
- """upsert condition"""
- on_conflict: roleAssignment_on_conflict
+"""aggregate avg on columns"""
+type stampNftSupply_avg_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
}
"""
-Boolean expression to filter rows from the table "roleAssignment". All fields are combined with a logical 'AND'.
+Boolean expression to filter rows from the table "stampNftSupply". All fields are combined with a logical 'AND'.
"""
-input roleAssignment_bool_exp {
- _and: [roleAssignment_bool_exp!]
- _not: roleAssignment_bool_exp
- _or: [roleAssignment_bool_exp!]
- accountId: uuid_comparison_exp
+input stampNftSupply_bool_exp {
+ _and: [stampNftSupply_bool_exp!]
+ _not: stampNftSupply_bool_exp
+ _or: [stampNftSupply_bool_exp!]
+ amount: Int_comparison_exp
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
created_at: timestamptz_comparison_exp
- eventId: String_comparison_exp
+ currentOwnerAddress: String_comparison_exp
+ error: String_comparison_exp
id: uuid_comparison_exp
- invitedById: uuid_comparison_exp
- inviter: account_bool_exp
- organizerId: String_comparison_exp
- role: roles_enum_comparison_exp
+ lastNftTransferId: uuid_comparison_exp
+ status: nftStatus_enum_comparison_exp
+ tokenId: bigint_comparison_exp
+ updated_at: timestamptz_comparison_exp
}
"""
-unique or primary key constraints on table "roleAssignment"
+unique or primary key constraints on table "stampNftSupply"
"""
-enum roleAssignment_constraint {
+enum stampNftSupply_constraint {
"""
- unique or primary key constraint on columns "organizerId", "accountId", "role", "eventId"
+ unique or primary key constraint on columns "id"
"""
- unique_role_assignment
+ stampNftSupply_pkey
+
+ """
+ unique or primary key constraint on columns "currentOwnerAddress", "chainId", "contractAddress", "tokenId"
+ """
+ stampNftSupply_tokenId_contractAddress_chainId_currentOwner_key
}
"""
-input type for inserting data into table "roleAssignment"
+input type for incrementing numeric columns in table "stampNftSupply"
"""
-input roleAssignment_insert_input {
- accountId: uuid
+input stampNftSupply_inc_input {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ tokenId: bigint
+}
+
+"""
+input type for inserting data into table "stampNftSupply"
+"""
+input stampNftSupply_insert_input {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ chainId: String
+ contractAddress: String
created_at: timestamptz
- eventId: String
+
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String
+ error: String
id: uuid
- invitedById: uuid
- inviter: account_obj_rel_insert_input
- organizerId: String
- role: roles_enum
+
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ status: nftStatus_enum
+ tokenId: bigint
+ updated_at: timestamptz
}
"""aggregate max on columns"""
-type roleAssignment_max_fields {
- accountId: uuid
+type stampNftSupply_max_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ chainId: String
+ contractAddress: String
created_at: timestamptz
- eventId: String
+
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String
+ error: String
id: uuid
- invitedById: uuid
- organizerId: String
-}
-"""
-order by max() on columns of table "roleAssignment"
-"""
-input roleAssignment_max_order_by {
- accountId: order_by
- created_at: order_by
- eventId: order_by
- id: order_by
- invitedById: order_by
- organizerId: order_by
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ tokenId: bigint
+ updated_at: timestamptz
}
"""aggregate min on columns"""
-type roleAssignment_min_fields {
- accountId: uuid
+type stampNftSupply_min_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ chainId: String
+ contractAddress: String
created_at: timestamptz
- eventId: String
+
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String
+ error: String
id: uuid
- invitedById: uuid
- organizerId: String
-}
-"""
-order by min() on columns of table "roleAssignment"
-"""
-input roleAssignment_min_order_by {
- accountId: order_by
- created_at: order_by
- eventId: order_by
- id: order_by
- invitedById: order_by
- organizerId: order_by
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ tokenId: bigint
+ updated_at: timestamptz
}
"""
-response of any mutation on the table "roleAssignment"
+response of any mutation on the table "stampNftSupply"
"""
-type roleAssignment_mutation_response {
+type stampNftSupply_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [roleAssignment!]!
+ returning: [stampNftSupply!]!
}
"""
-on_conflict condition type for table "roleAssignment"
+on_conflict condition type for table "stampNftSupply"
"""
-input roleAssignment_on_conflict {
- constraint: roleAssignment_constraint!
- update_columns: [roleAssignment_update_column!]! = []
- where: roleAssignment_bool_exp
+input stampNftSupply_on_conflict {
+ constraint: stampNftSupply_constraint!
+ update_columns: [stampNftSupply_update_column!]! = []
+ where: stampNftSupply_bool_exp
}
-"""Ordering options when selecting data from "roleAssignment"."""
-input roleAssignment_order_by {
- accountId: order_by
+"""Ordering options when selecting data from "stampNftSupply"."""
+input stampNftSupply_order_by {
+ amount: order_by
+ chainId: order_by
+ contractAddress: order_by
created_at: order_by
- eventId: order_by
+ currentOwnerAddress: order_by
+ error: order_by
id: order_by
- invitedById: order_by
- inviter: account_order_by
- organizerId: order_by
- role: order_by
+ lastNftTransferId: order_by
+ status: order_by
+ tokenId: order_by
+ updated_at: order_by
+}
+
+"""primary key columns input for table: stampNftSupply"""
+input stampNftSupply_pk_columns_input {
+ id: uuid!
}
"""
-select columns of table "roleAssignment"
+select columns of table "stampNftSupply"
"""
-enum roleAssignment_select_column {
+enum stampNftSupply_select_column {
"""column name"""
- accountId
+ amount
+
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
"""column name"""
created_at
"""column name"""
- eventId
+ currentOwnerAddress
+
+ """column name"""
+ error
"""column name"""
id
"""column name"""
- invitedById
+ lastNftTransferId
"""column name"""
- organizerId
+ status
"""column name"""
- role
+ tokenId
+
+ """column name"""
+ updated_at
}
"""
-input type for updating data in table "roleAssignment"
+input type for updating data in table "stampNftSupply"
"""
-input roleAssignment_set_input {
- accountId: uuid
+input stampNftSupply_set_input {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ chainId: String
+ contractAddress: String
created_at: timestamptz
- eventId: String
+
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String
+ error: String
id: uuid
- invitedById: uuid
- organizerId: String
- role: roles_enum
+
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ status: nftStatus_enum
+ tokenId: bigint
+ updated_at: timestamptz
+}
+
+"""aggregate stddev on columns"""
+type stampNftSupply_stddev_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
+}
+
+"""aggregate stddev_pop on columns"""
+type stampNftSupply_stddev_pop_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
+}
+
+"""aggregate stddev_samp on columns"""
+type stampNftSupply_stddev_samp_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
}
"""
-Streaming cursor of the table "roleAssignment"
+Streaming cursor of the table "stampNftSupply"
"""
-input roleAssignment_stream_cursor_input {
+input stampNftSupply_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: roleAssignment_stream_cursor_value_input!
+ initial_value: stampNftSupply_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input roleAssignment_stream_cursor_value_input {
- accountId: uuid
+input stampNftSupply_stream_cursor_value_input {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ chainId: String
+ contractAddress: String
created_at: timestamptz
- eventId: String
+
+ """The blockchain address of the current owner of the token."""
+ currentOwnerAddress: String
+ error: String
id: uuid
- invitedById: uuid
- organizerId: String
- role: roles_enum
+
+ """
+ Reference to the last transfer event for this token, providing a link to detailed transfer information.
+ """
+ lastNftTransferId: uuid
+ status: nftStatus_enum
+ tokenId: bigint
+ updated_at: timestamptz
+}
+
+"""aggregate sum on columns"""
+type stampNftSupply_sum_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Int
+ tokenId: bigint
}
"""
-update columns of table "roleAssignment"
+update columns of table "stampNftSupply"
"""
-enum roleAssignment_update_column {
+enum stampNftSupply_update_column {
"""column name"""
- accountId
+ amount
+
+ """column name"""
+ chainId
+
+ """column name"""
+ contractAddress
"""column name"""
created_at
"""column name"""
- eventId
+ currentOwnerAddress
+
+ """column name"""
+ error
"""column name"""
id
"""column name"""
- invitedById
+ lastNftTransferId
"""column name"""
- organizerId
+ status
"""column name"""
- role
+ tokenId
+
+ """column name"""
+ updated_at
}
-input roleAssignment_updates {
+input stampNftSupply_updates {
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNftSupply_inc_input
+
"""sets the columns of the filtered rows to the given values"""
- _set: roleAssignment_set_input
+ _set: stampNftSupply_set_input
"""filter the rows which have to be updated"""
- where: roleAssignment_bool_exp!
+ where: stampNftSupply_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type stampNftSupply_var_pop_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
+}
+
+"""aggregate var_samp on columns"""
+type stampNftSupply_var_samp_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
+}
+
+"""aggregate variance on columns"""
+type stampNftSupply_variance_fields {
+ """The quantity of the token held by the current owner."""
+ amount: Float
+ tokenId: Float
}
"""
-Stores user roles defining access levels and permissions within the Offline platform.
+aggregated selection of "stampNft"
"""
-type roles {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String!
+type stampNft_aggregate {
+ aggregate: stampNft_aggregate_fields
+ nodes: [stampNft!]!
}
"""
-aggregated selection of "roles"
+aggregate fields of "stampNft"
"""
-type roles_aggregate {
- aggregate: roles_aggregate_fields
- nodes: [roles!]!
+type stampNft_aggregate_fields {
+ avg: stampNft_avg_fields
+ count(columns: [stampNft_select_column!], distinct: Boolean): Int!
+ max: stampNft_max_fields
+ min: stampNft_min_fields
+ stddev: stampNft_stddev_fields
+ stddev_pop: stampNft_stddev_pop_fields
+ stddev_samp: stampNft_stddev_samp_fields
+ sum: stampNft_sum_fields
+ var_pop: stampNft_var_pop_fields
+ var_samp: stampNft_var_samp_fields
+ variance: stampNft_variance_fields
+}
+
+"""append existing jsonb value of filtered columns with new jsonb value"""
+input stampNft_append_input {
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
+}
+
+"""aggregate avg on columns"""
+type stampNft_avg_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
}
"""
-aggregate fields of "roles"
+Boolean expression to filter rows from the table "stampNft". All fields are combined with a logical 'AND'.
"""
-type roles_aggregate_fields {
- count(columns: [roles_select_column!], distinct: Boolean): Int!
- max: roles_max_fields
- min: roles_min_fields
+input stampNft_bool_exp {
+ _and: [stampNft_bool_exp!]
+ _not: stampNft_bool_exp
+ _or: [stampNft_bool_exp!]
+ chainId: String_comparison_exp
+ contractAddress: String_comparison_exp
+ created_at: timestamptz_comparison_exp
+ id: uuid_comparison_exp
+ metadata: jsonb_comparison_exp
+ tokenId: bigint_comparison_exp
+ tokenUri: String_comparison_exp
+ updated_at: timestamptz_comparison_exp
}
"""
-Boolean expression to filter rows from the table "roles". All fields are combined with a logical 'AND'.
+unique or primary key constraints on table "stampNft"
"""
-input roles_bool_exp {
- _and: [roles_bool_exp!]
- _not: roles_bool_exp
- _or: [roles_bool_exp!]
- value: String_comparison_exp
+enum stampNft_constraint {
+ """
+ unique or primary key constraint on columns "chainId", "contractAddress", "tokenId"
+ """
+ stampNft_contractAddress_tokenId_chainId_key
+
+ """
+ unique or primary key constraint on columns "id"
+ """
+ stampNft_pkey
}
"""
-unique or primary key constraints on table "roles"
+delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
-enum roles_constraint {
+input stampNft_delete_at_path_input {
"""
- unique or primary key constraint on columns "value"
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
"""
- roles_pkey
+ metadata: [String!]
}
-enum roles_enum {
- organizer_admin
- organizer_auditor
- organizer_content_manager
- organizer_finance_manager
- organizer_guest
- organizer_human_resources
- organizer_operations_manager
- organizer_super_admin
- organizer_validator
+"""
+delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+"""
+input stampNft_delete_elem_input {
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: Int
}
"""
-Boolean expression to compare columns of type "roles_enum". All fields are combined with logical 'AND'.
+delete key/value pair or string element. key/value pairs are matched based on their key value
"""
-input roles_enum_comparison_exp {
- _eq: roles_enum
- _in: [roles_enum!]
- _is_null: Boolean
- _neq: roles_enum
- _nin: [roles_enum!]
+input stampNft_delete_key_input {
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: String
}
"""
-input type for inserting data into table "roles"
+input type for incrementing numeric columns in table "stampNft"
"""
-input roles_insert_input {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String
+input stampNft_inc_input {
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+}
+
+"""
+input type for inserting data into table "stampNft"
+"""
+input stampNft_insert_input {
+ chainId: String
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
+
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+
+ """
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
+ """
+ tokenUri: String
+ updated_at: timestamptz
}
"""aggregate max on columns"""
-type roles_max_fields {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String
+type stampNft_max_fields {
+ chainId: String
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+
+ """
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
+ """
+ tokenUri: String
+ updated_at: timestamptz
}
"""aggregate min on columns"""
-type roles_min_fields {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String
+type stampNft_min_fields {
+ chainId: String
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+
+ """
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
+ """
+ tokenUri: String
+ updated_at: timestamptz
}
"""
-response of any mutation on the table "roles"
+response of any mutation on the table "stampNft"
"""
-type roles_mutation_response {
+type stampNft_mutation_response {
"""number of rows affected by the mutation"""
affected_rows: Int!
"""data from the rows affected by the mutation"""
- returning: [roles!]!
+ returning: [stampNft!]!
}
"""
-on_conflict condition type for table "roles"
+on_conflict condition type for table "stampNft"
"""
-input roles_on_conflict {
- constraint: roles_constraint!
- update_columns: [roles_update_column!]! = []
- where: roles_bool_exp
+input stampNft_on_conflict {
+ constraint: stampNft_constraint!
+ update_columns: [stampNft_update_column!]! = []
+ where: stampNft_bool_exp
}
-"""Ordering options when selecting data from "roles"."""
-input roles_order_by {
- value: order_by
+"""Ordering options when selecting data from "stampNft"."""
+input stampNft_order_by {
+ chainId: order_by
+ contractAddress: order_by
+ created_at: order_by
+ id: order_by
+ metadata: order_by
+ tokenId: order_by
+ tokenUri: order_by
+ updated_at: order_by
}
-"""primary key columns input for table: roles"""
-input roles_pk_columns_input {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String!
+"""primary key columns input for table: stampNft"""
+input stampNft_pk_columns_input {
+ id: uuid!
+}
+
+"""prepend existing jsonb value of filtered columns with new jsonb value"""
+input stampNft_prepend_input {
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
}
"""
-select columns of table "roles"
+select columns of table "stampNft"
"""
-enum roles_select_column {
+enum stampNft_select_column {
"""column name"""
- value
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ metadata
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
+ """column name"""
+ updated_at
}
"""
-input type for updating data in table "roles"
+input type for updating data in table "stampNft"
"""
-input roles_set_input {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String
+input stampNft_set_input {
+ chainId: String
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
+
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+
+ """
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""aggregate stddev on columns"""
+type stampNft_stddev_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
+}
+
+"""aggregate stddev_pop on columns"""
+type stampNft_stddev_pop_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
+}
+
+"""aggregate stddev_samp on columns"""
+type stampNft_stddev_samp_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
}
"""
-Streaming cursor of the table "roles"
+Streaming cursor of the table "stampNft"
"""
-input roles_stream_cursor_input {
+input stampNft_stream_cursor_input {
"""Stream column input with initial value"""
- initial_value: roles_stream_cursor_value_input!
+ initial_value: stampNft_stream_cursor_value_input!
"""cursor ordering"""
ordering: cursor_ordering
}
"""Initial value of the column from where the streaming should start"""
-input roles_stream_cursor_value_input {
- "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n"
- value: String
+input stampNft_stream_cursor_value_input {
+ chainId: String
+ contractAddress: String
+ created_at: timestamptz
+ id: uuid
+
+ """
+ Structured metadata associated with the token, stored in a JSONB format for flexibility.
+ """
+ metadata: jsonb
+
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
+
+ """
+ URI pointing to the token metadata, which may include details such as the item associated with the token.
+ """
+ tokenUri: String
+ updated_at: timestamptz
+}
+
+"""aggregate sum on columns"""
+type stampNft_sum_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: bigint
}
"""
-update columns of table "roles"
+update columns of table "stampNft"
"""
-enum roles_update_column {
+enum stampNft_update_column {
"""column name"""
- value
+ chainId
+
+ """column name"""
+ contractAddress
+
+ """column name"""
+ created_at
+
+ """column name"""
+ id
+
+ """column name"""
+ metadata
+
+ """column name"""
+ tokenId
+
+ """column name"""
+ tokenUri
+
+ """column name"""
+ updated_at
}
-input roles_updates {
+input stampNft_updates {
+ """append existing jsonb value of filtered columns with new jsonb value"""
+ _append: stampNft_append_input
+
+ """
+ delete the field or element with specified path (for JSON arrays, negative integers count from the end)
+ """
+ _delete_at_path: stampNft_delete_at_path_input
+
+ """
+ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
+ """
+ _delete_elem: stampNft_delete_elem_input
+
+ """
+ delete key/value pair or string element. key/value pairs are matched based on their key value
+ """
+ _delete_key: stampNft_delete_key_input
+
+ """increments the numeric columns with given value of the filtered values"""
+ _inc: stampNft_inc_input
+
+ """prepend existing jsonb value of filtered columns with new jsonb value"""
+ _prepend: stampNft_prepend_input
+
"""sets the columns of the filtered rows to the given values"""
- _set: roles_set_input
+ _set: stampNft_set_input
"""filter the rows which have to be updated"""
- where: roles_bool_exp!
+ where: stampNft_bool_exp!
+}
+
+"""aggregate var_pop on columns"""
+type stampNft_var_pop_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
+}
+
+"""aggregate var_samp on columns"""
+type stampNft_var_samp_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
+}
+
+"""aggregate variance on columns"""
+type stampNft_variance_fields {
+ """The unique identifier of the token within its contract."""
+ tokenId: Float
}
"""
@@ -28209,6 +37588,128 @@ type subscription_root {
where: account_bool_exp
): [account!]!
+ """
+ fetch data from the table: "apiKeyStatus"
+ """
+ apiKeyStatus(
+ """distinct select on columns"""
+ distinct_on: [apiKeyStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyStatus_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyStatus_bool_exp
+ ): [apiKeyStatus!]!
+
+ """
+ fetch aggregated fields from the table: "apiKeyStatus"
+ """
+ apiKeyStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [apiKeyStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyStatus_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyStatus_bool_exp
+ ): apiKeyStatus_aggregate!
+
+ """fetch data from the table: "apiKeyStatus" using primary key columns"""
+ apiKeyStatus_by_pk(
+ """
+ The status value for API keys. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED".
+ """
+ value: String!
+ ): apiKeyStatus
+
+ """
+ fetch data from the table in a streaming manner: "apiKeyStatus"
+ """
+ apiKeyStatus_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [apiKeyStatus_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: apiKeyStatus_bool_exp
+ ): [apiKeyStatus!]!
+
+ """
+ fetch data from the table: "apiKeyType"
+ """
+ apiKeyType(
+ """distinct select on columns"""
+ distinct_on: [apiKeyType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyType_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyType_bool_exp
+ ): [apiKeyType!]!
+
+ """
+ fetch aggregated fields from the table: "apiKeyType"
+ """
+ apiKeyType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [apiKeyType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [apiKeyType_order_by!]
+
+ """filter the rows returned"""
+ where: apiKeyType_bool_exp
+ ): apiKeyType_aggregate!
+
+ """fetch data from the table: "apiKeyType" using primary key columns"""
+ apiKeyType_by_pk(
+ """The type of the API key"""
+ value: String!
+ ): apiKeyType
+
+ """
+ fetch data from the table in a streaming manner: "apiKeyType"
+ """
+ apiKeyType_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [apiKeyType_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: apiKeyType_bool_exp
+ ): [apiKeyType!]!
+
"""
fetch data from the table: "contentSpaceParameters"
"""
@@ -29067,19 +38568,370 @@ type subscription_root {
"""maximum number of rows returned in a single batch"""
batch_size: Int!
- """cursor to stream the results returned by the query"""
- cursor: [kycStatus_stream_cursor_input]!
+ """cursor to stream the results returned by the query"""
+ cursor: [kycStatus_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: kycStatus_bool_exp
+ ): [kycStatus!]!
+
+ """
+ fetch aggregated fields from the table: "kyc"
+ """
+ kyc_aggregate(
+ """distinct select on columns"""
+ distinct_on: [kyc_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [kyc_order_by!]
+
+ """filter the rows returned"""
+ where: kyc_bool_exp
+ ): kyc_aggregate!
+
+ """fetch data from the table: "kyc" using primary key columns"""
+ kyc_by_pk(
+ """UUID referencing the user ID in the existing accounts table."""
+ externalUserId: uuid!
+ ): kyc
+
+ """
+ fetch data from the table in a streaming manner: "kyc"
+ """
+ kyc_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [kyc_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: kyc_bool_exp
+ ): [kyc!]!
+
+ """
+ fetch data from the table: "lotteryParameters"
+ """
+ lotteryParameters(
+ """distinct select on columns"""
+ distinct_on: [lotteryParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [lotteryParameters_order_by!]
+
+ """filter the rows returned"""
+ where: lotteryParameters_bool_exp
+ ): [lotteryParameters!]!
+
+ """
+ fetch aggregated fields from the table: "lotteryParameters"
+ """
+ lotteryParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [lotteryParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [lotteryParameters_order_by!]
+
+ """filter the rows returned"""
+ where: lotteryParameters_bool_exp
+ ): lotteryParameters_aggregate!
+
+ """
+ fetch data from the table: "lotteryParameters" using primary key columns
+ """
+ lotteryParameters_by_pk(id: uuid!): lotteryParameters
+
+ """
+ fetch data from the table in a streaming manner: "lotteryParameters"
+ """
+ lotteryParameters_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [lotteryParameters_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: lotteryParameters_bool_exp
+ ): [lotteryParameters!]!
+
+ """
+ fetch data from the table: "lotteryStatus"
+ """
+ lotteryStatus(
+ """distinct select on columns"""
+ distinct_on: [lotteryStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [lotteryStatus_order_by!]
+
+ """filter the rows returned"""
+ where: lotteryStatus_bool_exp
+ ): [lotteryStatus!]!
+
+ """
+ fetch aggregated fields from the table: "lotteryStatus"
+ """
+ lotteryStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [lotteryStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [lotteryStatus_order_by!]
+
+ """filter the rows returned"""
+ where: lotteryStatus_bool_exp
+ ): lotteryStatus_aggregate!
+
+ """fetch data from the table: "lotteryStatus" using primary key columns"""
+ lotteryStatus_by_pk(value: String!): lotteryStatus
+
+ """
+ fetch data from the table in a streaming manner: "lotteryStatus"
+ """
+ lotteryStatus_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [lotteryStatus_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: lotteryStatus_bool_exp
+ ): [lotteryStatus!]!
+
+ """
+ fetch data from the table: "loyaltyCardNft"
+ """
+ loyaltyCardNft(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNft_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardNft_bool_exp
+ ): [loyaltyCardNft!]!
+
+ """
+ fetch data from the table: "loyaltyCardNftContract"
+ """
+ loyaltyCardNftContract(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardNftContract_bool_exp
+ ): [loyaltyCardNftContract!]!
+
+ """
+ fetch aggregated fields from the table: "loyaltyCardNftContract"
+ """
+ loyaltyCardNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardNftContract_bool_exp
+ ): loyaltyCardNftContract_aggregate!
+
+ """
+ fetch data from the table: "loyaltyCardNftContract" using primary key columns
+ """
+ loyaltyCardNftContract_by_pk(id: uuid!): loyaltyCardNftContract
+
+ """
+ fetch data from the table in a streaming manner: "loyaltyCardNftContract"
+ """
+ loyaltyCardNftContract_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [loyaltyCardNftContract_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: loyaltyCardNftContract_bool_exp
+ ): [loyaltyCardNftContract!]!
+
+ """
+ fetch aggregated fields from the table: "loyaltyCardNft"
+ """
+ loyaltyCardNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardNft_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardNft_bool_exp
+ ): loyaltyCardNft_aggregate!
+
+ """fetch data from the table: "loyaltyCardNft" using primary key columns"""
+ loyaltyCardNft_by_pk(id: uuid!): loyaltyCardNft
+
+ """
+ fetch data from the table in a streaming manner: "loyaltyCardNft"
+ """
+ loyaltyCardNft_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [loyaltyCardNft_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: loyaltyCardNft_bool_exp
+ ): [loyaltyCardNft!]!
+
+ """
+ fetch data from the table: "loyaltyCardParameters"
+ """
+ loyaltyCardParameters(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardParameters_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardParameters_bool_exp
+ ): [loyaltyCardParameters!]!
+
+ """
+ fetch aggregated fields from the table: "loyaltyCardParameters"
+ """
+ loyaltyCardParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardParameters_order_by!]
+
+ """filter the rows returned"""
+ where: loyaltyCardParameters_bool_exp
+ ): loyaltyCardParameters_aggregate!
+
+ """
+ fetch data from the table: "loyaltyCardParameters" using primary key columns
+ """
+ loyaltyCardParameters_by_pk(id: uuid!): loyaltyCardParameters
+
+ """
+ fetch data from the table in a streaming manner: "loyaltyCardParameters"
+ """
+ loyaltyCardParameters_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [loyaltyCardParameters_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: loyaltyCardParameters_bool_exp
+ ): [loyaltyCardParameters!]!
+
+ """
+ fetch data from the table: "loyaltyCardStatus"
+ """
+ loyaltyCardStatus(
+ """distinct select on columns"""
+ distinct_on: [loyaltyCardStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [loyaltyCardStatus_order_by!]
"""filter the rows returned"""
- where: kycStatus_bool_exp
- ): [kycStatus!]!
+ where: loyaltyCardStatus_bool_exp
+ ): [loyaltyCardStatus!]!
"""
- fetch aggregated fields from the table: "kyc"
+ fetch aggregated fields from the table: "loyaltyCardStatus"
"""
- kyc_aggregate(
+ loyaltyCardStatus_aggregate(
"""distinct select on columns"""
- distinct_on: [kyc_select_column!]
+ distinct_on: [loyaltyCardStatus_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29088,38 +38940,37 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [kyc_order_by!]
+ order_by: [loyaltyCardStatus_order_by!]
"""filter the rows returned"""
- where: kyc_bool_exp
- ): kyc_aggregate!
+ where: loyaltyCardStatus_bool_exp
+ ): loyaltyCardStatus_aggregate!
- """fetch data from the table: "kyc" using primary key columns"""
- kyc_by_pk(
- """UUID referencing the user ID in the existing accounts table."""
- externalUserId: uuid!
- ): kyc
+ """
+ fetch data from the table: "loyaltyCardStatus" using primary key columns
+ """
+ loyaltyCardStatus_by_pk(value: String!): loyaltyCardStatus
"""
- fetch data from the table in a streaming manner: "kyc"
+ fetch data from the table in a streaming manner: "loyaltyCardStatus"
"""
- kyc_stream(
+ loyaltyCardStatus_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
- cursor: [kyc_stream_cursor_input]!
+ cursor: [loyaltyCardStatus_stream_cursor_input]!
"""filter the rows returned"""
- where: kyc_bool_exp
- ): [kyc!]!
+ where: loyaltyCardStatus_bool_exp
+ ): [loyaltyCardStatus!]!
"""
- fetch data from the table: "lotteryParameters"
+ fetch data from the table: "minterTemporaryWallet"
"""
- lotteryParameters(
+ minterTemporaryWallet(
"""distinct select on columns"""
- distinct_on: [lotteryParameters_select_column!]
+ distinct_on: [minterTemporaryWallet_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29128,18 +38979,18 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [lotteryParameters_order_by!]
+ order_by: [minterTemporaryWallet_order_by!]
"""filter the rows returned"""
- where: lotteryParameters_bool_exp
- ): [lotteryParameters!]!
+ where: minterTemporaryWallet_bool_exp
+ ): [minterTemporaryWallet!]!
"""
- fetch aggregated fields from the table: "lotteryParameters"
+ fetch aggregated fields from the table: "minterTemporaryWallet"
"""
- lotteryParameters_aggregate(
+ minterTemporaryWallet_aggregate(
"""distinct select on columns"""
- distinct_on: [lotteryParameters_select_column!]
+ distinct_on: [minterTemporaryWallet_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29148,37 +38999,40 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [lotteryParameters_order_by!]
+ order_by: [minterTemporaryWallet_order_by!]
"""filter the rows returned"""
- where: lotteryParameters_bool_exp
- ): lotteryParameters_aggregate!
+ where: minterTemporaryWallet_bool_exp
+ ): minterTemporaryWallet_aggregate!
"""
- fetch data from the table: "lotteryParameters" using primary key columns
+ fetch data from the table: "minterTemporaryWallet" using primary key columns
"""
- lotteryParameters_by_pk(id: uuid!): lotteryParameters
+ minterTemporaryWallet_by_pk(
+ """The blockchain address of the temporary wallet."""
+ address: String!
+ ): minterTemporaryWallet
"""
- fetch data from the table in a streaming manner: "lotteryParameters"
+ fetch data from the table in a streaming manner: "minterTemporaryWallet"
"""
- lotteryParameters_stream(
+ minterTemporaryWallet_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
- cursor: [lotteryParameters_stream_cursor_input]!
+ cursor: [minterTemporaryWallet_stream_cursor_input]!
"""filter the rows returned"""
- where: lotteryParameters_bool_exp
- ): [lotteryParameters!]!
+ where: minterTemporaryWallet_bool_exp
+ ): [minterTemporaryWallet!]!
"""
- fetch data from the table: "lotteryStatus"
+ fetch data from the table: "nftMintPassword"
"""
- lotteryStatus(
+ nftMintPassword(
"""distinct select on columns"""
- distinct_on: [lotteryStatus_select_column!]
+ distinct_on: [nftMintPassword_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29187,18 +39041,18 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [lotteryStatus_order_by!]
+ order_by: [nftMintPassword_order_by!]
"""filter the rows returned"""
- where: lotteryStatus_bool_exp
- ): [lotteryStatus!]!
+ where: nftMintPassword_bool_exp
+ ): [nftMintPassword!]!
"""
- fetch aggregated fields from the table: "lotteryStatus"
+ fetch aggregated fields from the table: "nftMintPassword"
"""
- lotteryStatus_aggregate(
+ nftMintPassword_aggregate(
"""distinct select on columns"""
- distinct_on: [lotteryStatus_select_column!]
+ distinct_on: [nftMintPassword_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29207,35 +39061,35 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [lotteryStatus_order_by!]
+ order_by: [nftMintPassword_order_by!]
"""filter the rows returned"""
- where: lotteryStatus_bool_exp
- ): lotteryStatus_aggregate!
+ where: nftMintPassword_bool_exp
+ ): nftMintPassword_aggregate!
- """fetch data from the table: "lotteryStatus" using primary key columns"""
- lotteryStatus_by_pk(value: String!): lotteryStatus
+ """fetch data from the table: "nftMintPassword" using primary key columns"""
+ nftMintPassword_by_pk(id: uuid!): nftMintPassword
"""
- fetch data from the table in a streaming manner: "lotteryStatus"
+ fetch data from the table in a streaming manner: "nftMintPassword"
"""
- lotteryStatus_stream(
+ nftMintPassword_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
- cursor: [lotteryStatus_stream_cursor_input]!
+ cursor: [nftMintPassword_stream_cursor_input]!
"""filter the rows returned"""
- where: lotteryStatus_bool_exp
- ): [lotteryStatus!]!
+ where: nftMintPassword_bool_exp
+ ): [nftMintPassword!]!
"""
- fetch data from the table: "minterTemporaryWallet"
+ fetch data from the table: "nftStatus"
"""
- minterTemporaryWallet(
+ nftStatus(
"""distinct select on columns"""
- distinct_on: [minterTemporaryWallet_select_column!]
+ distinct_on: [nftStatus_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29244,18 +39098,18 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [minterTemporaryWallet_order_by!]
+ order_by: [nftStatus_order_by!]
"""filter the rows returned"""
- where: minterTemporaryWallet_bool_exp
- ): [minterTemporaryWallet!]!
+ where: nftStatus_bool_exp
+ ): [nftStatus!]!
"""
- fetch aggregated fields from the table: "minterTemporaryWallet"
+ fetch aggregated fields from the table: "nftStatus"
"""
- minterTemporaryWallet_aggregate(
+ nftStatus_aggregate(
"""distinct select on columns"""
- distinct_on: [minterTemporaryWallet_select_column!]
+ distinct_on: [nftStatus_select_column!]
"""limit the number of rows returned"""
limit: Int
@@ -29264,33 +39118,28 @@ type subscription_root {
offset: Int
"""sort the rows by one or more columns"""
- order_by: [minterTemporaryWallet_order_by!]
+ order_by: [nftStatus_order_by!]
"""filter the rows returned"""
- where: minterTemporaryWallet_bool_exp
- ): minterTemporaryWallet_aggregate!
+ where: nftStatus_bool_exp
+ ): nftStatus_aggregate!
- """
- fetch data from the table: "minterTemporaryWallet" using primary key columns
- """
- minterTemporaryWallet_by_pk(
- """The blockchain address of the temporary wallet."""
- address: String!
- ): minterTemporaryWallet
+ """fetch data from the table: "nftStatus" using primary key columns"""
+ nftStatus_by_pk(value: String!): nftStatus
"""
- fetch data from the table in a streaming manner: "minterTemporaryWallet"
+ fetch data from the table in a streaming manner: "nftStatus"
"""
- minterTemporaryWallet_stream(
+ nftStatus_stream(
"""maximum number of rows returned in a single batch"""
batch_size: Int!
"""cursor to stream the results returned by the query"""
- cursor: [minterTemporaryWallet_stream_cursor_input]!
+ cursor: [nftStatus_stream_cursor_input]!
"""filter the rows returned"""
- where: minterTemporaryWallet_bool_exp
- ): [minterTemporaryWallet!]!
+ where: nftStatus_bool_exp
+ ): [nftStatus!]!
"""
fetch data from the table: "nftTransfer"
@@ -29942,6 +39791,65 @@ type subscription_root {
where: pendingOrder_bool_exp
): [pendingOrder!]!
+ """
+ fetch data from the table: "publishableApiKey"
+ """
+ publishableApiKey(
+ """distinct select on columns"""
+ distinct_on: [publishableApiKey_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [publishableApiKey_order_by!]
+
+ """filter the rows returned"""
+ where: publishableApiKey_bool_exp
+ ): [publishableApiKey!]!
+
+ """
+ fetch aggregated fields from the table: "publishableApiKey"
+ """
+ publishableApiKey_aggregate(
+ """distinct select on columns"""
+ distinct_on: [publishableApiKey_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [publishableApiKey_order_by!]
+
+ """filter the rows returned"""
+ where: publishableApiKey_bool_exp
+ ): publishableApiKey_aggregate!
+
+ """
+ fetch data from the table: "publishableApiKey" using primary key columns
+ """
+ publishableApiKey_by_pk(id: uuid!): publishableApiKey
+
+ """
+ fetch data from the table in a streaming manner: "publishableApiKey"
+ """
+ publishableApiKey_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [publishableApiKey_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: publishableApiKey_bool_exp
+ ): [publishableApiKey!]!
+
"""
fetch data from the table: "roleAssignment"
"""
@@ -30056,6 +39964,547 @@ type subscription_root {
where: roles_bool_exp
): [roles!]!
+ """
+ fetch data from the table: "secretApiKey"
+ """
+ secretApiKey(
+ """distinct select on columns"""
+ distinct_on: [secretApiKey_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [secretApiKey_order_by!]
+
+ """filter the rows returned"""
+ where: secretApiKey_bool_exp
+ ): [secretApiKey!]!
+
+ """
+ fetch aggregated fields from the table: "secretApiKey"
+ """
+ secretApiKey_aggregate(
+ """distinct select on columns"""
+ distinct_on: [secretApiKey_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [secretApiKey_order_by!]
+
+ """filter the rows returned"""
+ where: secretApiKey_bool_exp
+ ): secretApiKey_aggregate!
+
+ """fetch data from the table: "secretApiKey" using primary key columns"""
+ secretApiKey_by_pk(id: uuid!): secretApiKey
+
+ """
+ fetch data from the table in a streaming manner: "secretApiKey"
+ """
+ secretApiKey_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [secretApiKey_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: secretApiKey_bool_exp
+ ): [secretApiKey!]!
+
+ """
+ fetch data from the table: "shopifyCampaignParameters"
+ """
+ shopifyCampaignParameters(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignParameters_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCampaignParameters_bool_exp
+ ): [shopifyCampaignParameters!]!
+
+ """
+ fetch aggregated fields from the table: "shopifyCampaignParameters"
+ """
+ shopifyCampaignParameters_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignParameters_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignParameters_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCampaignParameters_bool_exp
+ ): shopifyCampaignParameters_aggregate!
+
+ """
+ fetch data from the table: "shopifyCampaignParameters" using primary key columns
+ """
+ shopifyCampaignParameters_by_pk(
+ """
+ Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.
+ """
+ gateId: String!
+ ): shopifyCampaignParameters
+
+ """
+ fetch data from the table in a streaming manner: "shopifyCampaignParameters"
+ """
+ shopifyCampaignParameters_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [shopifyCampaignParameters_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: shopifyCampaignParameters_bool_exp
+ ): [shopifyCampaignParameters!]!
+
+ """
+ fetch data from the table: "shopifyCampaignStatus"
+ """
+ shopifyCampaignStatus(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignStatus_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCampaignStatus_bool_exp
+ ): [shopifyCampaignStatus!]!
+
+ """
+ fetch aggregated fields from the table: "shopifyCampaignStatus"
+ """
+ shopifyCampaignStatus_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCampaignStatus_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCampaignStatus_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCampaignStatus_bool_exp
+ ): shopifyCampaignStatus_aggregate!
+
+ """
+ fetch data from the table: "shopifyCampaignStatus" using primary key columns
+ """
+ shopifyCampaignStatus_by_pk(value: String!): shopifyCampaignStatus
+
+ """
+ fetch data from the table in a streaming manner: "shopifyCampaignStatus"
+ """
+ shopifyCampaignStatus_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [shopifyCampaignStatus_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: shopifyCampaignStatus_bool_exp
+ ): [shopifyCampaignStatus!]!
+
+ """
+ fetch data from the table: "shopifyCustomer"
+ """
+ shopifyCustomer(
+ """distinct select on columns"""
+ distinct_on: [shopifyCustomer_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCustomer_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCustomer_bool_exp
+ ): [shopifyCustomer!]!
+
+ """
+ fetch aggregated fields from the table: "shopifyCustomer"
+ """
+ shopifyCustomer_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyCustomer_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyCustomer_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyCustomer_bool_exp
+ ): shopifyCustomer_aggregate!
+
+ """
+ fetch data from the table in a streaming manner: "shopifyCustomer"
+ """
+ shopifyCustomer_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [shopifyCustomer_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: shopifyCustomer_bool_exp
+ ): [shopifyCustomer!]!
+
+ """
+ fetch data from the table: "shopifyDomain"
+ """
+ shopifyDomain(
+ """distinct select on columns"""
+ distinct_on: [shopifyDomain_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyDomain_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyDomain_bool_exp
+ ): [shopifyDomain!]!
+
+ """
+ fetch aggregated fields from the table: "shopifyDomain"
+ """
+ shopifyDomain_aggregate(
+ """distinct select on columns"""
+ distinct_on: [shopifyDomain_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [shopifyDomain_order_by!]
+
+ """filter the rows returned"""
+ where: shopifyDomain_bool_exp
+ ): shopifyDomain_aggregate!
+
+ """fetch data from the table: "shopifyDomain" using primary key columns"""
+ shopifyDomain_by_pk(
+ """
+ The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.
+ """
+ domain: String!
+ ): shopifyDomain
+
+ """
+ fetch data from the table in a streaming manner: "shopifyDomain"
+ """
+ shopifyDomain_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [shopifyDomain_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: shopifyDomain_bool_exp
+ ): [shopifyDomain!]!
+
+ """
+ fetch data from the table: "stampNft"
+ """
+ stampNft(
+ """distinct select on columns"""
+ distinct_on: [stampNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNft_order_by!]
+
+ """filter the rows returned"""
+ where: stampNft_bool_exp
+ ): [stampNft!]!
+
+ """
+ fetch data from the table: "stampNftContract"
+ """
+ stampNftContract(
+ """distinct select on columns"""
+ distinct_on: [stampNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftContract_bool_exp
+ ): [stampNftContract!]!
+
+ """
+ fetch data from the table: "stampNftContractType"
+ """
+ stampNftContractType(
+ """distinct select on columns"""
+ distinct_on: [stampNftContractType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContractType_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftContractType_bool_exp
+ ): [stampNftContractType!]!
+
+ """
+ fetch aggregated fields from the table: "stampNftContractType"
+ """
+ stampNftContractType_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftContractType_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContractType_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftContractType_bool_exp
+ ): stampNftContractType_aggregate!
+
+ """
+ fetch data from the table: "stampNftContractType" using primary key columns
+ """
+ stampNftContractType_by_pk(
+ """
+ Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.
+ """
+ value: String!
+ ): stampNftContractType
+
+ """
+ fetch data from the table in a streaming manner: "stampNftContractType"
+ """
+ stampNftContractType_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [stampNftContractType_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: stampNftContractType_bool_exp
+ ): [stampNftContractType!]!
+
+ """
+ fetch aggregated fields from the table: "stampNftContract"
+ """
+ stampNftContract_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftContract_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftContract_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftContract_bool_exp
+ ): stampNftContract_aggregate!
+
+ """
+ fetch data from the table: "stampNftContract" using primary key columns
+ """
+ stampNftContract_by_pk(
+ """
+ The identifier of the blockchain network where the contract is deployed.
+ """
+ chainId: String!
+
+ """The blockchain address of the stamp NFT contract."""
+ contractAddress: String!
+ ): stampNftContract
+
+ """
+ fetch data from the table in a streaming manner: "stampNftContract"
+ """
+ stampNftContract_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [stampNftContract_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: stampNftContract_bool_exp
+ ): [stampNftContract!]!
+
+ """
+ fetch data from the table: "stampNftSupply"
+ """
+ stampNftSupply(
+ """distinct select on columns"""
+ distinct_on: [stampNftSupply_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftSupply_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftSupply_bool_exp
+ ): [stampNftSupply!]!
+
+ """
+ fetch aggregated fields from the table: "stampNftSupply"
+ """
+ stampNftSupply_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNftSupply_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNftSupply_order_by!]
+
+ """filter the rows returned"""
+ where: stampNftSupply_bool_exp
+ ): stampNftSupply_aggregate!
+
+ """fetch data from the table: "stampNftSupply" using primary key columns"""
+ stampNftSupply_by_pk(id: uuid!): stampNftSupply
+
+ """
+ fetch data from the table in a streaming manner: "stampNftSupply"
+ """
+ stampNftSupply_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [stampNftSupply_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: stampNftSupply_bool_exp
+ ): [stampNftSupply!]!
+
+ """
+ fetch aggregated fields from the table: "stampNft"
+ """
+ stampNft_aggregate(
+ """distinct select on columns"""
+ distinct_on: [stampNft_select_column!]
+
+ """limit the number of rows returned"""
+ limit: Int
+
+ """skip the first n rows. Use only with order_by"""
+ offset: Int
+
+ """sort the rows by one or more columns"""
+ order_by: [stampNft_order_by!]
+
+ """filter the rows returned"""
+ where: stampNft_bool_exp
+ ): stampNft_aggregate!
+
+ """fetch data from the table: "stampNft" using primary key columns"""
+ stampNft_by_pk(id: uuid!): stampNft
+
+ """
+ fetch data from the table in a streaming manner: "stampNft"
+ """
+ stampNft_stream(
+ """maximum number of rows returned in a single batch"""
+ batch_size: Int!
+
+ """cursor to stream the results returned by the query"""
+ cursor: [stampNft_stream_cursor_input]!
+
+ """filter the rows returned"""
+ where: stampNft_bool_exp
+ ): [stampNft!]!
+
"""
fetch data from the table: "stripeCheckoutSession"
"""
diff --git a/libs/gql/admin/api/src/generated/schema.json b/libs/gql/admin/api/src/generated/schema.json
index 156b9ffc5..b6d59c733 100644
--- a/libs/gql/admin/api/src/generated/schema.json
+++ b/libs/gql/admin/api/src/generated/schema.json
@@ -1269,6 +1269,147 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack",
"description": null,
@@ -2002,6 +2143,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack",
"description": null,
@@ -2896,6 +3049,42 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack_every",
"description": null,
@@ -3522,70 +3711,11 @@
"deprecationReason": null
},
{
- "name": "nftImagePack",
+ "name": "nftImageLoyaltyCard",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "size",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "width",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "fileName",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "handle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
+ "name": "LoyaltyCardUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -3593,23 +3723,11 @@
"deprecationReason": null
},
{
- "name": "height",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "mimeType",
+ "name": "nftImagePack",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -3647,146 +3765,229 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationInput",
+ "name": "AssetUpdateLocalizationDataInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationDataInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
+ "name": "fileName",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "create",
- "description": "Localizations to create",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetCreateLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "delete",
- "description": "Localizations to delete",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update",
- "description": "Localizations to update",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpsertLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateManyInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "fileName",
+ "name": "handle",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "height",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "mimeType",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "size",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "width",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationDataInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locale",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": "Localizations to create",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete",
+ "description": "Localizations to delete",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Localizations to update",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpsertLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "fileName",
"description": null,
"type": {
"kind": "SCALAR",
@@ -5363,6 +5564,42 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack_every",
"description": null,
@@ -11247,6 +11484,11 @@
"name": "LocationAddress",
"ofType": null
},
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
{
"kind": "OBJECT",
"name": "Organizer",
@@ -11329,6 +11571,12 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "LoyaltyCard",
+ "description": "Root loyalty card model",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "Organizer",
"description": "An organizer is an entity that launch events and handle the pass benefits.",
@@ -29886,267 +30134,15 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INTERFACE",
- "name": "Node",
- "description": "An object with an ID",
- "fields": [
- {
- "name": "id",
- "description": "The id of the object.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "The Stage of an object",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": [
- {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "User",
- "ofType": null
- }
- ]
- },
{
"kind": "OBJECT",
- "name": "Organizer",
- "description": "An organizer is an entity that launch events and handle the pass benefits.",
+ "name": "LoyaltyCard",
+ "description": "Root loyalty card model",
"fields": [
- {
- "name": "contentSpaces",
- "description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ContentSpaceOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "createdAt",
"description": "The time the document was created",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -30204,30 +30200,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "description",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "OrganizerDescriptionRichText",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId",
- "description": "The discord widge id of the organizer. You need to enable the widget in your discord server and copy the value in `server id`. For details instruction of how to enable and find the id, refer to this section https://dev.fandom.com/wiki/DiscordIntegrator#Enabling_the_widget",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "documentInStages",
"description": "Get the document in other stages",
@@ -30300,148 +30272,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "events",
- "description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Event",
+ "name": "LoyaltyCard",
"ofType": null
}
}
@@ -30450,82 +30281,9 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "facebookHandle",
- "description": "The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImage",
- "description": "An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImageClasses",
- "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "history",
- "description": "List of Organizer versions",
+ "description": "List of LoyaltyCard versions",
"args": [
{
"name": "limit",
@@ -30609,12 +30367,36 @@
"deprecationReason": null
},
{
- "name": "image",
- "description": "Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.",
+ "name": "loyaltyCardNftContract",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": "Image representing the NFT. Advised resolution is 800 x 800 pixels.",
"args": [
{
"name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "SCALAR",
"name": "Boolean",
@@ -30626,7 +30408,7 @@
},
{
"name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "LIST",
"name": null,
@@ -30658,39 +30440,15 @@
"deprecationReason": null
},
{
- "name": "imageClasses",
- "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle",
- "description": "The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
- "description": "System Locale field",
+ "name": "nftName",
+ "description": "Name associated with the NFT. Cannot be localized.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -30698,82 +30456,46 @@
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Get the other localizations for this document",
+ "name": "organizer",
+ "description": null,
"args": [
{
- "name": "includeCurrent",
- "description": "Decides if the current locale should be included or not",
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
- "defaultValue": "false",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "locales",
- "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
}
}
},
- "defaultValue": "[en, fr]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
- "description": "Name of the organizer",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
@@ -30781,24 +30503,7 @@
{
"name": "publishedAt",
"description": "The time the document was published. Null on documents in draft stage.",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "DateTime",
@@ -30981,22 +30686,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "slug",
- "description": "Used in URL",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "stage",
"description": "System stage field",
@@ -31013,63 +30702,10 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "telegramHandle",
- "description": "The telegram handle (username) of the organizer. You can just copy the text on your telegram profile page in parameters after the @, like 'johndoe' for '@johndoe'.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tiktokHandle",
- "description": "The tiktok handle (username) of the organizer. You can just copy the name on your tiktok landing page.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle",
- "description": "The twitter (X) handle (username) of the organizer. You can just copy the text on your twitter landing page after the @, like 'johndoe' for '@johndoe'.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "updatedAt",
"description": "The time the document was updated",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -31126,18 +30762,6 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "youtubeHandle",
- "description": "The youtube handle (username) of the organizer. YYou can just copy the text on your youtube landing page after the @, like 'johndoe' for '@johndoe'.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -31158,7 +30782,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerConnectInput",
+ "name": "LoyaltyCardConnectInput",
"description": null,
"fields": null,
"inputFields": [
@@ -31182,7 +30806,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
+ "name": "LoyaltyCardWhereUniqueInput",
"ofType": null
}
},
@@ -31197,7 +30821,7 @@
},
{
"kind": "OBJECT",
- "name": "OrganizerConnection",
+ "name": "LoyaltyCardConnection",
"description": "A connection to a list of items.",
"fields": [
{
@@ -31231,7 +30855,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "OrganizerEdge",
+ "name": "LoyaltyCardEdge",
"ofType": null
}
}
@@ -31264,28 +30888,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
+ "name": "LoyaltyCardCreateInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "clr7j9mmt0q2j01uo9zrs2fm7",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contentSpaces",
+ "name": "cltzsfm12094507ul1er1czw6",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceCreateManyInlineInput",
+ "name": "OrganizerCreateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -31305,83 +30917,7 @@
"deprecationReason": null
},
{
- "name": "description",
- "description": "description input for default locale (en)",
- "type": {
- "kind": "SCALAR",
- "name": "RichTextAST",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "events",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventCreateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "facebookHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetCreateOneInlineInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImageClasses",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "image",
+ "name": "nftImage",
"description": null,
"type": {
"kind": "NON_NULL",
@@ -31397,59 +30933,7 @@
"deprecationReason": null
},
{
- "name": "imageClasses",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "localizations",
- "description": "Inline mutations for managing document localizations excluding the default locale",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationsInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "slug",
+ "name": "nftName",
"description": null,
"type": {
"kind": "NON_NULL",
@@ -31465,94 +30949,11 @@
"deprecationReason": null
},
{
- "name": "telegramHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tiktokHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "youtubeHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "createdAt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description",
+ "name": "organizer",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "RichTextAST",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -31578,87 +30979,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": "Localization input",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationDataInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "create",
- "description": "Create localizations for the newly-created document",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateManyInlineInput",
+ "name": "LoyaltyCardCreateManyInlineInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "connect",
- "description": "Connect multiple existing Organizer documents",
+ "description": "Connect multiple existing LoyaltyCard documents",
"type": {
"kind": "LIST",
"name": null,
@@ -31667,7 +30994,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
+ "name": "LoyaltyCardWhereUniqueInput",
"ofType": null
}
}
@@ -31678,7 +31005,7 @@
},
{
"name": "create",
- "description": "Create and connect multiple existing Organizer documents",
+ "description": "Create and connect multiple existing LoyaltyCard documents",
"type": {
"kind": "LIST",
"name": null,
@@ -31687,7 +31014,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
+ "name": "LoyaltyCardCreateInput",
"ofType": null
}
}
@@ -31703,16 +31030,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerCreateOneInlineInput",
+ "name": "LoyaltyCardCreateOneInlineInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "connect",
- "description": "Connect one existing Organizer document",
+ "description": "Connect one existing LoyaltyCard document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
+ "name": "LoyaltyCardWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -31721,10 +31048,10 @@
},
{
"name": "create",
- "description": "Create and connect one Organizer document",
+ "description": "Create and connect one LoyaltyCard document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
+ "name": "LoyaltyCardCreateInput",
"ofType": null
},
"defaultValue": null,
@@ -31738,199 +31065,7 @@
},
{
"kind": "OBJECT",
- "name": "OrganizerDescriptionRichText",
- "description": null,
- "fields": [
- {
- "name": "html",
- "description": "Returns HTMl representation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "json",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "RichTextAST",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "markdown",
- "description": "Returns Markdown representation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "raw",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "RichTextAST",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "references",
- "description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "UNION",
- "name": "OrganizerDescriptionRichTextEmbeddedTypes",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "text",
- "description": "Returns plain-text contents of RichText",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "UNION",
- "name": "OrganizerDescriptionRichTextEmbeddedTypes",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": [
- {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- }
- ]
- },
- {
- "kind": "OBJECT",
- "name": "OrganizerEdge",
+ "name": "LoyaltyCardEdge",
"description": "An edge in a connection.",
"fields": [
{
@@ -31958,7 +31093,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "Organizer",
+ "name": "LoyaltyCard",
"ofType": null
}
},
@@ -31973,7 +31108,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
+ "name": "LoyaltyCardManyWhereInput",
"description": "Identifies documents",
"fields": null,
"inputFields": [
@@ -31988,7 +31123,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
}
}
@@ -32008,7 +31143,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
}
}
@@ -32028,7 +31163,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
}
}
@@ -32050,11 +31185,11 @@
"deprecationReason": null
},
{
- "name": "contentSpaces_every",
+ "name": "createdAt",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32062,11 +31197,11 @@
"deprecationReason": null
},
{
- "name": "contentSpaces_none",
- "description": null,
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32074,11 +31209,11 @@
"deprecationReason": null
},
{
- "name": "contentSpaces_some",
- "description": null,
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32086,44 +31221,8 @@
"deprecationReason": null
},
{
- "name": "createdAt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_gt",
- "description": "All values greater than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_gte",
- "description": "All values greater than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_in",
- "description": "All values that are contained in given list.",
+ "name": "createdAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
@@ -32202,11 +31301,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId",
+ "name": "documentInStages_every",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -32214,11 +31313,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_contains",
- "description": "All values containing the given string.",
+ "name": "documentInStages_none",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -32226,11 +31325,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_ends_with",
- "description": "All values ending with the given string.",
+ "name": "documentInStages_some",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -32238,27 +31337,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32266,11 +31349,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_not_contains",
- "description": "All values not containing the given string.",
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32278,11 +31361,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32290,14 +31373,14 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -32306,11 +31389,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32318,23 +31401,11 @@
"deprecationReason": null
},
{
- "name": "discordWidgetId_starts_with",
- "description": "All values starting with the given string.",
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_every",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32342,11 +31413,11 @@
"deprecationReason": null
},
{
- "name": "documentInStages_none",
- "description": null,
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32354,23 +31425,27 @@
"deprecationReason": null
},
{
- "name": "documentInStages_some",
- "description": null,
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "events_every",
- "description": null,
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32378,11 +31453,11 @@
"deprecationReason": null
},
{
- "name": "events_none",
- "description": null,
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -32390,11 +31465,11 @@
"deprecationReason": null
},
{
- "name": "events_some",
+ "name": "nftImage",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
+ "name": "AssetWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -32402,7 +31477,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle",
+ "name": "nftName",
"description": null,
"type": {
"kind": "SCALAR",
@@ -32414,7 +31489,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_contains",
+ "name": "nftName_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -32426,7 +31501,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_ends_with",
+ "name": "nftName_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -32438,7 +31513,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_in",
+ "name": "nftName_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -32454,7 +31529,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_not",
+ "name": "nftName_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -32466,7 +31541,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_not_contains",
+ "name": "nftName_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -32478,7 +31553,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_not_ends_with",
+ "name": "nftName_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -32490,7 +31565,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_not_in",
+ "name": "nftName_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -32506,7 +31581,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_not_starts_with",
+ "name": "nftName_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -32518,7 +31593,7 @@
"deprecationReason": null
},
{
- "name": "facebookHandle_starts_with",
+ "name": "nftName_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -32530,11 +31605,11 @@
"deprecationReason": null
},
{
- "name": "heroImage",
+ "name": "organizer",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "AssetWhereInput",
+ "name": "OrganizerWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -32542,11 +31617,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses",
+ "name": "publishedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32554,11 +31629,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_contains",
- "description": "All values containing the given string.",
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32566,11 +31641,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_ends_with",
- "description": "All values ending with the given string.",
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32578,14 +31653,14 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_in",
+ "name": "publishedAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -32594,11 +31669,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32606,11 +31681,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_not_contains",
- "description": "All values not containing the given string.",
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32618,11 +31693,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32630,14 +31705,14 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_not_in",
+ "name": "publishedAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -32646,11 +31721,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "publishedBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -32658,11 +31733,11 @@
"deprecationReason": null
},
{
- "name": "heroImageClasses_starts_with",
- "description": "All values starting with the given string.",
+ "name": "scheduledIn_every",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -32670,11 +31745,35 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "scheduledIn_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32682,11 +31781,11 @@
"deprecationReason": null
},
{
- "name": "id_contains",
- "description": "All values containing the given string.",
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32694,11 +31793,11 @@
"deprecationReason": null
},
{
- "name": "id_ends_with",
- "description": "All values ending with the given string.",
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32706,14 +31805,14 @@
"deprecationReason": null
},
{
- "name": "id_in",
+ "name": "updatedAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
}
},
@@ -32722,11 +31821,11 @@
"deprecationReason": null
},
{
- "name": "id_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32734,11 +31833,11 @@
"deprecationReason": null
},
{
- "name": "id_not_contains",
- "description": "All values not containing the given string.",
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32746,11 +31845,11 @@
"deprecationReason": null
},
{
- "name": "id_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -32758,14 +31857,14 @@
"deprecationReason": null
},
{
- "name": "id_not_in",
+ "name": "updatedAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
}
},
@@ -32774,35 +31873,105 @@
"deprecationReason": null
},
{
- "name": "id_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "updatedBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "createdAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "id_starts_with",
- "description": "All values starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "createdAt_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "image",
+ "name": "id_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "cltzsfm12094507ul1er1czw6",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "AssetWhereInput",
+ "name": "OrganizerUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -32810,11 +31979,11 @@
"deprecationReason": null
},
{
- "name": "imageClasses",
+ "name": "nftImage",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -32822,8 +31991,8 @@
"deprecationReason": null
},
{
- "name": "imageClasses_contains",
- "description": "All values containing the given string.",
+ "name": "nftName",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -32834,27 +32003,42 @@
"deprecationReason": null
},
{
- "name": "imageClasses_ends_with",
- "description": "All values ending with the given string.",
+ "name": "organizer",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateOneInlineInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "imageClasses_in",
- "description": "All values that are contained in given list.",
+ "name": "connect",
+ "description": "Connect multiple existing LoyaltyCard documents",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardConnectInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -32862,51 +32046,79 @@
"deprecationReason": null
},
{
- "name": "imageClasses_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "create",
+ "description": "Create and connect multiple LoyaltyCard documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "imageClasses_not_contains",
- "description": "All values not containing the given string.",
+ "name": "delete",
+ "description": "Delete multiple LoyaltyCard documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "imageClasses_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "disconnect",
+ "description": "Disconnect multiple LoyaltyCard documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "imageClasses_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "set",
+ "description": "Override currently-connected documents with multiple existing LoyaltyCard documents",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -32914,31 +32126,58 @@
"deprecationReason": null
},
{
- "name": "imageClasses_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "update",
+ "description": "Update multiple LoyaltyCard documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "imageClasses_starts_with",
- "description": "All values starting with the given string.",
+ "name": "upsert",
+ "description": "Upsert multiple LoyaltyCard documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "instagramHandle",
+ "name": "nftName",
"description": null,
"type": {
"kind": "SCALAR",
@@ -32948,13 +32187,24 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "instagramHandle_contains",
- "description": "All values containing the given string.",
+ "name": "connect",
+ "description": "Connect existing LoyaltyCard document",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -32962,11 +32212,11 @@
"deprecationReason": null
},
{
- "name": "instagramHandle_ends_with",
- "description": "All values ending with the given string.",
+ "name": "create",
+ "description": "Create and connect one LoyaltyCard document",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
"ofType": null
},
"defaultValue": null,
@@ -32974,27 +32224,23 @@
"deprecationReason": null
},
{
- "name": "instagramHandle_in",
- "description": "All values that are contained in given list.",
+ "name": "delete",
+ "description": "Delete currently connected LoyaltyCard document",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "instagramHandle_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "disconnect",
+ "description": "Disconnect currently connected LoyaltyCard document",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -33002,11 +32248,11 @@
"deprecationReason": null
},
{
- "name": "instagramHandle_not_contains",
- "description": "All values not containing the given string.",
+ "name": "update",
+ "description": "Update single LoyaltyCard document",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -33014,26 +32260,37 @@
"deprecationReason": null
},
{
- "name": "instagramHandle_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "upsert",
+ "description": "Upsert single LoyaltyCard document",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "instagramHandle_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "data",
+ "description": "Document to update",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
"ofType": null
}
},
@@ -33042,74 +32299,84 @@
"deprecationReason": null
},
{
- "name": "instagramHandle_not_starts_with",
- "description": "All values not starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle_starts_with",
- "description": "All values starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
- "description": null,
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "name_contains",
- "description": "All values containing the given string.",
+ "name": "create",
+ "description": "Create document if it didn't exist",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_ends_with",
- "description": "All values ending with the given string.",
+ "name": "update",
+ "description": "Update document if it exists",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "name_in",
- "description": "All values that are contained in given list.",
+ "name": "data",
+ "description": "Upsert data",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
"ofType": null
}
},
@@ -33118,51 +32385,89 @@
"deprecationReason": null
},
{
- "name": "name_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereComparatorInput",
+ "description": "This contains a set of filters that can be used to compare values internally",
+ "fields": null,
+ "inputFields": [
{
- "name": "name_not_contains",
- "description": "All values not containing the given string.",
+ "name": "outdated_to",
+ "description": "This field can be used to request to check if the entry is outdated by internal comparison",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
{
- "name": "name_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -33170,20 +32475,28 @@
"deprecationReason": null
},
{
- "name": "name_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_starts_with",
- "description": "All values starting with the given string.",
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -33194,7 +32507,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt",
+ "name": "createdAt",
"description": null,
"type": {
"kind": "SCALAR",
@@ -33206,7 +32519,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_gt",
+ "name": "createdAt_gt",
"description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
@@ -33218,7 +32531,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_gte",
+ "name": "createdAt_gte",
"description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
@@ -33230,7 +32543,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_in",
+ "name": "createdAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -33246,7 +32559,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lt",
+ "name": "createdAt_lt",
"description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
@@ -33258,7 +32571,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lte",
+ "name": "createdAt_lte",
"description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
@@ -33270,7 +32583,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_not",
+ "name": "createdAt_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -33282,7 +32595,7 @@
"deprecationReason": null
},
{
- "name": "publishedAt_not_in",
+ "name": "createdAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -33298,7 +32611,7 @@
"deprecationReason": null
},
{
- "name": "publishedBy",
+ "name": "createdBy",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -33310,11 +32623,11 @@
"deprecationReason": null
},
{
- "name": "scheduledIn_every",
+ "name": "documentInStages_every",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -33322,11 +32635,11 @@
"deprecationReason": null
},
{
- "name": "scheduledIn_none",
+ "name": "documentInStages_none",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -33334,11 +32647,11 @@
"deprecationReason": null
},
{
- "name": "scheduledIn_some",
+ "name": "documentInStages_some",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "LoyaltyCardWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -33346,11 +32659,11 @@
"deprecationReason": null
},
{
- "name": "slug",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33358,11 +32671,11 @@
"deprecationReason": null
},
{
- "name": "slug_contains",
+ "name": "id_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33370,11 +32683,11 @@
"deprecationReason": null
},
{
- "name": "slug_ends_with",
+ "name": "id_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33382,14 +32695,14 @@
"deprecationReason": null
},
{
- "name": "slug_in",
+ "name": "id_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -33398,11 +32711,11 @@
"deprecationReason": null
},
{
- "name": "slug_not",
+ "name": "id_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33410,11 +32723,11 @@
"deprecationReason": null
},
{
- "name": "slug_not_contains",
+ "name": "id_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33422,11 +32735,11 @@
"deprecationReason": null
},
{
- "name": "slug_not_ends_with",
+ "name": "id_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33434,14 +32747,14 @@
"deprecationReason": null
},
{
- "name": "slug_not_in",
+ "name": "id_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -33450,11 +32763,11 @@
"deprecationReason": null
},
{
- "name": "slug_not_starts_with",
+ "name": "id_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33462,11 +32775,11 @@
"deprecationReason": null
},
{
- "name": "slug_starts_with",
+ "name": "id_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -33474,7 +32787,19 @@
"deprecationReason": null
},
{
- "name": "telegramHandle",
+ "name": "nftImage",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
"description": null,
"type": {
"kind": "SCALAR",
@@ -33486,7 +32811,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_contains",
+ "name": "nftName_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -33498,7 +32823,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_ends_with",
+ "name": "nftName_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -33510,7 +32835,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_in",
+ "name": "nftName_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -33526,7 +32851,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_not",
+ "name": "nftName_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -33538,7 +32863,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_not_contains",
+ "name": "nftName_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -33550,7 +32875,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_not_ends_with",
+ "name": "nftName_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -33562,7 +32887,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_not_in",
+ "name": "nftName_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -33578,7 +32903,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_not_starts_with",
+ "name": "nftName_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -33590,7 +32915,7 @@
"deprecationReason": null
},
{
- "name": "telegramHandle_starts_with",
+ "name": "nftName_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -33602,11 +32927,23 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle",
+ "name": "organizer",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33614,11 +32951,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_contains",
- "description": "All values containing the given string.",
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33626,11 +32963,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_ends_with",
- "description": "All values ending with the given string.",
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33638,14 +32975,14 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_in",
+ "name": "publishedAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -33654,11 +32991,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33666,11 +33003,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_not_contains",
- "description": "All values not containing the given string.",
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33678,11 +33015,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33690,14 +33027,14 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_not_in",
+ "name": "publishedAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -33706,11 +33043,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "publishedBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -33718,11 +33055,11 @@
"deprecationReason": null
},
{
- "name": "tiktokHandle_starts_with",
- "description": "All values starting with the given string.",
+ "name": "scheduledIn_every",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -33730,11 +33067,11 @@
"deprecationReason": null
},
{
- "name": "twitterHandle",
+ "name": "scheduledIn_none",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -33742,11 +33079,11 @@
"deprecationReason": null
},
{
- "name": "twitterHandle_contains",
- "description": "All values containing the given string.",
+ "name": "scheduledIn_some",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -33754,11 +33091,11 @@
"deprecationReason": null
},
{
- "name": "twitterHandle_ends_with",
- "description": "All values ending with the given string.",
+ "name": "updatedAt",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33766,127 +33103,23 @@
"deprecationReason": null
},
{
- "name": "twitterHandle_in",
- "description": "All values that are contained in given list.",
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "twitterHandle_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle_not_contains",
- "description": "All values not containing the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle_not_ends_with",
- "description": "All values not ending with the given string",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle_not_in",
- "description": "All values that are not contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle_not_starts_with",
- "description": "All values not starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "twitterHandle_starts_with",
- "description": "All values starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -33972,53 +33205,72 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "youtubeHandle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "fields": null,
+ "inputFields": [
{
- "name": "youtubeHandle_contains",
- "description": "All values containing the given string.",
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "youtubeHandle_ends_with",
- "description": "All values ending with the given string.",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "youtubeHandle_in",
- "description": "All values that are contained in given list.",
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -34026,11 +33278,11 @@
"deprecationReason": null
},
{
- "name": "youtubeHandle_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "compareWithParent",
+ "description": "This field contains fields which can be set as true or false to specify an internal comparison",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereComparatorInput",
"ofType": null
},
"defaultValue": null,
@@ -34038,806 +33290,1525 @@
"deprecationReason": null
},
{
- "name": "youtubeHandle_not_contains",
- "description": "All values not containing the given string.",
+ "name": "stage",
+ "description": "Specify the stage to compare with",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "description": "References LoyaltyCard record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "youtubeHandle_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "description": "An object with an ID",
+ "fields": [
{
- "name": "youtubeHandle_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "id",
+ "description": "The id of the object.",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "youtubeHandle_not_starts_with",
- "description": "All values not starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "youtubeHandle_starts_with",
- "description": "All values starting with the given string.",
+ "name": "stage",
+ "description": "The Stage of an object",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "OrganizerOrderByInput",
- "description": null,
- "fields": null,
"inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "createdAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "facebookHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "facebookHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImageClasses_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImageClasses_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "imageClasses_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "imageClasses_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "slug_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": [
{
- "name": "slug_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
},
{
- "name": "telegramHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
},
{
- "name": "telegramHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
},
{
- "name": "tiktokHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
},
{
- "name": "tiktokHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
},
{
- "name": "twitterHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
},
{
- "name": "twitterHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
},
{
- "name": "updatedAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
},
{
- "name": "updatedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
},
{
- "name": "youtubeHandle_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
},
{
- "name": "youtubeHandle_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
}
- ],
- "possibleTypes": null
+ ]
},
{
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "clr7j9mmt0q2j01uo9zrs2fm7",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "description": "An organizer is an entity that launch events and handle the pass benefits.",
+ "fields": [
{
"name": "contentSpaces",
"description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ContentSpaceOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceUpdateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description",
- "description": "description input for default locale (en)",
- "type": {
- "kind": "SCALAR",
- "name": "RichTextAST",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "discordWidgetId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "events",
- "description": null,
+ "name": "createdAt",
+ "description": "The time the document was created",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventUpdateManyInlineInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "facebookHandle",
- "description": null,
+ "name": "createdBy",
+ "description": "User that created this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "User",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "heroImage",
+ "name": "description",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateOneInlineInput",
+ "kind": "OBJECT",
+ "name": "OrganizerDescriptionRichText",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "heroImageClasses",
- "description": null,
+ "name": "discordWidgetId",
+ "description": "The discord widge id of the organizer. You need to enable the widget in your discord server and copy the value in `server id`. For details instruction of how to enable and find the id, refer to this section https://dev.fandom.com/wiki/DiscordIntegrator#Enabling_the_widget",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "image",
- "description": null,
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current stage should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stages",
+ "description": "Potential stages that should be returned",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[DRAFT, PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateOneInlineInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "imageClasses",
+ "name": "events",
"description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "instagramHandle",
- "description": null,
+ "name": "facebookHandle",
+ "description": "The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "localizations",
- "description": "Manage document localizations",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationsInput",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name",
- "description": null,
+ "name": "heroImage",
+ "description": "An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "slug",
- "description": null,
+ "name": "heroImageClasses",
+ "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "telegramHandle",
- "description": null,
+ "name": "history",
+ "description": "List of Organizer versions",
+ "args": [
+ {
+ "name": "limit",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "10",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "0",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stageOverride",
+ "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Version",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tiktokHandle",
- "description": null,
+ "name": "id",
+ "description": "The unique identifier",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "twitterHandle",
- "description": null,
+ "name": "image",
+ "description": "Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "youtubeHandle",
- "description": null,
+ "name": "imageClasses",
+ "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
- "description": null,
+ "name": "instagramHandle",
+ "description": "The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "RichTextAST",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": null,
+ "name": "locale",
+ "description": "System Locale field",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationDataInput",
+ "kind": "ENUM",
+ "name": "Locale",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
- "description": null,
+ "name": "localizations",
+ "description": "Get the other localizations for this document",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current locale should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en, fr]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
- "description": "Localizations to create",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationInput",
+ "name": "loyaltyCard",
+ "description": null,
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Localizations to delete",
+ "name": "name",
+ "description": "Name of the organizer",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Localizations to update",
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedBy",
+ "description": "User that last published this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
+ "name": "scheduledIn",
"description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertLocalizationInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyInlineInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "connect",
- "description": "Connect multiple existing Organizer documents",
+ "name": "slug",
+ "description": "Used in URL",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerConnectInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "create",
- "description": "Create and connect multiple Organizer documents",
+ "name": "stage",
+ "description": "System stage field",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Delete multiple Organizer documents",
+ "name": "telegramHandle",
+ "description": "The telegram handle (username) of the organizer. You can just copy the text on your telegram profile page in parameters after the @, like 'johndoe' for '@johndoe'.",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tiktokHandle",
+ "description": "The tiktok handle (username) of the organizer. You can just copy the name on your tiktok landing page.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "twitterHandle",
+ "description": "The twitter (X) handle (username) of the organizer. You can just copy the text on your twitter landing page after the @, like 'johndoe' for '@johndoe'.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": "The time the document was updated",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": "User that last updated this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "youtubeHandle",
+ "description": "The youtube handle (username) of the organizer. YYou can just copy the text on your youtube landing page after the @, like 'johndoe' for '@johndoe'.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [
+ {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "ofType": null
+ }
+ ],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerConnectInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "position",
+ "description": "Allow to specify document position in list of connected documents, will default to appending at end of list",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ConnectPositionInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "disconnect",
- "description": "Disconnect multiple Organizer documents",
+ "name": "where",
+ "description": "Document to connect",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "description": "A connection to a list of items.",
+ "fields": [
{
- "name": "set",
- "description": "Override currently-connected documents with multiple existing Organizer documents",
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "Aggregate",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update multiple Organizer documents",
+ "name": "edges",
+ "description": "A list of edges.",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateWithNestedWhereUniqueInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerEdge",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
- "description": "Upsert multiple Organizer documents",
+ "name": "pageInfo",
+ "description": "Information to aid in pagination.",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertWithNestedWhereUniqueInput",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyInput",
+ "name": "OrganizerCreateInput",
"description": null,
"fields": null,
"inputFields": [
+ {
+ "name": "clr7j9mmt0q2j01uo9zrs2fm7",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cltzsen11092507ul9qlg4ywb",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contentSpaces",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "description",
"description": "description input for default locale (en)",
@@ -34862,6 +34833,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "events",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "facebookHandle",
"description": null,
@@ -34874,6 +34857,22 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "heroImage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateOneInlineInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "heroImageClasses",
"description": null,
@@ -34886,6 +34885,22 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "image",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateOneInlineInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "imageClasses",
"description": null,
@@ -34912,16 +34927,60 @@
},
{
"name": "localizations",
- "description": "Optional updates to localizations",
+ "description": "Inline mutations for managing document localizations excluding the default locale",
"type": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationsInput",
+ "name": "OrganizerCreateLocalizationsInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateOneInlineInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "name",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "slug",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "telegramHandle",
"description": null,
@@ -34958,6 +35017,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "youtubeHandle",
"description": null,
@@ -34977,10 +35048,22 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationDataInput",
+ "name": "OrganizerCreateLocalizationDataInput",
"description": null,
"fields": null,
"inputFields": [
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "description",
"description": null,
@@ -34992,6 +35075,18 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"interfaces": null,
@@ -35000,19 +35095,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationInput",
+ "name": "OrganizerCreateLocalizationInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "data",
- "description": null,
+ "description": "Localization input",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationDataInput",
+ "name": "OrganizerCreateLocalizationDataInput",
"ofType": null
}
},
@@ -35043,13 +35138,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationsInput",
+ "name": "OrganizerCreateLocalizationsInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "update",
- "description": "Localizations to update",
+ "name": "create",
+ "description": "Create localizations for the newly-created document",
"type": {
"kind": "LIST",
"name": null,
@@ -35058,7 +35153,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyLocalizationInput",
+ "name": "OrganizerCreateLocalizationInput",
"ofType": null
}
}
@@ -35074,64 +35169,67 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateOneInlineInput",
+ "name": "OrganizerCreateManyInlineInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "connect",
- "description": "Connect existing Organizer document",
+ "description": "Connect multiple existing Organizer documents",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "create",
- "description": "Create and connect one Organizer document",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "delete",
- "description": "Delete currently connected Organizer document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "disconnect",
- "description": "Disconnect currently connected Organizer document",
+ "name": "create",
+ "description": "Create and connect multiple existing Organizer documents",
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "update",
- "description": "Update single Organizer document",
+ "name": "connect",
+ "description": "Connect one existing Organizer document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateWithNestedWhereUniqueInput",
+ "name": "OrganizerWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -35139,11 +35237,11 @@
"deprecationReason": null
},
{
- "name": "upsert",
- "description": "Upsert single Organizer document",
+ "name": "create",
+ "description": "Create and connect one Organizer document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertWithNestedWhereUniqueInput",
+ "name": "OrganizerCreateInput",
"ofType": null
},
"defaultValue": null,
@@ -35156,219 +35254,243 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateWithNestedWhereUniqueInput",
+ "kind": "OBJECT",
+ "name": "OrganizerDescriptionRichText",
"description": null,
- "fields": null,
- "inputFields": [
+ "fields": [
{
- "name": "data",
- "description": "Document to update",
+ "name": "html",
+ "description": "Returns HTMl representation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "Unique document search",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "create",
- "description": "Create document if it didn't exist",
+ "name": "json",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
+ "kind": "SCALAR",
+ "name": "RichTextAST",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update document if it exists",
+ "name": "markdown",
+ "description": "Returns Markdown representation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
+ "name": "raw",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateLocalizationDataInput",
+ "kind": "SCALAR",
+ "name": "RichTextAST",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
+ "name": "references",
"description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "UNION",
+ "name": "OrganizerDescriptionRichTextEmbeddedTypes",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": null,
+ "name": "text",
+ "description": "Returns plain-text contents of RichText",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateLocalizationDataInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertWithNestedWhereUniqueInput",
+ "kind": "UNION",
+ "name": "OrganizerDescriptionRichTextEmbeddedTypes",
"description": null,
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": [
{
- "name": "data",
- "description": "Upsert data",
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
+ ]
+ },
+ {
+ "kind": "OBJECT",
+ "name": "OrganizerEdge",
+ "description": "An edge in a connection.",
+ "fields": [
+ {
+ "name": "cursor",
+ "description": "A cursor for use in pagination.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "Unique document search",
+ "name": "node",
+ "description": "The item at the end of the edge.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
+ "kind": "OBJECT",
+ "name": "Organizer",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereComparatorInput",
- "description": "This contains a set of filters that can be used to compare values internally",
- "fields": null,
- "inputFields": [
- {
- "name": "outdated_to",
- "description": "This field can be used to request to check if the entry is outdated by internal comparison",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
+ "name": "OrganizerManyWhereInput",
"description": "Identifies documents",
"fields": null,
"inputFields": [
@@ -36460,6 +36582,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -37501,78 +37635,245 @@
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "ENUM",
+ "name": "OrganizerOrderByInput",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "createdAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "discordWidgetId_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "discordWidgetId_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "facebookHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "facebookHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "heroImageClasses_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "heroImageClasses_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "imageClasses_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "imageClasses_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "instagramHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "instagramHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "slug_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "slug_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "telegramHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "telegramHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tiktokHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tiktokHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "twitterHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "twitterHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "youtubeHandle_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "youtubeHandle_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
{
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
- "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "name": "OrganizerUpdateInput",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
+ "name": "clr7j9mmt0q2j01uo9zrs2fm7",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInlineInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
+ "name": "cltzsen11092507ul9qlg4ywb",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInlineInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "OR",
- "description": "Logical OR on all given filters.",
+ "name": "contentSpaces",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceUpdateManyInlineInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "compareWithParent",
- "description": "This field contains fields which can be set as true or false to specify an internal comparison",
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereComparatorInput",
+ "kind": "SCALAR",
+ "name": "RichTextAST",
"ofType": null
},
"defaultValue": null,
@@ -37580,34 +37881,23 @@
"deprecationReason": null
},
{
- "name": "stage",
- "description": "Specify the stage to compare with",
+ "name": "discordWidgetId",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "Stage",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "description": "References Organizer record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "id",
+ "name": "events",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "EventUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -37615,7 +37905,7 @@
"deprecationReason": null
},
{
- "name": "name",
+ "name": "facebookHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37627,7 +37917,19 @@
"deprecationReason": null
},
{
- "name": "slug",
+ "name": "heroImage",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "heroImageClasses",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37637,20 +37939,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer",
- "description": "References Organizer record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "name",
+ "name": "image",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "imageClasses",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37662,7 +37965,7 @@
"deprecationReason": null
},
{
- "name": "slug",
+ "name": "instagramHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37672,18 +37975,31 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer",
- "description": "References Organizer record uniquely",
- "fields": null,
- "inputFields": [
+ },
+ {
+ "name": "localizations",
+ "description": "Manage document localizations",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationsInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -37707,20 +38023,9 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer",
- "description": "References Organizer record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "name",
+ "name": "telegramHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37732,7 +38037,31 @@
"deprecationReason": null
},
{
- "name": "slug",
+ "name": "tiktokHandle",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "twitterHandle",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "youtubeHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -37749,936 +38078,409 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "Pack",
- "description": "The 'Pack' model represents a collection of unique NFTs (eventPasses) bundled together. It serves as a loot system for users, offering them a chance to receive one or more NFTs related to specific events. Each pack contains details about its contents and the associated event, fostering a more engaging and rewarding experience for users.\n",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationDataInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "createdAt",
- "description": "The time the document was created",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "description",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "RichTextAST",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationDataInput",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdBy",
- "description": "User that created this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "User",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "description",
- "description": "A brief overview detailing the contents and purpose of the Pack.",
- "args": [],
+ "name": "create",
+ "description": "Localizations to create",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateLocalizationInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "documentInStages",
- "description": "Get the document in other stages",
- "args": [
- {
- "name": "includeCurrent",
- "description": "Decides if the current stage should be included or not",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "inheritLocale",
- "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stages",
- "description": "Potential stages that should be returned",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[DRAFT, PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "delete",
+ "description": "Localizations to delete",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPasses",
- "description": "This section allows you to select or create the event passes that will be included in your Pack. Think of it as curating a collection of exclusive access tickets, each offering unique experiences for the events. Here, you can assemble a variety of event passes that together form the enticing bundle that is your Pack.",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "update",
+ "description": "Localizations to update",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "UNION",
- "name": "PackEventPasses",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationInput",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "history",
- "description": "List of Pack versions",
- "args": [
- {
- "name": "limit",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "defaultValue": "10",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "defaultValue": "0",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stageOverride",
- "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "upsert",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Version",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpsertLocalizationInput",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
- "description": "The unique identifier",
- "args": [],
+ "name": "connect",
+ "description": "Connect multiple existing Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerConnectInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
- "description": "System Locale field",
- "args": [],
+ "name": "create",
+ "description": "Create and connect multiple Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Get the other localizations for this document",
- "args": [
- {
- "name": "includeCurrent",
- "description": "Decides if the current locale should be included or not",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en, fr]",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "delete",
+ "description": "Delete multiple Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name",
- "description": "User-friendly name of the the Pack, like \"Lottery for VIP 3-Day Pass\"",
- "args": [],
+ "name": "disconnect",
+ "description": "Disconnect multiple Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftDescription",
- "description": "Fixed description pertaining to the NFT Pack. This content is static and non-localizable.",
- "args": [],
+ "name": "set",
+ "description": "Override currently-connected documents with multiple existing Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftImage",
- "description": "Permanent image representing the NFT Pack. Advised resolution is 800 x 800 pixels. Image content is non-changeable and cannot be localized.",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "update",
+ "description": "Update multiple Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftName",
- "description": "Permanent name associated with the NFT. Cannot be changed or localized.",
- "args": [],
+ "name": "upsert",
+ "description": "Upsert multiple Organizer documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "organizer",
- "description": null,
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "SCALAR",
+ "name": "RichTextAST",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt",
- "description": "The time the document was published. Null on documents in draft stage.",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "discordWidgetId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": "User that last published this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "facebookHandle",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledIn",
+ "name": "heroImageClasses",
"description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": "System stage field",
- "args": [],
+ "name": "imageClasses",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt",
- "description": "The time the document was updated",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "instagramHandle",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedBy",
- "description": "User that last updated this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "localizations",
+ "description": "Optional updates to localizations",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyLocalizationsInput",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [
- {
- "kind": "INTERFACE",
- "name": "Entity",
- "ofType": null
},
{
- "kind": "INTERFACE",
- "name": "Node",
- "ofType": null
- }
- ],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackConnectInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "position",
- "description": "Allow to specify document position in list of connected documents, will default to appending at end of list",
+ "name": "telegramHandle",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ConnectPositionInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -38686,145 +38488,11 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "Document to connect",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "PackConnection",
- "description": "A connection to a list of items.",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "edges",
- "description": "A list of edges.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "PackEdge",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pageInfo",
- "description": "Information to aid in pagination.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "PageInfo",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "createdAt",
+ "name": "tiktokHandle",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description",
- "description": "description input for default locale (en)",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPasses",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesCreateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "localizations",
- "description": "Inline mutations for managing document localizations excluding the default locale",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationsInput",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -38832,75 +38500,11 @@
"deprecationReason": null
},
{
- "name": "name",
- "description": "name input for default locale (en)",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftImage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetCreateOneInlineInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftName",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer",
+ "name": "twitterHandle",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateOneInlineInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -38908,11 +38512,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "youtubeHandle",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -38926,60 +38530,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationDataInput",
+ "name": "OrganizerUpdateManyLocalizationDataInput",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "createdAt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "description",
"description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt",
- "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "RichTextAST",
"ofType": null
},
"defaultValue": null,
@@ -38993,19 +38553,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationInput",
+ "name": "OrganizerUpdateManyLocalizationInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "data",
- "description": "Localization input",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationDataInput",
+ "name": "OrganizerUpdateManyLocalizationDataInput",
"ofType": null
}
},
@@ -39036,13 +38596,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationsInput",
+ "name": "OrganizerUpdateManyLocalizationsInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "create",
- "description": "Create localizations for the newly-created document",
+ "name": "update",
+ "description": "Localizations to update",
"type": {
"kind": "LIST",
"name": null,
@@ -39051,7 +38611,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationInput",
+ "name": "OrganizerUpdateManyLocalizationInput",
"ofType": null
}
}
@@ -39067,25 +38627,17 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackCreateManyInlineInput",
+ "name": "OrganizerUpdateOneInlineInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "connect",
- "description": "Connect multiple existing Pack documents",
+ "description": "Connect existing Organizer document",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -39093,41 +38645,10 @@
},
{
"name": "create",
- "description": "Create and connect multiple existing Pack documents",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateOneInlineInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "connect",
- "description": "Connect one existing Pack document",
+ "description": "Create and connect one Organizer document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
+ "name": "OrganizerCreateInput",
"ofType": null
},
"defaultValue": null,
@@ -39135,116 +38656,47 @@
"deprecationReason": null
},
{
- "name": "create",
- "description": "Create and connect one Pack document",
+ "name": "delete",
+ "description": "Delete currently connected Organizer document",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "PackEdge",
- "description": "An edge in a connection.",
- "fields": [
- {
- "name": "cursor",
- "description": "A cursor for use in pagination.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "node",
- "description": "The item at the end of the edge.",
- "args": [],
+ "name": "disconnect",
+ "description": "Disconnect currently connected Organizer document",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "UNION",
- "name": "PackEventPasses",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": [
- {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- }
- ]
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesConnectInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "EventPass",
- "description": null,
+ "name": "update",
+ "description": "Update single Organizer document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassConnectInput",
+ "name": "OrganizerUpdateWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesCreateInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "EventPass",
- "description": null,
+ "name": "upsert",
+ "description": "Upsert single Organizer document",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassCreateInput",
+ "name": "OrganizerUpsertWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -39258,24 +38710,20 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackEventPassesCreateManyInlineInput",
+ "name": "OrganizerUpdateWithNestedWhereUniqueInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "connect",
- "description": "Connect multiple existing PackEventPasses documents",
+ "name": "data",
+ "description": "Document to update",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39283,19 +38731,15 @@
"deprecationReason": null
},
{
- "name": "create",
- "description": "Create and connect multiple existing PackEventPasses documents",
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesCreateInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39309,44 +38753,20 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpdateManyInlineInput",
+ "name": "OrganizerUpsertInput",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "connect",
- "description": "Connect multiple existing PackEventPasses documents",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesConnectInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "create",
- "description": "Create and connect multiple PackEventPasses documents",
+ "description": "Create document if it didn't exist",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesCreateInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39354,39 +38774,42 @@
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Delete multiple PackEventPasses documents",
+ "name": "update",
+ "description": "Update document if it exists",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateInput",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpsertLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "disconnect",
- "description": "Disconnect multiple PackEventPasses documents",
+ "name": "create",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateLocalizationDataInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39394,19 +38817,15 @@
"deprecationReason": null
},
{
- "name": "set",
- "description": "Override currently-connected documents with multiple existing PackEventPasses documents",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereUniqueInput",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39415,38 +38834,14 @@
},
{
"name": "update",
- "description": "Update multiple PackEventPasses documents",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpdateWithNestedWhereUniqueInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "upsert",
- "description": "Upsert multiple PackEventPasses documents",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpsertWithNestedWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateLocalizationDataInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -39460,63 +38855,37 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpdateWithNestedWhereUniqueInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "EventPass",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpdateWithNestedWhereUniqueInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpsertWithNestedWhereUniqueInput",
+ "name": "OrganizerUpsertWithNestedWhereUniqueInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "EventPass",
- "description": null,
+ "name": "data",
+ "description": "Upsert data",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpsertWithNestedWhereUniqueInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpsertInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "EventPass",
- "description": null,
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -39529,16 +38898,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereUniqueInput",
- "description": null,
+ "name": "OrganizerWhereComparatorInput",
+ "description": "This contains a set of filters that can be used to compare values internally",
"fields": null,
"inputFields": [
{
- "name": "EventPass",
- "description": null,
+ "name": "outdated_to",
+ "description": "This field can be used to request to check if the entry is outdated by internal comparison",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -39552,7 +38921,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
+ "name": "OrganizerWhereInput",
"description": "Identifies documents",
"fields": null,
"inputFields": [
@@ -39567,7 +38936,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
+ "name": "OrganizerWhereInput",
"ofType": null
}
}
@@ -39587,7 +38956,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
+ "name": "OrganizerWhereInput",
"ofType": null
}
}
@@ -39607,7 +38976,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
+ "name": "OrganizerWhereInput",
"ofType": null
}
}
@@ -39628,6 +38997,42 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "contentSpaces_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contentSpaces_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contentSpaces_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "createdAt",
"description": null,
@@ -39745,23 +39150,11 @@
"deprecationReason": null
},
{
- "name": "documentInStages_every",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_none",
+ "name": "discordWidgetId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39769,11 +39162,11 @@
"deprecationReason": null
},
{
- "name": "documentInStages_some",
- "description": null,
+ "name": "discordWidgetId_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39781,11 +39174,11 @@
"deprecationReason": null
},
{
- "name": "eventPasses_empty",
- "description": "All values in which the union is empty",
+ "name": "discordWidgetId_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39793,23 +39186,27 @@
"deprecationReason": null
},
{
- "name": "eventPasses_some",
- "description": "Matches if the union contains at least one connection to the provided item to the filter",
+ "name": "discordWidgetId_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "discordWidgetId_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39817,11 +39214,11 @@
"deprecationReason": null
},
{
- "name": "id_contains",
- "description": "All values containing the given string.",
+ "name": "discordWidgetId_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39829,11 +39226,11 @@
"deprecationReason": null
},
{
- "name": "id_ends_with",
- "description": "All values ending with the given string.",
+ "name": "discordWidgetId_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39841,14 +39238,14 @@
"deprecationReason": null
},
{
- "name": "id_in",
- "description": "All values that are contained in given list.",
+ "name": "discordWidgetId_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
}
},
@@ -39857,11 +39254,11 @@
"deprecationReason": null
},
{
- "name": "id_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "discordWidgetId_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39869,11 +39266,11 @@
"deprecationReason": null
},
{
- "name": "id_not_contains",
- "description": "All values not containing the given string.",
+ "name": "discordWidgetId_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -39881,11 +39278,11 @@
"deprecationReason": null
},
{
- "name": "id_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "documentInStages_every",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -39893,27 +39290,23 @@
"deprecationReason": null
},
{
- "name": "id_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "documentInStages_none",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "documentInStages_some",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -39921,11 +39314,11 @@
"deprecationReason": null
},
{
- "name": "id_starts_with",
- "description": "All values starting with the given string.",
+ "name": "events_every",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -39933,7 +39326,31 @@
"deprecationReason": null
},
{
- "name": "nftDescription",
+ "name": "events_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "events_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "facebookHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -39945,7 +39362,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_contains",
+ "name": "facebookHandle_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -39957,7 +39374,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_ends_with",
+ "name": "facebookHandle_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -39969,7 +39386,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_in",
+ "name": "facebookHandle_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -39985,7 +39402,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not",
+ "name": "facebookHandle_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -39997,7 +39414,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not_contains",
+ "name": "facebookHandle_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -40009,7 +39426,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not_ends_with",
+ "name": "facebookHandle_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -40021,7 +39438,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not_in",
+ "name": "facebookHandle_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -40037,7 +39454,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not_starts_with",
+ "name": "facebookHandle_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -40049,7 +39466,7 @@
"deprecationReason": null
},
{
- "name": "nftDescription_starts_with",
+ "name": "facebookHandle_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -40061,7 +39478,7 @@
"deprecationReason": null
},
{
- "name": "nftImage",
+ "name": "heroImage",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -40073,7 +39490,7 @@
"deprecationReason": null
},
{
- "name": "nftName",
+ "name": "heroImageClasses",
"description": null,
"type": {
"kind": "SCALAR",
@@ -40085,7 +39502,7 @@
"deprecationReason": null
},
{
- "name": "nftName_contains",
+ "name": "heroImageClasses_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -40097,7 +39514,7 @@
"deprecationReason": null
},
{
- "name": "nftName_ends_with",
+ "name": "heroImageClasses_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -40109,7 +39526,7 @@
"deprecationReason": null
},
{
- "name": "nftName_in",
+ "name": "heroImageClasses_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -40125,7 +39542,7 @@
"deprecationReason": null
},
{
- "name": "nftName_not",
+ "name": "heroImageClasses_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -40137,7 +39554,7 @@
"deprecationReason": null
},
{
- "name": "nftName_not_contains",
+ "name": "heroImageClasses_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -40149,7 +39566,7 @@
"deprecationReason": null
},
{
- "name": "nftName_not_ends_with",
+ "name": "heroImageClasses_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -40161,7 +39578,7 @@
"deprecationReason": null
},
{
- "name": "nftName_not_in",
+ "name": "heroImageClasses_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -40177,7 +39594,7 @@
"deprecationReason": null
},
{
- "name": "nftName_not_starts_with",
+ "name": "heroImageClasses_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -40189,7 +39606,7 @@
"deprecationReason": null
},
{
- "name": "nftName_starts_with",
+ "name": "heroImageClasses_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -40201,23 +39618,11 @@
"deprecationReason": null
},
{
- "name": "organizer",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40225,11 +39630,11 @@
"deprecationReason": null
},
{
- "name": "publishedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40237,11 +39642,11 @@
"deprecationReason": null
},
{
- "name": "publishedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40249,14 +39654,14 @@
"deprecationReason": null
},
{
- "name": "publishedAt_in",
+ "name": "id_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
}
},
@@ -40265,11 +39670,11 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lt",
- "description": "All values less than the given value.",
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40277,11 +39682,11 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40289,11 +39694,11 @@
"deprecationReason": null
},
{
- "name": "publishedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40301,14 +39706,14 @@
"deprecationReason": null
},
{
- "name": "publishedAt_not_in",
+ "name": "id_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
}
},
@@ -40317,23 +39722,11 @@
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "scheduledIn_every",
- "description": null,
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40341,11 +39734,11 @@
"deprecationReason": null
},
{
- "name": "scheduledIn_none",
- "description": null,
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -40353,11 +39746,11 @@
"deprecationReason": null
},
{
- "name": "scheduledIn_some",
+ "name": "image",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "AssetWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -40365,11 +39758,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "imageClasses",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40377,11 +39770,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "imageClasses_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40389,11 +39782,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "imageClasses_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40401,14 +39794,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_in",
+ "name": "imageClasses_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -40417,11 +39810,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lt",
- "description": "All values less than the given value.",
+ "name": "imageClasses_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40429,11 +39822,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "imageClasses_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40441,11 +39834,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "imageClasses_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40453,14 +39846,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not_in",
+ "name": "imageClasses_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -40469,138 +39862,56 @@
"deprecationReason": null
},
{
- "name": "updatedBy",
- "description": null,
+ "name": "imageClasses_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "PackOrderByInput",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "createdAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftName_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "nftName_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_ASC",
- "description": null,
+ "name": "imageClasses_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_DESC",
+ "name": "instagramHandle",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_ASC",
- "description": null,
+ "name": "instagramHandle_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "description",
- "description": "description input for default locale (en)",
+ "name": "instagramHandle_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -40611,23 +39922,27 @@
"deprecationReason": null
},
{
- "name": "eventPasses",
- "description": null,
+ "name": "instagramHandle_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesUpdateManyInlineInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Manage document localizations",
+ "name": "instagramHandle_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationsInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -40635,8 +39950,8 @@
"deprecationReason": null
},
{
- "name": "name",
- "description": "name input for default locale (en)",
+ "name": "instagramHandle_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -40647,8 +39962,8 @@
"deprecationReason": null
},
{
- "name": "nftDescription",
- "description": null,
+ "name": "instagramHandle_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -40659,20 +39974,24 @@
"deprecationReason": null
},
{
- "name": "nftImage",
- "description": null,
+ "name": "instagramHandle_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateOneInlineInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftName",
- "description": null,
+ "name": "instagramHandle_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -40683,34 +40002,23 @@
"deprecationReason": null
},
{
- "name": "organizer",
- "description": null,
+ "name": "instagramHandle_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateOneInlineInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
+ "name": "loyaltyCard",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -40728,75 +40036,41 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": null,
+ "name": "name_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationDataInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
- "description": null,
+ "name": "name_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
- "description": "Localizations to create",
+ "name": "name_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -40804,90 +40078,51 @@
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Localizations to delete",
+ "name": "name_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Localizations to update",
+ "name": "name_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
- "description": null,
+ "name": "name_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertLocalizationInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInlineInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "connect",
- "description": "Connect multiple existing Pack documents",
+ "name": "name_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackConnectInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -40895,142 +40130,87 @@
"deprecationReason": null
},
{
- "name": "create",
- "description": "Create and connect multiple Pack documents",
+ "name": "name_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Delete multiple Pack documents",
+ "name": "name_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "disconnect",
- "description": "Disconnect multiple Pack documents",
+ "name": "publishedAt",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "set",
- "description": "Override currently-connected documents with multiple existing Pack documents",
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update multiple Pack documents",
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateWithNestedWhereUniqueInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
- "description": "Upsert multiple Pack documents",
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertWithNestedWhereUniqueInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
- "description": "description input for default locale (en)",
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41038,11 +40218,11 @@
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Optional updates to localizations",
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationsInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41050,11 +40230,11 @@
"deprecationReason": null
},
{
- "name": "name",
- "description": "name input for default locale (en)",
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41062,46 +40242,39 @@
"deprecationReason": null
},
{
- "name": "nftDescription",
- "description": null,
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftName",
+ "name": "publishedBy",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
+ "name": "scheduledIn_every",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -41109,108 +40282,35 @@
"deprecationReason": null
},
{
- "name": "name",
+ "name": "scheduledIn_none",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
+ "name": "scheduledIn_some",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationDataInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
+ "name": "slug",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "update",
- "description": "Localizations to update",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateOneInlineInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "connect",
- "description": "Connect existing Pack document",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41218,11 +40318,11 @@
"deprecationReason": null
},
{
- "name": "create",
- "description": "Create and connect one Pack document",
+ "name": "slug_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41230,11 +40330,11 @@
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Delete currently connected Pack document",
+ "name": "slug_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41242,23 +40342,27 @@
"deprecationReason": null
},
{
- "name": "disconnect",
- "description": "Disconnect currently connected Pack document",
+ "name": "slug_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update single Pack document",
+ "name": "slug_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateWithNestedWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41266,182 +40370,114 @@
"deprecationReason": null
},
{
- "name": "upsert",
- "description": "Upsert single Pack document",
+ "name": "slug_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertWithNestedWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateWithNestedWhereUniqueInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": "Document to update",
+ "name": "slug_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "Unique document search",
+ "name": "slug_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
- "description": "Create document if it didn't exist",
+ "name": "slug_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update document if it exists",
+ "name": "slug_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
+ "name": "telegramHandle",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateLocalizationDataInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
- "description": null,
+ "name": "telegramHandle_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update",
- "description": null,
+ "name": "telegramHandle_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateLocalizationDataInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertWithNestedWhereUniqueInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": "Upsert data",
+ "name": "telegramHandle_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -41450,89 +40486,51 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "Unique document search",
+ "name": "telegramHandle_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereComparatorInput",
- "description": "This contains a set of filters that can be used to compare values internally",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "outdated_to",
- "description": "This field can be used to request to check if the entry is outdated by internal comparison",
+ "name": "telegramHandle_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "description": "Identifies documents",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
+ "name": "telegramHandle_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
+ "name": "telegramHandle_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -41540,28 +40538,20 @@
"deprecationReason": null
},
{
- "name": "OR",
- "description": "Logical OR on all given filters.",
+ "name": "telegramHandle_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_search",
- "description": "Contains search across all appropriate fields.",
+ "name": "telegramHandle_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -41572,11 +40562,11 @@
"deprecationReason": null
},
{
- "name": "createdAt",
+ "name": "tiktokHandle",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41584,11 +40574,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_gt",
- "description": "All values greater than the given value.",
+ "name": "tiktokHandle_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41596,11 +40586,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "tiktokHandle_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41608,14 +40598,14 @@
"deprecationReason": null
},
{
- "name": "createdAt_in",
+ "name": "tiktokHandle_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -41624,11 +40614,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_lt",
- "description": "All values less than the given value.",
+ "name": "tiktokHandle_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41636,11 +40626,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "tiktokHandle_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41648,11 +40638,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "tiktokHandle_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41660,14 +40650,14 @@
"deprecationReason": null
},
{
- "name": "createdAt_not_in",
+ "name": "tiktokHandle_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -41676,11 +40666,11 @@
"deprecationReason": null
},
{
- "name": "createdBy",
- "description": null,
+ "name": "tiktokHandle_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -41688,7 +40678,19 @@
"deprecationReason": null
},
{
- "name": "description",
+ "name": "tiktokHandle_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "twitterHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -41700,7 +40702,7 @@
"deprecationReason": null
},
{
- "name": "description_contains",
+ "name": "twitterHandle_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -41712,7 +40714,7 @@
"deprecationReason": null
},
{
- "name": "description_ends_with",
+ "name": "twitterHandle_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -41724,7 +40726,7 @@
"deprecationReason": null
},
{
- "name": "description_in",
+ "name": "twitterHandle_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -41740,7 +40742,7 @@
"deprecationReason": null
},
{
- "name": "description_not",
+ "name": "twitterHandle_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -41752,7 +40754,7 @@
"deprecationReason": null
},
{
- "name": "description_not_contains",
+ "name": "twitterHandle_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -41764,7 +40766,7 @@
"deprecationReason": null
},
{
- "name": "description_not_ends_with",
+ "name": "twitterHandle_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -41776,7 +40778,7 @@
"deprecationReason": null
},
{
- "name": "description_not_in",
+ "name": "twitterHandle_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -41792,7 +40794,7 @@
"deprecationReason": null
},
{
- "name": "description_not_starts_with",
+ "name": "twitterHandle_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -41804,7 +40806,7 @@
"deprecationReason": null
},
{
- "name": "description_starts_with",
+ "name": "twitterHandle_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -41816,71 +40818,11 @@
"deprecationReason": null
},
{
- "name": "documentInStages_every",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_none",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_some",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPasses_empty",
- "description": "All values in which the union is empty",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPasses_some",
- "description": "Matches if the union contains at least one connection to the provided item to the filter",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackEventPassesWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
+ "name": "updatedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41888,11 +40830,11 @@
"deprecationReason": null
},
{
- "name": "id_contains",
- "description": "All values containing the given string.",
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41900,11 +40842,11 @@
"deprecationReason": null
},
{
- "name": "id_ends_with",
- "description": "All values ending with the given string.",
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41912,14 +40854,14 @@
"deprecationReason": null
},
{
- "name": "id_in",
+ "name": "updatedAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
}
},
@@ -41928,11 +40870,11 @@
"deprecationReason": null
},
{
- "name": "id_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41940,11 +40882,11 @@
"deprecationReason": null
},
{
- "name": "id_not_contains",
- "description": "All values not containing the given string.",
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41952,11 +40894,11 @@
"deprecationReason": null
},
{
- "name": "id_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -41964,14 +40906,14 @@
"deprecationReason": null
},
{
- "name": "id_not_in",
+ "name": "updatedAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
}
},
@@ -41980,23 +40922,11 @@
"deprecationReason": null
},
{
- "name": "id_not_starts_with",
- "description": "All values not starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_starts_with",
- "description": "All values starting with the given string.",
+ "name": "updatedBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -42004,7 +40934,7 @@
"deprecationReason": null
},
{
- "name": "name",
+ "name": "youtubeHandle",
"description": null,
"type": {
"kind": "SCALAR",
@@ -42016,7 +40946,7 @@
"deprecationReason": null
},
{
- "name": "name_contains",
+ "name": "youtubeHandle_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -42028,7 +40958,7 @@
"deprecationReason": null
},
{
- "name": "name_ends_with",
+ "name": "youtubeHandle_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -42040,7 +40970,7 @@
"deprecationReason": null
},
{
- "name": "name_in",
+ "name": "youtubeHandle_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -42056,7 +40986,7 @@
"deprecationReason": null
},
{
- "name": "name_not",
+ "name": "youtubeHandle_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -42068,7 +40998,7 @@
"deprecationReason": null
},
{
- "name": "name_not_contains",
+ "name": "youtubeHandle_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -42080,7 +41010,7 @@
"deprecationReason": null
},
{
- "name": "name_not_ends_with",
+ "name": "youtubeHandle_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -42092,7 +41022,7 @@
"deprecationReason": null
},
{
- "name": "name_not_in",
+ "name": "youtubeHandle_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -42108,7 +41038,7 @@
"deprecationReason": null
},
{
- "name": "name_not_starts_with",
+ "name": "youtubeHandle_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -42120,7 +41050,7 @@
"deprecationReason": null
},
{
- "name": "name_starts_with",
+ "name": "youtubeHandle_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -42130,53 +41060,32 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "nftDescription",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_contains",
- "description": "All values containing the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_ends_with",
- "description": "All values ending with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
+ "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftDescription_in",
- "description": "All values that are contained in given list.",
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -42184,51 +41093,39 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not",
- "description": "Any other value that exists and is not equal to the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_not_contains",
- "description": "All values not containing the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftDescription_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftDescription_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereStageInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -42236,11 +41133,11 @@
"deprecationReason": null
},
{
- "name": "nftDescription_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "compareWithParent",
+ "description": "This field contains fields which can be set as true or false to specify an internal comparison",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereComparatorInput",
"ofType": null
},
"defaultValue": null,
@@ -42248,23 +41145,34 @@
"deprecationReason": null
},
{
- "name": "nftDescription_starts_with",
- "description": "All values starting with the given string.",
+ "name": "stage",
+ "description": "Specify the stage to compare with",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "description": "References Organizer record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftImage",
+ "name": "id",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereInput",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -42272,7 +41180,7 @@
"deprecationReason": null
},
{
- "name": "nftName",
+ "name": "name",
"description": null,
"type": {
"kind": "SCALAR",
@@ -42284,8 +41192,8 @@
"deprecationReason": null
},
{
- "name": "nftName_contains",
- "description": "All values containing the given string.",
+ "name": "slug",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42294,10 +41202,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer",
+ "description": "References Organizer record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftName_ends_with",
- "description": "All values ending with the given string.",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42308,24 +41227,8 @@
"deprecationReason": null
},
{
- "name": "nftName_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftName_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "slug",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42334,10 +41237,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer",
+ "description": "References Organizer record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftName_not_contains",
- "description": "All values not containing the given string.",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42348,8 +41262,8 @@
"deprecationReason": null
},
{
- "name": "nftName_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "slug",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42358,26 +41272,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "nftName_not_in",
- "description": "All values that are not contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftContractorganizer",
+ "description": "References Organizer record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftName_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42388,8 +41297,8 @@
"deprecationReason": null
},
{
- "name": "nftName_starts_with",
- "description": "All values starting with the given string.",
+ "name": "slug",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -42398,165 +41307,24 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "organizer",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftorganizer",
+ "description": "References Organizer record uniquely",
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt",
+ "name": "name",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_gt",
- "description": "All values greater than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_gte",
- "description": "All values greater than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_lt",
- "description": "All values less than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_lte",
- "description": "All values less than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_not_in",
- "description": "All values that are not contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedBy",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "scheduledIn_every",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "scheduledIn_none",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "scheduledIn_some",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -42564,115 +41332,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "slug",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_lt",
- "description": "All values less than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_lte",
- "description": "All values less than or equal the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_not_in",
- "description": "All values that are not contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedBy",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -42686,76 +41350,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "name": "OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer",
+ "description": "References Organizer record uniquely",
"fields": null,
"inputFields": [
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "OR",
- "description": "Logical OR on all given filters.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereStageInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "compareWithParent",
- "description": "This field contains fields which can be set as true or false to specify an internal comparison",
+ "name": "name",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereComparatorInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -42763,34 +41367,11 @@
"deprecationReason": null
},
{
- "name": "stage",
- "description": "Specify the stage to compare with",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "description": "References Pack record uniquely",
- "fields": null,
- "inputFields": [
- {
- "name": "id",
+ "name": "slug",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -42804,47 +41385,36 @@
},
{
"kind": "OBJECT",
- "name": "PageInfo",
- "description": "Information about pagination in a connection.",
+ "name": "Pack",
+ "description": "The 'Pack' model represents a collection of unique NFTs (eventPasses) bundled together. It serves as a loot system for users, offering them a chance to receive one or more NFTs related to specific events. Each pack contains details about its contents and the associated event, fostering a more engaging and rewarding experience for users.\n",
"fields": [
{
- "name": "endCursor",
- "description": "When paginating forwards, the cursor to continue.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "hasNextPage",
- "description": "When paginating forwards, are there more items?",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "name": "createdAt",
+ "description": "The time the document was created",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "hasPreviousPage",
- "description": "When paginating backwards, are there more items?",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "DateTime",
"ofType": null
}
},
@@ -42852,59 +41422,12 @@
"deprecationReason": null
},
{
- "name": "pageSize",
- "description": "Number of items in the current page.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "startCursor",
- "description": "When paginating backwards, the cursor to continue.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "PassOption",
- "description": "Define the options of an 'Event Pass' on an 'Event Date Location'. You can define severals if the event have multiple locations.",
- "fields": [
- {
- "name": "description",
- "description": "Description of the option, like \"Access to the event on Day 1\"",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventDateLocation",
- "description": "Define the location and date for this option.",
+ "name": "createdBy",
+ "description": "User that created this document",
"args": [
{
"name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "SCALAR",
"name": "Boolean",
@@ -42916,7 +41439,7 @@
},
{
"name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "LIST",
"name": null,
@@ -42937,38 +41460,22 @@
],
"type": {
"kind": "OBJECT",
- "name": "EventDateLocation",
+ "name": "User",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "The unique identifier",
+ "name": "description",
+ "description": "A brief overview detailing the contents and purpose of the Pack.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
- "description": "System Locale field",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
+ "name": "String",
"ofType": null
}
},
@@ -42976,12 +41483,12 @@
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Get the other localizations for this document",
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
"args": [
{
"name": "includeCurrent",
- "description": "Decides if the current locale should be included or not",
+ "description": "Decides if the current stage should be included or not",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -42996,8 +41503,24 @@
"deprecationReason": null
},
{
- "name": "locales",
- "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stages",
+ "description": "Potential stages that should be returned",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -43009,13 +41532,13 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "Locale",
+ "name": "Stage",
"ofType": null
}
}
}
},
- "defaultValue": "[en, fr]",
+ "defaultValue": "[DRAFT, PUBLISHED]",
"isDeprecated": false,
"deprecationReason": null
}
@@ -43031,7 +41554,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "PassOption",
+ "name": "Pack",
"ofType": null
}
}
@@ -43041,133 +41564,292 @@
"deprecationReason": null
},
{
- "name": "name",
- "description": "Name of the options, like \"Day 1 Access\" or \"VIP Room Access\"",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "System stage field",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [
- {
- "kind": "INTERFACE",
- "name": "Entity",
- "ofType": null
- }
- ],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "description",
- "description": "description input for default locale (en)",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventDateLocation",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventDateLocationCreateOneInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "localizations",
- "description": "Inline mutations for managing document localizations excluding the default locale",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationsInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
- "description": "name input for default locale (en)",
- "type": {
+ "name": "eventPasses",
+ "description": "This section allows you to select or create the event passes that will be included in your Pack. Think of it as curating a collection of exclusive access tickets, each offering unique experiences for the events. Here, you can assemble a variety of event passes that together form the enticing bundle that is your Pack.",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `eventPasses` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "UNION",
+ "name": "PackEventPasses",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "history",
+ "description": "List of Pack versions",
+ "args": [
+ {
+ "name": "limit",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "10",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "0",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stageOverride",
+ "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Version",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "The unique identifier",
+ "args": [],
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
- "description": null,
+ "name": "locale",
+ "description": "System Locale field",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "localizations",
+ "description": "Get the other localizations for this document",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current locale should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en, fr]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "name",
- "description": null,
+ "description": "User-friendly name of the the Pack, like \"Lottery for VIP 3-Day Pass\"",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -43177,109 +41859,477 @@
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": "Localization input",
+ "name": "nftDescription",
+ "description": "Fixed description pertaining to the NFT Pack. This content is static and non-localizable.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationDataInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "locale",
- "description": null,
+ "name": "nftImage",
+ "description": "Permanent image representing the NFT Pack. Advised resolution is 800 x 800 pixels. Image content is non-changeable and cannot be localized.",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
+ "kind": "OBJECT",
+ "name": "Asset",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
- "description": "Create localizations for the newly-created document",
+ "name": "nftName",
+ "description": "Permanent name associated with the NFT. Cannot be changed or localized.",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedBy",
+ "description": "User that last published this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationInput",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "System stage field",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": "The time the document was updated",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": "User that last updated this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [
+ {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "ofType": null
+ }
+ ],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionCreateManyInlineInput",
+ "name": "PackConnectInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "create",
- "description": "Create and connect multiple existing PassOption documents",
+ "name": "position",
+ "description": "Allow to specify document position in list of connected documents, will default to appending at end of list",
"type": {
- "kind": "LIST",
+ "kind": "INPUT_OBJECT",
+ "name": "ConnectPositionInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to connect",
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
}
},
"defaultValue": null,
@@ -43292,127 +42342,200 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateWithPositionInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "description": "A connection to a list of items.",
+ "fields": [
{
- "name": "data",
- "description": "Document to create",
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateInput",
+ "kind": "OBJECT",
+ "name": "Aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "position",
- "description": "Position in the list of existing component instances, will default to appending at the end of list",
+ "name": "edges",
+ "description": "A list of edges.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ConnectPositionInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackEdge",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pageInfo",
+ "description": "Information to aid in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "PassOptionOrderByInput",
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
"description": null,
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "inputFields": [
{
- "name": "description_ASC",
+ "name": "createdAt",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_DESC",
- "description": null,
+ "name": "description",
+ "description": "description input for default locale (en)",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_ASC",
+ "name": "eventPasses",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_DESC",
- "description": null,
+ "name": "localizations",
+ "description": "Inline mutations for managing document localizations excluding the default locale",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateLocalizationsInput",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_ASC",
- "description": null,
+ "name": "name",
+ "description": "name input for default locale (en)",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_DESC",
+ "name": "nftDescription",
"description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "description",
- "description": "description input for default locale (en)",
+ "name": "nftImage",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateOneInlineInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventDateLocation",
+ "name": "nftName",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "EventDateLocationUpdateOneInlineInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "localizations",
- "description": "Manage document localizations",
+ "name": "organizer",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationsInput",
+ "name": "OrganizerCreateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -43420,11 +42543,11 @@
"deprecationReason": null
},
{
- "name": "name",
- "description": "name input for default locale (en)",
+ "name": "updatedAt",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -43438,28 +42561,60 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationDataInput",
+ "name": "PackCreateLocalizationDataInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "description",
+ "name": "createdAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "description",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -43473,19 +42628,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationInput",
+ "name": "PackCreateLocalizationInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "data",
- "description": null,
+ "description": "Localization input",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationDataInput",
+ "name": "PackCreateLocalizationDataInput",
"ofType": null
}
},
@@ -43516,13 +42671,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationsInput",
+ "name": "PackCreateLocalizationsInput",
"description": null,
"fields": null,
"inputFields": [
{
"name": "create",
- "description": "Localizations to create",
+ "description": "Create localizations for the newly-created document",
"type": {
"kind": "LIST",
"name": null,
@@ -43531,7 +42686,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationInput",
+ "name": "PackCreateLocalizationInput",
"ofType": null
}
}
@@ -43539,10 +42694,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "delete",
- "description": "Localizations to delete",
+ "name": "connect",
+ "description": "Connect multiple existing Pack documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43550,8 +42716,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Locale",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
"ofType": null
}
}
@@ -43561,8 +42727,8 @@
"deprecationReason": null
},
{
- "name": "update",
- "description": "Localizations to update",
+ "name": "create",
+ "description": "Create and connect multiple existing Pack documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43571,7 +42737,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationInput",
+ "name": "PackCreateInput",
"ofType": null
}
}
@@ -43579,23 +42745,120 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect one existing Pack document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "upsert",
- "description": null,
+ "name": "create",
+ "description": "Create and connect one Pack document",
"type": {
- "kind": "LIST",
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "PackEdge",
+ "description": "An edge in a connection.",
+ "fields": [
+ {
+ "name": "cursor",
+ "description": "A cursor for use in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertLocalizationInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "node",
+ "description": "The item at the end of the edge.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
}
},
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "UNION",
+ "name": "PackEventPasses",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": [
+ {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ }
+ ]
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesConnectInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "EventPass",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassConnectInput",
+ "ofType": null
+ },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
@@ -43607,13 +42870,36 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateManyInlineInput",
+ "name": "PackEventPassesCreateInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "create",
- "description": "Create and connect multiple PassOption component instances",
+ "name": "EventPass",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassCreateInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesCreateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect multiple existing PackEventPasses documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43622,7 +42908,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionCreateWithPositionInput",
+ "name": "PackEventPassesWhereUniqueInput",
"ofType": null
}
}
@@ -43632,8 +42918,8 @@
"deprecationReason": null
},
{
- "name": "delete",
- "description": "Delete multiple PassOption documents",
+ "name": "create",
+ "description": "Create and connect multiple existing PackEventPasses documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43642,7 +42928,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionWhereUniqueInput",
+ "name": "PackEventPassesCreateInput",
"ofType": null
}
}
@@ -43650,10 +42936,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "update",
- "description": "Update multiple PassOption component instances",
+ "name": "connect",
+ "description": "Connect multiple existing PackEventPasses documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43662,7 +42959,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateWithNestedWhereUniqueAndPositionInput",
+ "name": "PackEventPassesConnectInput",
"ofType": null
}
}
@@ -43672,8 +42969,8 @@
"deprecationReason": null
},
{
- "name": "upsert",
- "description": "Upsert multiple PassOption component instances",
+ "name": "create",
+ "description": "Create and connect multiple PackEventPasses documents",
"type": {
"kind": "LIST",
"name": null,
@@ -43682,7 +42979,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertWithNestedWhereUniqueAndPositionInput",
+ "name": "PackEventPassesCreateInput",
"ofType": null
}
}
@@ -43690,79 +42987,81 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateWithNestedWhereUniqueAndPositionInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": "Document to update",
+ "name": "delete",
+ "description": "Delete multiple PackEventPasses documents",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "position",
- "description": "Position in the list of existing component instances, will default to appending at the end of list",
+ "name": "disconnect",
+ "description": "Disconnect multiple PackEventPasses documents",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ConnectPositionInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "Unique component instance search",
+ "name": "set",
+ "description": "Override currently-connected documents with multiple existing PackEventPasses documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionWhereUniqueInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereUniqueInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "create",
- "description": "Create document if it didn't exist",
+ "name": "update",
+ "description": "Update multiple PackEventPasses documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -43770,15 +43069,19 @@
"deprecationReason": null
},
{
- "name": "update",
- "description": "Update document if it exists",
+ "name": "upsert",
+ "description": "Upsert multiple PackEventPasses documents",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -43792,53 +43095,40 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertLocalizationInput",
+ "name": "PackEventPassesUpdateWithNestedWhereUniqueInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "create",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionCreateLocalizationDataInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
+ "name": "EventPass",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateWithNestedWhereUniqueInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesUpsertWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "update",
+ "name": "EventPass",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionUpdateLocalizationDataInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpsertWithNestedWhereUniqueInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -43851,49 +43141,44 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertWithNestedWhereUniqueAndPositionInput",
+ "name": "PackEventPassesWhereInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "data",
- "description": "Document to upsert",
+ "name": "EventPass",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionUpsertInput",
+ "name": "EventPassWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "position",
- "description": "Position in the list of existing component instances, will default to appending at the end of list",
+ "name": "EventPass",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ConnectPositionInput",
+ "name": "EventPassWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "where",
- "description": "Unique component instance search",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -43902,7 +43187,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "PassOptionWhereInput",
+ "name": "PackManyWhereInput",
"description": "Identifies documents",
"fields": null,
"inputFields": [
@@ -43917,7 +43202,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionWhereInput",
+ "name": "PackWhereInput",
"ofType": null
}
}
@@ -43937,7 +43222,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionWhereInput",
+ "name": "PackWhereInput",
"ofType": null
}
}
@@ -43957,7 +43242,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "PassOptionWhereInput",
+ "name": "PackWhereInput",
"ofType": null
}
}
@@ -43979,11 +43264,11 @@
"deprecationReason": null
},
{
- "name": "description",
+ "name": "createdAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -43991,11 +43276,11 @@
"deprecationReason": null
},
{
- "name": "description_contains",
- "description": "All values containing the given string.",
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -44003,11 +43288,11 @@
"deprecationReason": null
},
{
- "name": "description_ends_with",
- "description": "All values ending with the given string.",
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -44015,14 +43300,14 @@
"deprecationReason": null
},
{
- "name": "description_in",
+ "name": "createdAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -44031,11 +43316,11 @@
"deprecationReason": null
},
{
- "name": "description_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -44043,11 +43328,11 @@
"deprecationReason": null
},
{
- "name": "description_not_contains",
- "description": "All values not containing the given string.",
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -44055,11 +43340,11 @@
"deprecationReason": null
},
{
- "name": "description_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "createdAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -44067,14 +43352,14 @@
"deprecationReason": null
},
{
- "name": "description_not_in",
+ "name": "createdAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -44083,11 +43368,11 @@
"deprecationReason": null
},
{
- "name": "description_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "createdBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -44095,11 +43380,11 @@
"deprecationReason": null
},
{
- "name": "description_starts_with",
- "description": "All values starting with the given string.",
+ "name": "documentInStages_every",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -44107,11 +43392,47 @@
"deprecationReason": null
},
{
- "name": "eventDateLocation",
+ "name": "documentInStages_none",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventDateLocationWhereInput",
+ "name": "PackWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPasses_empty",
+ "description": "All values in which the union is empty",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPasses_some",
+ "description": "Matches if the union contains at least one connection to the provided item to the filter",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -44247,7 +43568,7 @@
"deprecationReason": null
},
{
- "name": "name",
+ "name": "nftDescription",
"description": null,
"type": {
"kind": "SCALAR",
@@ -44259,7 +43580,7 @@
"deprecationReason": null
},
{
- "name": "name_contains",
+ "name": "nftDescription_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -44271,7 +43592,7 @@
"deprecationReason": null
},
{
- "name": "name_ends_with",
+ "name": "nftDescription_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -44283,7 +43604,7 @@
"deprecationReason": null
},
{
- "name": "name_in",
+ "name": "nftDescription_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -44299,7 +43620,7 @@
"deprecationReason": null
},
{
- "name": "name_not",
+ "name": "nftDescription_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -44311,7 +43632,7 @@
"deprecationReason": null
},
{
- "name": "name_not_contains",
+ "name": "nftDescription_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -44323,7 +43644,7 @@
"deprecationReason": null
},
{
- "name": "name_not_ends_with",
+ "name": "nftDescription_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -44335,7 +43656,7 @@
"deprecationReason": null
},
{
- "name": "name_not_in",
+ "name": "nftDescription_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -44351,7 +43672,7 @@
"deprecationReason": null
},
{
- "name": "name_not_starts_with",
+ "name": "nftDescription_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -44363,7 +43684,7 @@
"deprecationReason": null
},
{
- "name": "name_starts_with",
+ "name": "nftDescription_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -44373,505 +43694,200 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "PassOptionWhereUniqueInput",
- "description": "References PassOption record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "id",
+ "name": "nftImage",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "SCALAR",
- "name": "RichTextAST",
- "description": "Slate-compatible RichText AST",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "description": "Scheduled Operation system model",
- "fields": [
+ },
{
- "name": "affectedDocuments",
+ "name": "nftName",
"description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "UNION",
- "name": "ScheduledOperationAffectedDocument",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdAt",
- "description": "The time the document was created",
- "args": [],
+ "name": "nftName_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdBy",
- "description": "User that created this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "nftName_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": "Operation description",
- "args": [],
+ "name": "nftName_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "documentInStages",
- "description": "Get the document in other stages",
- "args": [
- {
- "name": "includeCurrent",
- "description": "Decides if the current stage should be included or not",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "inheritLocale",
- "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stages",
- "description": "Potential stages that should be returned",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[DRAFT, PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "nftName_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "errorMessage",
- "description": "Operation error message",
- "args": [],
+ "name": "nftName_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "The unique identifier",
- "args": [],
+ "name": "nftName_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt",
- "description": "The time the document was published. Null on documents in draft stage.",
- "args": [],
+ "name": "nftName_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": "User that last published this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "nftName_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rawPayload",
- "description": "Raw operation payload including all details, this field is subject to change",
- "args": [],
+ "name": "organizer",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Json",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "release",
- "description": "The release this operation is scheduled for",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `release` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `release` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "publishedAt",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": "System stage field",
- "args": [],
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": "operation Status",
- "args": [],
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt",
- "description": "The time the document was updated",
- "args": [],
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
@@ -44879,230 +43895,234 @@
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedBy",
- "description": "User that last updated this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [
+ },
{
- "kind": "INTERFACE",
- "name": "Entity",
- "ofType": null
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "INTERFACE",
- "name": "Node",
- "ofType": null
- }
- ],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "UNION",
- "name": "ScheduledOperationAffectedDocument",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": [
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
+ "name": "publishedBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
+ "name": "scheduledIn_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
+ "name": "scheduledIn_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
- "ofType": null
+ "name": "scheduledIn_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- }
- ]
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledOperationConnection",
- "description": "A connection to a list of items.",
- "fields": [
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "Aggregate",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "edges",
- "description": "A list of edges.",
- "args": [],
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperationEdge",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pageInfo",
- "description": "Information to aid in pagination.",
- "args": [],
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "PageInfo",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledOperationEdge",
- "description": "An edge in a connection.",
- "fields": [
+ },
{
- "name": "cursor",
- "description": "A cursor for use in pagination.",
- "args": [],
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "node",
- "description": "The item at the end of the edge.",
- "args": [],
+ "name": "updatedBy",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
- "name": "ScheduledOperationOrderByInput",
+ "name": "PackOrderByInput",
"description": null,
"fields": null,
"inputFields": null,
@@ -45132,18 +44152,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "errorMessage_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "errorMessage_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id_ASC",
"description": null,
@@ -45157,78 +44165,61 @@
"deprecationReason": null
},
{
- "name": "publishedAt_ASC",
+ "name": "name_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_DESC",
+ "name": "name_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status_ASC",
+ "name": "nftDescription_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status_DESC",
+ "name": "nftDescription_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_ASC",
+ "name": "nftName_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
- "description": "System Scheduled Operation Status",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "CANCELED",
+ "name": "nftName_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "COMPLETED",
+ "name": "publishedAt_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FAILED",
+ "name": "publishedAt_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "IN_PROGRESS",
+ "name": "updatedAt_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "PENDING",
+ "name": "updatedAt_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
@@ -45238,73 +44229,49 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "description": "Identifies documents",
+ "name": "PackUpdateInput",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
+ "name": "eventPasses",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesUpdateManyInlineInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "OR",
- "description": "Logical OR on all given filters.",
+ "name": "localizations",
+ "description": "Manage document localizations",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationsInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_search",
- "description": "Contains search across all appropriate fields.",
+ "name": "name",
+ "description": "name input for default locale (en)",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45315,11 +44282,11 @@
"deprecationReason": null
},
{
- "name": "createdAt",
+ "name": "nftDescription",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -45327,11 +44294,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_gt",
- "description": "All values greater than the given value.",
+ "name": "nftImage",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -45339,11 +44306,11 @@
"deprecationReason": null
},
{
- "name": "createdAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "nftName",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -45351,27 +44318,34 @@
"deprecationReason": null
},
{
- "name": "createdAt_in",
- "description": "All values that are contained in given list.",
+ "name": "organizer",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateOneInlineInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationDataInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "createdAt_lt",
- "description": "All values less than the given value.",
+ "name": "description",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -45379,103 +44353,176 @@
"deprecationReason": null
},
{
- "name": "createdAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "createdAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "data",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationDataInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdAt_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "ENUM",
+ "name": "Locale",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "createdBy",
- "description": null,
+ "name": "create",
+ "description": "Localizations to create",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateLocalizationInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": null,
+ "name": "delete",
+ "description": "Localizations to delete",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_contains",
- "description": "All values containing the given string.",
+ "name": "update",
+ "description": "Localizations to update",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_ends_with",
- "description": "All values ending with the given string.",
+ "name": "upsert",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertLocalizationInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "description_in",
- "description": "All values that are contained in given list.",
+ "name": "connect",
+ "description": "Connect multiple existing Pack documents",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackConnectInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -45483,51 +44530,79 @@
"deprecationReason": null
},
{
- "name": "description_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "create",
+ "description": "Create and connect multiple Pack documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_not_contains",
- "description": "All values not containing the given string.",
+ "name": "delete",
+ "description": "Delete multiple Pack documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "disconnect",
+ "description": "Disconnect multiple Pack documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "set",
+ "description": "Override currently-connected documents with multiple existing Pack documents",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -45535,32 +44610,59 @@
"deprecationReason": null
},
{
- "name": "description_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "update",
+ "description": "Update multiple Pack documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description_starts_with",
- "description": "All values starting with the given string.",
+ "name": "upsert",
+ "description": "Upsert multiple Pack documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "errorMessage",
- "description": null,
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45571,11 +44673,11 @@
"deprecationReason": null
},
{
- "name": "errorMessage_contains",
- "description": "All values containing the given string.",
+ "name": "localizations",
+ "description": "Optional updates to localizations",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationsInput",
"ofType": null
},
"defaultValue": null,
@@ -45583,8 +44685,8 @@
"deprecationReason": null
},
{
- "name": "errorMessage_ends_with",
- "description": "All values ending with the given string.",
+ "name": "name",
+ "description": "name input for default locale (en)",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45595,24 +44697,20 @@
"deprecationReason": null
},
{
- "name": "errorMessage_in",
- "description": "All values that are contained in given list.",
+ "name": "nftDescription",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "errorMessage_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "nftName",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45621,10 +44719,21 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationDataInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "errorMessage_not_contains",
- "description": "All values not containing the given string.",
+ "name": "description",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45635,8 +44744,8 @@
"deprecationReason": null
},
{
- "name": "errorMessage_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45645,16 +44754,27 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "errorMessage_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "data",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationDataInput",
"ofType": null
}
},
@@ -45663,35 +44783,69 @@
"deprecationReason": null
},
{
- "name": "errorMessage_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "errorMessage_starts_with",
- "description": "All values starting with the given string.",
+ "name": "update",
+ "description": "Localizations to update",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyLocalizationInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "connect",
+ "description": "Connect existing Pack document",
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -45699,11 +44853,11 @@
"deprecationReason": null
},
{
- "name": "id_contains",
- "description": "All values containing the given string.",
+ "name": "create",
+ "description": "Create and connect one Pack document",
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
"ofType": null
},
"defaultValue": null,
@@ -45711,11 +44865,11 @@
"deprecationReason": null
},
{
- "name": "id_ends_with",
- "description": "All values ending with the given string.",
+ "name": "delete",
+ "description": "Delete currently connected Pack document",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -45723,27 +44877,23 @@
"deprecationReason": null
},
{
- "name": "id_in",
- "description": "All values that are contained in given list.",
+ "name": "disconnect",
+ "description": "Disconnect currently connected Pack document",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "update",
+ "description": "Update single Pack document",
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
@@ -45751,114 +44901,182 @@
"deprecationReason": null
},
{
- "name": "id_not_contains",
- "description": "All values not containing the given string.",
+ "name": "upsert",
+ "description": "Upsert single Pack document",
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertWithNestedWhereUniqueInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "id_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "data",
+ "description": "Document to update",
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "id_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "create",
+ "description": "Create document if it didn't exist",
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_starts_with",
- "description": "All values starting with the given string.",
+ "name": "update",
+ "description": "Update document if it exists",
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt",
+ "name": "create",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateLocalizationDataInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "update",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateLocalizationDataInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_in",
- "description": "All values that are contained in given list.",
+ "name": "data",
+ "description": "Upsert data",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertInput",
"ofType": null
}
},
@@ -45867,51 +45085,89 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lt",
- "description": "All values less than the given value.",
+ "name": "where",
+ "description": "Unique document search",
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereComparatorInput",
+ "description": "This contains a set of filters that can be used to compare values internally",
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "outdated_to",
+ "description": "This field can be used to request to check if the entry is outdated by internal comparison",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -45919,20 +45175,28 @@
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": null,
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rawPayload_json_path_exists",
- "description": "All values containing the given json path.",
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -45943,11 +45207,11 @@
"deprecationReason": null
},
{
- "name": "rawPayload_value_recursive",
- "description": "Recursively tries to find the provided JSON scalar value inside the field.\nIt does use an exact match when comparing values.\nIf you pass `null` as value the filter will be ignored. \nNote: This filter fails if you try to look for a non scalar JSON value!",
+ "name": "createdAt",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Json",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -45955,11 +45219,11 @@
"deprecationReason": null
},
{
- "name": "release",
- "description": null,
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -45967,11 +45231,11 @@
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -45979,14 +45243,14 @@
"deprecationReason": null
},
{
- "name": "status_in",
+ "name": "createdAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
}
},
@@ -45995,11 +45259,35 @@
"deprecationReason": null
},
{
- "name": "status_not",
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -46007,14 +45295,14 @@
"deprecationReason": null
},
{
- "name": "status_not_in",
+ "name": "createdAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "ScheduledOperationStatus",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
}
},
@@ -46023,11 +45311,23 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "createdBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "description",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46035,11 +45335,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "description_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46047,11 +45347,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "description_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46059,14 +45359,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_in",
+ "name": "description_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -46075,11 +45375,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lt",
- "description": "All values less than the given value.",
+ "name": "description_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46087,11 +45387,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "description_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46099,11 +45399,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "description_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46111,14 +45411,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not_in",
+ "name": "description_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -46127,222 +45427,130 @@
"deprecationReason": null
},
{
- "name": "updatedBy",
+ "name": "description_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "description_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_every",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "PackWhereStageInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereUniqueInput",
- "description": "References ScheduledOperation record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "id",
+ "name": "documentInStages_none",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "ID",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "description": "Scheduled Release system model",
- "fields": [
+ },
{
- "name": "createdAt",
- "description": "The time the document was created",
- "args": [],
+ "name": "documentInStages_some",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdBy",
- "description": "User that created this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPasses_empty",
+ "description": "All values in which the union is empty",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": "Release description",
- "args": [],
+ "name": "eventPasses_some",
+ "description": "Matches if the union contains at least one connection to the provided item to the filter",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackEventPassesWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "documentInStages",
- "description": "Get the document in other stages",
- "args": [
- {
- "name": "includeCurrent",
- "description": "Decides if the current stage should be included or not",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "inheritLocale",
- "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stages",
- "description": "Potential stages that should be returned",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[DRAFT, PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "errorMessage",
- "description": "Release error message",
- "args": [],
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "The unique identifier",
- "args": [],
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
@@ -46350,452 +45558,220 @@
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isActive",
- "description": "Whether scheduled release should be run",
- "args": [],
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isImplicit",
- "description": "Whether scheduled release is implicit",
- "args": [],
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "ID",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "operations",
- "description": "Operations to run with this release",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `operations` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `operations` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ScheduledOperationOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt",
- "description": "The time the document was published. Null on documents in draft stage.",
- "args": [],
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": "User that last published this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "name",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "releaseAt",
- "description": "Release date and time",
- "args": [],
+ "name": "name_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": "System stage field",
- "args": [],
+ "name": "name_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": "Release Status",
- "args": [],
+ "name": "name_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "title",
- "description": "Release Title",
- "args": [],
+ "name": "name_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt",
- "description": "The time the document was updated",
- "args": [],
+ "name": "name_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedBy",
- "description": "User that last updated this document",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "name_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [
- {
- "kind": "INTERFACE",
- "name": "Entity",
- "ofType": null
},
{
- "kind": "INTERFACE",
- "name": "Node",
- "ofType": null
- }
- ],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledReleaseConnection",
- "description": "A connection to a list of items.",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "name_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "Aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "edges",
- "description": "A list of edges.",
- "args": [],
+ "name": "name_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledReleaseEdge",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pageInfo",
- "description": "Information to aid in pagination.",
- "args": [],
+ "name": "name_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "PageInfo",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseCreateInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "createdAt",
+ "name": "nftDescription",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46803,8 +45779,8 @@
"deprecationReason": null
},
{
- "name": "description",
- "description": null,
+ "name": "nftDescription_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -46815,8 +45791,8 @@
"deprecationReason": null
},
{
- "name": "errorMessage",
- "description": null,
+ "name": "nftDescription_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -46827,23 +45803,27 @@
"deprecationReason": null
},
{
- "name": "isActive",
- "description": null,
+ "name": "nftDescription_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": "true",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "releaseAt",
- "description": null,
+ "name": "nftDescription_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -46851,8 +45831,8 @@
"deprecationReason": null
},
{
- "name": "title",
- "description": null,
+ "name": "nftDescription_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -46863,33 +45843,22 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
- "description": null,
+ "name": "nftDescription_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledReleaseEdge",
- "description": "An edge in a connection.",
- "fields": [
+ },
{
- "name": "cursor",
- "description": "A cursor for use in pagination.",
- "args": [],
+ "name": "nftDescription_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
@@ -46897,218 +45866,73 @@
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "node",
- "description": "The item at the end of the edge.",
- "args": [],
+ "name": "nftDescription_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "ScheduledReleaseOrderByInput",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "createdAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "errorMessage_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "errorMessage_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isActive_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isActive_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isImplicit_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isImplicit_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt_DESC",
- "description": null,
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "title_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "title_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updatedAt_ASC",
- "description": null,
+ "name": "nftDescription_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_DESC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
- "description": "System Scheduled Release Status",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "COMPLETED",
+ "name": "nftImage",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FAILED",
+ "name": "nftName",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "IN_PROGRESS",
- "description": null,
+ "name": "nftName_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "PENDING",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseUpdateInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "description",
- "description": null,
+ "name": "nftName_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -47119,23 +45943,27 @@
"deprecationReason": null
},
{
- "name": "errorMessage",
- "description": null,
+ "name": "nftName_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isActive",
- "description": null,
+ "name": "nftName_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -47143,11 +45971,11 @@
"deprecationReason": null
},
{
- "name": "releaseAt",
- "description": null,
+ "name": "nftName_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -47155,8 +45983,8 @@
"deprecationReason": null
},
{
- "name": "title",
- "description": null,
+ "name": "nftName_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -47165,32 +45993,17 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
- "description": "Identifies documents",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
+ "name": "nftName_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -47198,51 +46011,35 @@
"deprecationReason": null
},
{
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
+ "name": "nftName_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "OR",
- "description": "Logical OR on all given filters.",
+ "name": "nftName_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_search",
- "description": "Contains search across all appropriate fields.",
+ "name": "organizer",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -47250,7 +46047,7 @@
"deprecationReason": null
},
{
- "name": "createdAt",
+ "name": "publishedAt",
"description": null,
"type": {
"kind": "SCALAR",
@@ -47262,7 +46059,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_gt",
+ "name": "publishedAt_gt",
"description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
@@ -47274,7 +46071,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_gte",
+ "name": "publishedAt_gte",
"description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
@@ -47286,7 +46083,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_in",
+ "name": "publishedAt_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -47302,7 +46099,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_lt",
+ "name": "publishedAt_lt",
"description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
@@ -47314,7 +46111,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_lte",
+ "name": "publishedAt_lte",
"description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
@@ -47326,7 +46123,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_not",
+ "name": "publishedAt_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -47338,7 +46135,7 @@
"deprecationReason": null
},
{
- "name": "createdAt_not_in",
+ "name": "publishedAt_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -47354,7 +46151,7 @@
"deprecationReason": null
},
{
- "name": "createdBy",
+ "name": "publishedBy",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -47366,11 +46163,11 @@
"deprecationReason": null
},
{
- "name": "description",
+ "name": "scheduledIn_every",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -47378,11 +46175,11 @@
"deprecationReason": null
},
{
- "name": "description_contains",
- "description": "All values containing the given string.",
+ "name": "scheduledIn_none",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -47390,11 +46187,11 @@
"deprecationReason": null
},
{
- "name": "description_ends_with",
- "description": "All values ending with the given string.",
+ "name": "scheduledIn_some",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -47402,27 +46199,11 @@
"deprecationReason": null
},
{
- "name": "description_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedAt",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47430,11 +46211,11 @@
"deprecationReason": null
},
{
- "name": "description_not_contains",
- "description": "All values not containing the given string.",
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47442,11 +46223,11 @@
"deprecationReason": null
},
{
- "name": "description_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47454,14 +46235,14 @@
"deprecationReason": null
},
{
- "name": "description_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -47470,35 +46251,11 @@
"deprecationReason": null
},
{
- "name": "description_not_starts_with",
- "description": "All values not starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "description_starts_with",
- "description": "All values starting with the given string.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "errorMessage",
- "description": null,
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47506,11 +46263,11 @@
"deprecationReason": null
},
{
- "name": "errorMessage_contains",
- "description": "All values containing the given string.",
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47518,11 +46275,11 @@
"deprecationReason": null
},
{
- "name": "errorMessage_ends_with",
- "description": "All values ending with the given string.",
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -47530,14 +46287,14 @@
"deprecationReason": null
},
{
- "name": "errorMessage_in",
- "description": "All values that are contained in given list.",
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
@@ -47546,51 +46303,82 @@
"deprecationReason": null
},
{
- "name": "errorMessage_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedBy",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "fields": null,
+ "inputFields": [
{
- "name": "errorMessage_not_contains",
- "description": "All values not containing the given string.",
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "errorMessage_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "errorMessage_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereStageInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -47598,11 +46386,11 @@
"deprecationReason": null
},
{
- "name": "errorMessage_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "compareWithParent",
+ "description": "This field contains fields which can be set as true or false to specify an internal comparison",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereComparatorInput",
"ofType": null
},
"defaultValue": null,
@@ -47610,17 +46398,28 @@
"deprecationReason": null
},
{
- "name": "errorMessage_starts_with",
- "description": "All values starting with the given string.",
+ "name": "stage",
+ "description": "Specify the stage to compare with",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "description": "References Pack record uniquely",
+ "fields": null,
+ "inputFields": [
{
"name": "id",
"description": null,
@@ -47632,88 +46431,159 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "description": "Information about pagination in a connection.",
+ "fields": [
{
- "name": "id_contains",
- "description": "All values containing the given string.",
+ "name": "endCursor",
+ "description": "When paginating forwards, the cursor to continue.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_ends_with",
- "description": "All values ending with the given string.",
+ "name": "hasNextPage",
+ "description": "When paginating forwards, are there more items?",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_in",
- "description": "All values that are contained in given list.",
+ "name": "hasPreviousPage",
+ "description": "When paginating backwards, are there more items?",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "Boolean",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "pageSize",
+ "description": "Number of items in the current page.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "Int",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not_contains",
- "description": "All values not containing the given string.",
+ "name": "startCursor",
+ "description": "When paginating backwards, the cursor to continue.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "PassOption",
+ "description": "Define the options of an 'Event Pass' on an 'Event Date Location'. You can define severals if the event have multiple locations.",
+ "fields": [
{
- "name": "id_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "description",
+ "description": "Description of the option, like \"Access to the event on Day 1\"",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "eventDateLocation",
+ "description": "Define the location and date for this option.",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `eventDateLocation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "OBJECT",
+ "name": "EventDateLocation",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "The unique identifier",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
@@ -47721,76 +46591,146 @@
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "locale",
+ "description": "System Locale field",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id_starts_with",
- "description": "All values starting with the given string.",
+ "name": "localizations",
+ "description": "Get the other localizations for this document",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current locale should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en, fr]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PassOption",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isActive",
- "description": null,
+ "name": "name",
+ "description": "Name of the options, like \"Day 1 Access\" or \"VIP Room Access\"",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isActive_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "stage",
+ "description": "System stage field",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [
{
- "name": "isImplicit",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ }
+ ],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "isImplicit_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -47798,11 +46738,11 @@
"deprecationReason": null
},
{
- "name": "operations_every",
+ "name": "eventDateLocation",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "EventDateLocationCreateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -47810,11 +46750,11 @@
"deprecationReason": null
},
{
- "name": "operations_none",
- "description": null,
+ "name": "localizations",
+ "description": "Inline mutations for managing document localizations excluding the default locale",
"type": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "PassOptionCreateLocalizationsInput",
"ofType": null
},
"defaultValue": null,
@@ -47822,35 +46762,38 @@
"deprecationReason": null
},
{
- "name": "operations_some",
- "description": null,
+ "name": "name",
+ "description": "name input for default locale (en)",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationDataInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt",
+ "name": "description",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishedAt_gt",
- "description": "All values greater than the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -47858,26 +46801,41 @@
"deprecationReason": null
},
{
- "name": "publishedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "name",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_in",
- "description": "All values that are contained in given list.",
+ "name": "data",
+ "description": "Localization input",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationDataInput",
"ofType": null
}
},
@@ -47886,50 +46844,103 @@
"deprecationReason": null
},
{
- "name": "publishedAt_lt",
- "description": "All values less than the given value.",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "create",
+ "description": "Create localizations for the newly-created document",
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "create",
+ "description": "Create and connect multiple existing PassOption documents",
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateWithPositionInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "publishedAt_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "data",
+ "description": "Document to create",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateInput",
"ofType": null
}
},
@@ -47938,35 +46949,81 @@
"deprecationReason": null
},
{
- "name": "publishedBy",
- "description": null,
+ "name": "position",
+ "description": "Position in the list of existing component instances, will default to appending at the end of list",
"type": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "ConnectPositionInput",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "PassOptionOrderByInput",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "releaseAt",
+ "name": "description_ASC",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "releaseAt_gt",
- "description": "All values greater than the given value.",
+ "name": "description_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "description",
+ "description": "description input for default locale (en)",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -47974,11 +47031,11 @@
"deprecationReason": null
},
{
- "name": "releaseAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "eventDateLocation",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "EventDateLocationUpdateOneInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -47986,39 +47043,46 @@
"deprecationReason": null
},
{
- "name": "releaseAt_in",
- "description": "All values that are contained in given list.",
+ "name": "localizations",
+ "description": "Manage document localizations",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationsInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "releaseAt_lt",
- "description": "All values less than the given value.",
+ "name": "name",
+ "description": "name input for default locale (en)",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationDataInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "releaseAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "description",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48026,26 +47090,37 @@
"deprecationReason": null
},
{
- "name": "releaseAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "name",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "releaseAt_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "data",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationDataInput",
"ofType": null
}
},
@@ -48054,27 +47129,46 @@
"deprecationReason": null
},
{
- "name": "status",
+ "name": "locale",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "status_in",
- "description": "All values that are contained in given list.",
+ "name": "create",
+ "description": "Localizations to create",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -48082,27 +47176,39 @@
"deprecationReason": null
},
{
- "name": "status_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "delete",
+ "description": "Localizations to delete",
"type": {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "update",
+ "description": "Localizations to update",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "ScheduledReleaseStatus",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -48110,23 +47216,133 @@
"deprecationReason": null
},
{
- "name": "title",
+ "name": "upsert",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": "Create and connect multiple PassOption component instances",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateWithPositionInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "title_contains",
- "description": "All values containing the given string.",
+ "name": "delete",
+ "description": "Delete multiple PassOption documents",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Update multiple PassOption component instances",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateWithNestedWhereUniqueAndPositionInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsert",
+ "description": "Upsert multiple PassOption component instances",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertWithNestedWhereUniqueAndPositionInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateWithNestedWhereUniqueAndPositionInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": "Document to update",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateInput",
"ofType": null
},
"defaultValue": null,
@@ -48134,11 +47350,11 @@
"deprecationReason": null
},
{
- "name": "title_ends_with",
- "description": "All values ending with the given string.",
+ "name": "position",
+ "description": "Position in the list of existing component instances, will default to appending at the end of list",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ConnectPositionInput",
"ofType": null
},
"defaultValue": null,
@@ -48146,14 +47362,41 @@
"deprecationReason": null
},
{
- "name": "title_in",
- "description": "All values that are contained in given list.",
+ "name": "where",
+ "description": "Unique component instance search",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": "Create document if it didn't exist",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateInput",
"ofType": null
}
},
@@ -48162,23 +47405,97 @@
"deprecationReason": null
},
{
- "name": "title_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "update",
+ "description": "Update document if it exists",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionCreateLocalizationDataInput",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "title_not_contains",
- "description": "All values not containing the given string.",
+ "name": "locale",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpdateLocalizationDataInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertWithNestedWhereUniqueAndPositionInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": "Document to upsert",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionUpsertInput",
"ofType": null
},
"defaultValue": null,
@@ -48186,11 +47503,11 @@
"deprecationReason": null
},
{
- "name": "title_not_ends_with",
- "description": "All values not ending with the given string",
+ "name": "position",
+ "description": "Position in the list of existing component instances, will default to appending at the end of list",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "ConnectPositionInput",
"ofType": null
},
"defaultValue": null,
@@ -48198,36 +47515,95 @@
"deprecationReason": null
},
{
- "name": "title_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "where",
+ "description": "Unique component instance search",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereUniqueInput",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "title_not_starts_with",
- "description": "All values not starting with the given string.",
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereInput",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "title_starts_with",
- "description": "All values starting with the given string.",
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48238,11 +47614,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "description",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48250,11 +47626,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "description_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48262,11 +47638,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "description_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48274,14 +47650,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_in",
+ "name": "description_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -48290,11 +47666,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lt",
- "description": "All values less than the given value.",
+ "name": "description_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48302,11 +47678,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "description_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48314,11 +47690,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "description_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -48326,14 +47702,14 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not_in",
+ "name": "description_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
}
},
@@ -48342,90 +47718,35 @@
"deprecationReason": null
},
{
- "name": "updatedBy",
- "description": null,
+ "name": "description_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereUniqueInput",
- "description": "References ScheduledRelease record uniquely",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "id",
- "description": null,
+ "name": "description_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "Stage",
- "description": "Stage system enumeration",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "DRAFT",
- "description": "The Draft is the default stage for all your content.",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "PUBLISHED",
- "description": "The Published stage is where you can publish your content to.",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "SCALAR",
- "name": "String",
- "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_eq",
+ "name": "eventDateLocation",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "EventDateLocationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -48433,11 +47754,11 @@
"deprecationReason": null
},
{
- "name": "_gt",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48445,11 +47766,11 @@
"deprecationReason": null
},
{
- "name": "_gte",
- "description": null,
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48457,11 +47778,11 @@
"deprecationReason": null
},
{
- "name": "_ilike",
- "description": "does the column match the given case-insensitive pattern",
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48469,19 +47790,15 @@
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
}
},
"defaultValue": null,
@@ -48489,11 +47806,11 @@
"deprecationReason": null
},
{
- "name": "_iregex",
- "description": "does the column match the given POSIX regular expression, case insensitive",
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48501,11 +47818,11 @@
"deprecationReason": null
},
{
- "name": "_is_null",
- "description": null,
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48513,11 +47830,11 @@
"deprecationReason": null
},
{
- "name": "_like",
- "description": "does the column match the given pattern",
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48525,11 +47842,27 @@
"deprecationReason": null
},
{
- "name": "_lt",
- "description": null,
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -48537,7 +47870,19 @@
"deprecationReason": null
},
{
- "name": "_lte",
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
"description": null,
"type": {
"kind": "SCALAR",
@@ -48549,8 +47894,8 @@
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
+ "name": "name_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48561,8 +47906,8 @@
"deprecationReason": null
},
{
- "name": "_nilike",
- "description": "does the column NOT match the given case-insensitive pattern",
+ "name": "name_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48573,19 +47918,15 @@
"deprecationReason": null
},
{
- "name": "_nin",
- "description": null,
+ "name": "name_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -48593,8 +47934,8 @@
"deprecationReason": null
},
{
- "name": "_niregex",
- "description": "does the column NOT match the given POSIX regular expression, case insensitive",
+ "name": "name_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48605,8 +47946,8 @@
"deprecationReason": null
},
{
- "name": "_nlike",
- "description": "does the column NOT match the given pattern",
+ "name": "name_not_contains",
+ "description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48617,8 +47958,8 @@
"deprecationReason": null
},
{
- "name": "_nregex",
- "description": "does the column NOT match the given POSIX regular expression, case sensitive",
+ "name": "name_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48629,20 +47970,24 @@
"deprecationReason": null
},
{
- "name": "_nsimilar",
- "description": "does the column NOT match the given SQL regular expression",
+ "name": "name_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_regex",
- "description": "does the column match the given POSIX regular expression, case sensitive",
+ "name": "name_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48653,8 +47998,8 @@
"deprecationReason": null
},
{
- "name": "_similar",
- "description": "does the column match the given SQL regular expression",
+ "name": "name_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -48670,112 +48015,136 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "description": null,
+ "kind": "INPUT_OBJECT",
+ "name": "PassOptionWhereUniqueInput",
+ "description": "References PassOption record uniquely",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "BASE",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "COMBINED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "inputFields": [
{
- "name": "LOCALIZATION",
+ "name": "id",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "SCALAR",
+ "name": "RichTextAST",
+ "description": "Slate-compatible RichText AST",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "User",
- "description": "User system model",
+ "name": "ScheduledOperation",
+ "description": "Scheduled Operation system model",
"fields": [
{
- "name": "createdAt",
- "description": "The time the document was created",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages",
- "description": "Get the document in other stages",
+ "name": "affectedDocuments",
+ "description": null,
"args": [
{
- "name": "includeCurrent",
- "description": "Decides if the current stage should be included or not",
+ "name": "after",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": "false",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "inheritLocale",
- "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "name": "before",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": "false",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stages",
- "description": "Potential stages that should be returned",
+ "name": "first",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `affectedDocuments` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
}
}
},
- "defaultValue": "[DRAFT, PUBLISHED]",
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
@@ -48790,8 +48159,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "UNION",
+ "name": "ScheduledOperationAffectedDocument",
"ofType": null
}
}
@@ -48801,15 +48170,15 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": "The unique identifier",
+ "name": "createdAt",
+ "description": "The time the document was created",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "DateTime",
"ofType": null
}
},
@@ -48817,47 +48186,165 @@
"deprecationReason": null
},
{
- "name": "isActive",
- "description": "Flag to determine if user is active or not",
- "args": [],
+ "name": "createdBy",
+ "description": "User that created this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kind",
- "description": "User Kind. Can be either MEMBER, PAT or PUBLIC",
+ "name": "description",
+ "description": "Operation description",
"args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current stage should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stages",
+ "description": "Potential stages that should be returned",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[DRAFT, PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "UserKind",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name",
- "description": "The username",
+ "name": "errorMessage",
+ "description": "Operation error message",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "The unique identifier",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -48865,24 +48352,118 @@
"deprecationReason": null
},
{
- "name": "picture",
- "description": "Profile Picture url",
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt",
- "description": "The time the document was published. Null on documents in draft stage.",
+ "name": "publishedBy",
+ "description": "User that last published this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rawPayload",
+ "description": "Raw operation payload including all details, this field is subject to change",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Json",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "release",
+ "description": "The release this operation is scheduled for",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `release` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `release` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
"ofType": null
},
"isDeprecated": false,
@@ -48904,6 +48485,22 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "status",
+ "description": "operation Status",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "updatedAt",
"description": "The time the document was updated",
@@ -48919,6 +48516,51 @@
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": "User that last updated this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -48937,9 +48579,60 @@
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "UNION",
+ "name": "ScheduledOperationAffectedDocument",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": [
+ {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ }
+ ]
+ },
{
"kind": "OBJECT",
- "name": "UserConnection",
+ "name": "ScheduledOperationConnection",
"description": "A connection to a list of items.",
"fields": [
{
@@ -48973,7 +48666,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "UserEdge",
+ "name": "ScheduledOperationEdge",
"ofType": null
}
}
@@ -49006,7 +48699,7 @@
},
{
"kind": "OBJECT",
- "name": "UserEdge",
+ "name": "ScheduledOperationEdge",
"description": "An edge in a connection.",
"fields": [
{
@@ -49034,7 +48727,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "User",
+ "name": "ScheduledOperation",
"ofType": null
}
},
@@ -49049,61 +48742,44 @@
},
{
"kind": "ENUM",
- "name": "UserKind",
- "description": "System User Kind",
+ "name": "ScheduledOperationOrderByInput",
+ "description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "APP_TOKEN",
+ "name": "createdAt_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "MEMBER",
+ "name": "createdAt_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "PAT",
+ "name": "description_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "PUBLIC",
+ "name": "description_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "WEBHOOK",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "UserOrderByInput",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "createdAt_ASC",
+ "name": "errorMessage_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createdAt_DESC",
+ "name": "errorMessage_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
@@ -49121,73 +48797,78 @@
"deprecationReason": null
},
{
- "name": "isActive_ASC",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isActive_DESC",
+ "name": "publishedAt_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kind_ASC",
+ "name": "publishedAt_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kind_DESC",
+ "name": "status_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_ASC",
+ "name": "status_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name_DESC",
+ "name": "updatedAt_ASC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "picture_ASC",
+ "name": "updatedAt_DESC",
"description": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
+ "description": "System Scheduled Operation Status",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "picture_DESC",
+ "name": "CANCELED",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_ASC",
+ "name": "COMPLETED",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishedAt_DESC",
+ "name": "FAILED",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_ASC",
+ "name": "IN_PROGRESS",
"description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatedAt_DESC",
+ "name": "PENDING",
"description": null,
"isDeprecated": false,
"deprecationReason": null
@@ -49197,30 +48878,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "UserWhereComparatorInput",
- "description": "This contains a set of filters that can be used to compare values internally",
- "fields": null,
- "inputFields": [
- {
- "name": "outdated_to",
- "description": "This field can be used to request to check if the entry is outdated by internal comparison",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "ScheduledOperationWhereInput",
"description": "Identifies documents",
"fields": null,
"inputFields": [
@@ -49235,7 +48893,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
}
}
@@ -49255,7 +48913,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
}
}
@@ -49275,7 +48933,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
}
}
@@ -49401,35 +49059,11 @@
"deprecationReason": null
},
{
- "name": "documentInStages_every",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_none",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "documentInStages_some",
+ "name": "createdBy",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -49437,11 +49071,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "description",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49449,11 +49083,11 @@
"deprecationReason": null
},
{
- "name": "id_contains",
+ "name": "description_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49461,11 +49095,11 @@
"deprecationReason": null
},
{
- "name": "id_ends_with",
+ "name": "description_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49473,14 +49107,14 @@
"deprecationReason": null
},
{
- "name": "id_in",
+ "name": "description_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
}
},
@@ -49489,11 +49123,11 @@
"deprecationReason": null
},
{
- "name": "id_not",
+ "name": "description_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49501,11 +49135,11 @@
"deprecationReason": null
},
{
- "name": "id_not_contains",
+ "name": "description_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49513,11 +49147,11 @@
"deprecationReason": null
},
{
- "name": "id_not_ends_with",
+ "name": "description_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49525,14 +49159,14 @@
"deprecationReason": null
},
{
- "name": "id_not_in",
+ "name": "description_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
}
},
@@ -49541,11 +49175,11 @@
"deprecationReason": null
},
{
- "name": "id_not_starts_with",
+ "name": "description_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49553,75 +49187,11 @@
"deprecationReason": null
},
{
- "name": "id_starts_with",
+ "name": "description_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isActive",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isActive_not",
- "description": "Any other value that exists and is not equal to the given value.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kind",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "UserKind",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kind_in",
- "description": "All values that are contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "UserKind",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kind_not",
- "description": "Any other value that exists and is not equal to the given value.",
- "type": {
- "kind": "ENUM",
- "name": "UserKind",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -49629,23 +49199,7 @@
"deprecationReason": null
},
{
- "name": "kind_not_in",
- "description": "All values that are not contained in given list.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "UserKind",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "name",
+ "name": "errorMessage",
"description": null,
"type": {
"kind": "SCALAR",
@@ -49657,7 +49211,7 @@
"deprecationReason": null
},
{
- "name": "name_contains",
+ "name": "errorMessage_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
@@ -49669,7 +49223,7 @@
"deprecationReason": null
},
{
- "name": "name_ends_with",
+ "name": "errorMessage_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
@@ -49681,7 +49235,7 @@
"deprecationReason": null
},
{
- "name": "name_in",
+ "name": "errorMessage_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
@@ -49697,7 +49251,7 @@
"deprecationReason": null
},
{
- "name": "name_not",
+ "name": "errorMessage_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
@@ -49709,7 +49263,7 @@
"deprecationReason": null
},
{
- "name": "name_not_contains",
+ "name": "errorMessage_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
@@ -49721,7 +49275,7 @@
"deprecationReason": null
},
{
- "name": "name_not_ends_with",
+ "name": "errorMessage_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
@@ -49733,7 +49287,7 @@
"deprecationReason": null
},
{
- "name": "name_not_in",
+ "name": "errorMessage_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
@@ -49749,7 +49303,7 @@
"deprecationReason": null
},
{
- "name": "name_not_starts_with",
+ "name": "errorMessage_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -49761,7 +49315,7 @@
"deprecationReason": null
},
{
- "name": "name_starts_with",
+ "name": "errorMessage_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
@@ -49773,11 +49327,11 @@
"deprecationReason": null
},
{
- "name": "picture",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49785,11 +49339,11 @@
"deprecationReason": null
},
{
- "name": "picture_contains",
+ "name": "id_contains",
"description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49797,11 +49351,11 @@
"deprecationReason": null
},
{
- "name": "picture_ends_with",
+ "name": "id_ends_with",
"description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49809,14 +49363,14 @@
"deprecationReason": null
},
{
- "name": "picture_in",
+ "name": "id_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -49825,11 +49379,11 @@
"deprecationReason": null
},
{
- "name": "picture_not",
+ "name": "id_not",
"description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49837,11 +49391,11 @@
"deprecationReason": null
},
{
- "name": "picture_not_contains",
+ "name": "id_not_contains",
"description": "All values not containing the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49849,11 +49403,11 @@
"deprecationReason": null
},
{
- "name": "picture_not_ends_with",
+ "name": "id_not_ends_with",
"description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49861,14 +49415,14 @@
"deprecationReason": null
},
{
- "name": "picture_not_in",
+ "name": "id_not_in",
"description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -49877,11 +49431,11 @@
"deprecationReason": null
},
{
- "name": "picture_not_starts_with",
+ "name": "id_not_starts_with",
"description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -49889,11 +49443,11 @@
"deprecationReason": null
},
{
- "name": "picture_starts_with",
+ "name": "id_starts_with",
"description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -50005,11 +49559,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt",
+ "name": "publishedBy",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -50017,11 +49571,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gt",
- "description": "All values greater than the given value.",
+ "name": "rawPayload_json_path_exists",
+ "description": "All values containing the given json path.",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -50029,11 +49583,11 @@
"deprecationReason": null
},
{
- "name": "updatedAt_gte",
- "description": "All values greater than or equal the given value.",
+ "name": "rawPayload_value_recursive",
+ "description": "Recursively tries to find the provided JSON scalar value inside the field.\nIt does use an exact match when comparing values.\nIf you pass `null` as value the filter will be ignored. \nNote: This filter fails if you try to look for a non scalar JSON value!",
"type": {
"kind": "SCALAR",
- "name": "DateTime",
+ "name": "Json",
"ofType": null
},
"defaultValue": null,
@@ -50041,14 +49595,38 @@
"deprecationReason": null
},
{
- "name": "updatedAt_in",
+ "name": "release",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status_in",
"description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "DateTime",
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
"ofType": null
}
},
@@ -50057,8 +49635,36 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lt",
- "description": "All values less than the given value.",
+ "name": "status_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationStatus",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "DateTime",
@@ -50069,8 +49675,8 @@
"deprecationReason": null
},
{
- "name": "updatedAt_lte",
- "description": "All values less than or equal the given value.",
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
"name": "DateTime",
@@ -50081,8 +49687,8 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not",
- "description": "Any other value that exists and is not equal to the given value.",
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
"name": "DateTime",
@@ -50093,8 +49699,8 @@
"deprecationReason": null
},
{
- "name": "updatedAt_not_in",
- "description": "All values that are not contained in given list.",
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
@@ -50107,96 +49713,65 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "AND",
- "description": "Logical AND on all given filters.",
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "NOT",
- "description": "Logical NOT on all given filters combined by AND.",
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "OR",
- "description": "Logical OR on all given filters.",
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereStageInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "compareWithParent",
- "description": "This field contains fields which can be set as true or false to specify an internal comparison",
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereComparatorInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": "Specify the stage to compare with",
+ "name": "updatedBy",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "Stage",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -50210,8 +49785,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "UserWhereUniqueInput",
- "description": "References User record uniquely",
+ "name": "ScheduledOperationWhereUniqueInput",
+ "description": "References ScheduledOperation record uniquely",
"fields": null,
"inputFields": [
{
@@ -50233,12 +49808,12 @@
},
{
"kind": "OBJECT",
- "name": "Version",
- "description": null,
+ "name": "ScheduledRelease",
+ "description": "Scheduled Release system model",
"fields": [
{
"name": "createdAt",
- "description": null,
+ "description": "The time the document was created",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -50253,68 +49828,159 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
+ "name": "createdBy",
+ "description": "User that created this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "revision",
- "description": null,
+ "name": "description",
+ "description": "Release description",
"args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current stage should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stages",
+ "description": "Potential stages that should be returned",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[DRAFT, PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": null,
+ "name": "errorMessage",
+ "description": "Release error message",
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
"name": "id",
- "description": null,
+ "description": "The unique identifier",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -50324,90 +49990,261 @@
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "revision",
- "description": null,
+ "name": "isActive",
+ "description": "Whether scheduled release should be run",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Boolean",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": null,
+ "name": "isImplicit",
+ "description": "Whether scheduled release is implicit",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Stage",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "__Directive",
- "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
- "fields": [
+ },
{
- "name": "name",
- "description": null,
- "args": [],
+ "name": "operations",
+ "description": "Operations to run with this release",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `operations` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `operations` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": null,
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isRepeatable",
- "description": null,
+ "name": "publishedBy",
+ "description": "User that last published this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release date and time",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "System stage field",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
}
},
@@ -50415,46 +50252,136 @@
"deprecationReason": null
},
{
- "name": "locations",
- "description": null,
+ "name": "status",
+ "description": "Release Status",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "__DirectiveLocation",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "ScheduledReleaseStatus",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "args",
- "description": null,
+ "name": "title",
+ "description": "Release Title",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": "The time the document was updated",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": "User that last updated this document",
"args": [
{
- "name": "includeDeprecated",
- "description": null,
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": "false",
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [
+ {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "ofType": null
+ }
+ ],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ScheduledReleaseConnection",
+ "description": "A connection to a list of items.",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "edges",
+ "description": "A list of edges.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -50466,7 +50393,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "__InputValue",
+ "name": "ScheduledReleaseEdge",
"ofType": null
}
}
@@ -50474,6 +50401,160 @@
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "pageInfo",
+ "description": "Information to aid in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseCreateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "description",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "errorMessage",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isActive",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "title",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ScheduledReleaseEdge",
+ "description": "An edge in a connection.",
+ "fields": [
+ {
+ "name": "cursor",
+ "description": "A cursor for use in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "node",
+ "description": "The item at the end of the edge.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -50483,123 +50564,141 @@
},
{
"kind": "ENUM",
- "name": "__DirectiveLocation",
- "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
+ "name": "ScheduledReleaseOrderByInput",
+ "description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "QUERY",
- "description": "Location adjacent to a query operation.",
+ "name": "createdAt_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "MUTATION",
- "description": "Location adjacent to a mutation operation.",
+ "name": "createdAt_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "SUBSCRIPTION",
- "description": "Location adjacent to a subscription operation.",
+ "name": "description_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FIELD",
- "description": "Location adjacent to a field.",
+ "name": "description_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FRAGMENT_DEFINITION",
- "description": "Location adjacent to a fragment definition.",
+ "name": "errorMessage_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FRAGMENT_SPREAD",
- "description": "Location adjacent to a fragment spread.",
+ "name": "errorMessage_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "INLINE_FRAGMENT",
- "description": "Location adjacent to an inline fragment.",
+ "name": "id_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "VARIABLE_DEFINITION",
- "description": "Location adjacent to a variable definition.",
+ "name": "id_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "SCHEMA",
- "description": "Location adjacent to a schema definition.",
+ "name": "isActive_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "SCALAR",
- "description": "Location adjacent to a scalar definition.",
+ "name": "isActive_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "OBJECT",
- "description": "Location adjacent to an object type definition.",
+ "name": "isImplicit_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "FIELD_DEFINITION",
- "description": "Location adjacent to a field definition.",
+ "name": "isImplicit_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ARGUMENT_DEFINITION",
- "description": "Location adjacent to an argument definition.",
+ "name": "publishedAt_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "INTERFACE",
- "description": "Location adjacent to an interface definition.",
+ "name": "publishedAt_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "UNION",
- "description": "Location adjacent to a union definition.",
+ "name": "releaseAt_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ENUM",
- "description": "Location adjacent to an enum definition.",
+ "name": "releaseAt_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ENUM_VALUE",
- "description": "Location adjacent to an enum value definition.",
+ "name": "status_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "INPUT_OBJECT",
- "description": "Location adjacent to an input object type definition.",
+ "name": "status_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "INPUT_FIELD_DEFINITION",
- "description": "Location adjacent to an input object field definition.",
+ "name": "title_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "title_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
}
@@ -50607,682 +50706,474 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "__EnumValue",
- "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
- "fields": [
+ "kind": "ENUM",
+ "name": "ScheduledReleaseStatus",
+ "description": "System Scheduled Release Status",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "name",
+ "name": "COMPLETED",
"description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
+ "name": "FAILED",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDeprecated",
+ "name": "IN_PROGRESS",
"description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deprecationReason",
+ "name": "PENDING",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "__Field",
- "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
- "fields": [
- {
- "name": "name",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseUpdateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
"name": "description",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "args",
+ "name": "errorMessage",
"description": null,
- "args": [
- {
- "name": "includeDeprecated",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__InputValue",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
+ "name": "isActive",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDeprecated",
+ "name": "releaseAt",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deprecationReason",
+ "name": "title",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "__InputValue",
- "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
{
- "name": "name",
- "description": null,
- "args": [],
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": null,
- "args": [],
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": null,
- "args": [],
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "defaultValue",
- "description": "A GraphQL-formatted string representing the default value for this input value.",
- "args": [],
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDeprecated",
+ "name": "createdAt",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deprecationReason",
- "description": null,
- "args": [],
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "__Schema",
- "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
- "fields": [
+ },
{
- "name": "description",
- "description": null,
- "args": [],
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "types",
- "description": "A list of all types supported by this server.",
- "args": [],
+ "name": "createdAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "queryType",
- "description": "The type that query operations will be rooted at.",
- "args": [],
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "mutationType",
- "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
- "args": [],
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "OBJECT",
- "name": "__Type",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "subscriptionType",
- "description": "If this server support subscription, the type that subscription operations will be rooted at.",
- "args": [],
+ "name": "createdAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "OBJECT",
- "name": "__Type",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "directives",
- "description": "A list of all directives supported by this server.",
- "args": [],
+ "name": "createdAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Directive",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "__Type",
- "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
- "fields": [
+ },
{
- "name": "kind",
+ "name": "createdBy",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "__TypeKind",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "name",
+ "name": "description",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "description",
- "description": null,
- "args": [],
+ "name": "description_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "specifiedByURL",
- "description": null,
- "args": [],
+ "name": "description_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fields",
- "description": null,
- "args": [
- {
- "name": "includeDeprecated",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "description_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Field",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "interfaces",
- "description": null,
- "args": [],
+ "name": "description_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "possibleTypes",
- "description": null,
- "args": [],
+ "name": "description_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__Type",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "enumValues",
- "description": null,
- "args": [
- {
- "name": "includeDeprecated",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "description_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__EnumValue",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "inputFields",
- "description": null,
- "args": [
- {
- "name": "includeDeprecated",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "description_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "__InputValue",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ofType",
- "description": null,
- "args": [],
+ "name": "description_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "__Type",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "__TypeKind",
- "description": "An enum describing what kind of type a given `__Type` is.",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "SCALAR",
- "description": "Indicates this type is a scalar.",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "OBJECT",
- "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "INTERFACE",
- "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "UNION",
- "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
+ "name": "description_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ENUM",
- "description": "Indicates this type is an enum. `enumValues` is a valid field.",
+ "name": "errorMessage",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "INPUT_OBJECT",
- "description": "Indicates this type is an input object. `inputFields` is a valid field.",
+ "name": "errorMessage_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "LIST",
- "description": "Indicates this type is a list. `ofType` is a valid field.",
+ "name": "errorMessage_ends_with",
+ "description": "All values ending with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "NON_NULL",
- "description": "Indicates this type is a non-null. `ofType` is a valid field.",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account",
- "description": "An account can represent a user or a role on an organizer. It stores essential information and is used as the root class for relationships with other tables",
- "fields": [
- {
- "name": "address",
- "description": null,
- "args": [],
+ "name": "errorMessage_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
@@ -51290,424 +51181,184 @@
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "errorMessage_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "errorMessage_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc",
- "description": "An object relationship",
- "args": [],
+ "name": "errorMessage_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "OBJECT",
- "name": "kyc",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roles",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roleAssignment_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "errorMessage_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roles_aggregate",
- "description": "An aggregate relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roleAssignment_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "errorMessage_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomer",
- "description": "An object relationship",
- "args": [],
+ "name": "errorMessage_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "id",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account_aggregate",
- "description": "aggregated selection of \"account\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "OBJECT",
- "name": "account_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "account",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account_aggregate_fields",
- "description": "aggregate fields of \"account\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "account_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "ID",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "OBJECT",
- "name": "account_max_fields",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "args": [],
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "OBJECT",
- "name": "account_min_fields",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "description": "Boolean expression to filter rows from the table \"account\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
- "description": null,
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
}
},
"defaultValue": null,
@@ -51715,11 +51366,11 @@
"deprecationReason": null
},
{
- "name": "_not",
- "description": null,
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -51727,31 +51378,23 @@
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "address",
+ "name": "isActive",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -51759,11 +51402,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "isActive_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -51771,11 +51414,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "isImplicit",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -51783,11 +51426,11 @@
"deprecationReason": null
},
{
- "name": "kyc",
- "description": null,
+ "name": "isImplicit_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -51795,11 +51438,11 @@
"deprecationReason": null
},
{
- "name": "roles",
+ "name": "operations_every",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -51807,11 +51450,11 @@
"deprecationReason": null
},
{
- "name": "roles_aggregate",
+ "name": "operations_none",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_bool_exp",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -51819,11 +51462,11 @@
"deprecationReason": null
},
{
- "name": "stripeCustomer",
+ "name": "operations_some",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
+ "name": "ScheduledOperationWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -51831,57 +51474,23 @@
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "publishedAt",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "account_constraint",
- "description": "unique or primary key constraints on table \"account\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "account_address_key",
- "description": "unique or primary key constraint on columns \"address\"",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "account_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_insert_input",
- "description": "input type for inserting data into table \"account\"",
- "fields": null,
- "inputFields": [
- {
- "name": "address",
- "description": null,
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -51889,11 +51498,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -51901,23 +51510,27 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc",
- "description": null,
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_obj_rel_insert_input",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -51925,11 +51538,11 @@
"deprecationReason": null
},
{
- "name": "roles",
- "description": null,
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_arr_rel_insert_input",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -51937,11 +51550,11 @@
"deprecationReason": null
},
{
- "name": "stripeCustomer",
- "description": null,
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_obj_rel_insert_input",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -51949,206 +51562,158 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "address",
+ "name": "publishedBy",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "releaseAt",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "releaseAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
+ "name": "releaseAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "address",
- "description": null,
- "args": [],
+ "name": "releaseAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "releaseAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "releaseAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
+ "name": "releaseAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "account_mutation_response",
- "description": "response of any mutation on the table \"account\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "releaseAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "DateTime",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "status",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "account",
- "ofType": null
- }
- }
- }
+ "kind": "ENUM",
+ "name": "ScheduledReleaseStatus",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"account\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
- "description": null,
+ "name": "status_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_insert_input",
+ "kind": "ENUM",
+ "name": "ScheduledReleaseStatus",
"ofType": null
}
},
@@ -52157,37 +51722,26 @@
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "status_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "account_on_conflict",
+ "kind": "ENUM",
+ "name": "ScheduledReleaseStatus",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_on_conflict",
- "description": "on_conflict condition type for table \"account\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "status_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "account_constraint",
+ "name": "ScheduledReleaseStatus",
"ofType": null
}
},
@@ -52196,58 +51750,35 @@
"deprecationReason": null
},
{
- "name": "update_columns",
+ "name": "title",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "account_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "title_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "description": "Ordering options when selecting data from \"account\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "address",
- "description": null,
+ "name": "title_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52255,35 +51786,27 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
+ "name": "title_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc",
- "description": null,
+ "name": "title_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52291,11 +51814,11 @@
"deprecationReason": null
},
{
- "name": "roles_aggregate",
- "description": null,
+ "name": "title_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52303,11 +51826,11 @@
"deprecationReason": null
},
{
- "name": "stripeCustomer",
- "description": null,
+ "name": "title_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52315,93 +51838,36 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_pk_columns_input",
- "description": "primary key columns input for table: account",
- "fields": null,
- "inputFields": [
- {
- "name": "id",
- "description": null,
+ "name": "title_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "account_select_column",
- "description": "select columns of table \"account\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "address",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "id",
- "description": "column name",
+ "name": "title_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_set_input",
- "description": "input type for updating data in table \"account\"",
- "fields": null,
- "inputFields": [
- {
- "name": "address",
- "description": null,
+ "name": "title_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -52412,11 +51878,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "updatedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -52424,11 +51890,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -52436,37 +51902,26 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_stream_cursor_input",
- "description": "Streaming cursor of the table \"account\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_stream_cursor_value_input",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
}
},
@@ -52475,34 +51930,23 @@
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "account_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "address",
- "description": null,
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -52510,11 +51954,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -52522,23 +51966,27 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "updatedBy",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -52551,83 +51999,55 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "account_update_column",
- "description": "update columns of table \"account\"",
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereUniqueInput",
+ "description": "References ScheduledRelease record uniquely",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "address",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "inputFields": [
{
"name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "interfaces": null,
+ "enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "account_updates",
- "description": null,
+ "kind": "ENUM",
+ "name": "Stage",
+ "description": "Stage system enumeration",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_set_input",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "DRAFT",
+ "description": "The Draft is the default stage for all your content.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
+ "name": "PUBLISHED",
+ "description": "The Published stage is where you can publish your content to.",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
- "name": "bigint",
- "description": null,
+ "name": "String",
+ "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -52636,8 +52056,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "bigint_comparison_exp",
- "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.",
+ "name": "String_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -52645,7 +52065,7 @@
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52657,7 +52077,7 @@
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52669,7 +52089,19 @@
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_ilike",
+ "description": "does the column match the given case-insensitive pattern",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52687,7 +52119,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
}
}
@@ -52696,6 +52128,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "_iregex",
+ "description": "does the column match the given POSIX regular expression, case insensitive",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "_is_null",
"description": null,
@@ -52708,12 +52152,24 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "_like",
+ "description": "does the column match the given pattern",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "_lt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52725,7 +52181,7 @@
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52737,7 +52193,19 @@
"description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nilike",
+ "description": "does the column NOT match the given case-insensitive pattern",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -52755,7 +52223,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
}
}
@@ -52763,96 +52231,225 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "_niregex",
+ "description": "does the column NOT match the given POSIX regular expression, case insensitive",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nlike",
+ "description": "does the column NOT match the given pattern",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nregex",
+ "description": "does the column NOT match the given POSIX regular expression, case sensitive",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nsimilar",
+ "description": "does the column NOT match the given SQL regular expression",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_regex",
+ "description": "does the column match the given POSIX regular expression, case sensitive",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_similar",
+ "description": "does the column match the given SQL regular expression",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "BASE",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "COMBINED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "LOCALIZATION",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
{
"kind": "OBJECT",
- "name": "contentSpaceParameters",
- "description": "The contentSpaceParameters model is designed to define properties specifically for content spaces. This table includes essential details like the contentSpaceId, which links to the specific content space. By centralizing this information, our system can effectively manage and control parameters tied to each content space, enhancing functionality and flexibility.",
+ "name": "User",
+ "description": "User system model",
"fields": [
{
- "name": "contentSpace",
- "description": null,
+ "name": "createdAt",
+ "description": "The time the document was created",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
"args": [
{
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "name": "includeCurrent",
+ "description": "Decides if the current stage should be included or not",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
}
},
- "defaultValue": "[en]",
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stage",
- "description": null,
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "Stage",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
}
},
- "defaultValue": "PUBLISHED",
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "stages",
+ "description": "Potential stages that should be returned",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput_remote_rel_contentSpaceParameterscontentSpace",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
+ "defaultValue": "[DRAFT, PUBLISHED]",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "name": "id",
+ "description": "The unique identifier",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
}
},
@@ -52860,15 +52457,15 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "isActive",
+ "description": "Flag to determine if user is active or not",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "Boolean",
"ofType": null
}
},
@@ -52876,15 +52473,15 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "kind",
+ "description": "User Kind. Can be either MEMBER, PAT or PUBLIC",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "UserKind",
"ofType": null
}
},
@@ -52892,8 +52489,8 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "name",
+ "description": "The username",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -52908,27 +52505,55 @@
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "picture",
+ "description": "Profile Picture url",
"args": [],
"type": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "System stage field",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": "The time the document was updated",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
}
},
@@ -52937,30 +52562,45 @@
}
],
"inputFields": null,
- "interfaces": [],
+ "interfaces": [
+ {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "ofType": null
+ }
+ ],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "contentSpaceParameters_aggregate",
- "description": "aggregated selection of \"contentSpaceParameters\"",
+ "name": "UserConnection",
+ "description": "A connection to a list of items.",
"fields": [
{
"name": "aggregate",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_aggregate_fields",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
+ "name": "edges",
+ "description": "A list of edges.",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -52973,7 +52613,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "name": "UserEdge",
"ofType": null
}
}
@@ -52981,6 +52621,22 @@
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "pageInfo",
+ "description": "Information to aid in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -52990,52 +52646,19 @@
},
{
"kind": "OBJECT",
- "name": "contentSpaceParameters_aggregate_fields",
- "description": "aggregate fields of \"contentSpaceParameters\"",
+ "name": "UserEdge",
+ "description": "An edge in a connection.",
"fields": [
{
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "cursor",
+ "description": "A cursor for use in pagination.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
@@ -53043,25 +52666,17 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
+ "name": "node",
+ "description": "The item at the end of the edge.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_min_fields",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -53073,514 +52688,364 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "description": "Boolean expression to filter rows from the table \"contentSpaceParameters\". All fields are combined with a logical 'AND'.",
+ "kind": "ENUM",
+ "name": "UserKind",
+ "description": "System User Kind",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "_and",
+ "name": "APP_TOKEN",
"description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "MEMBER",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "PAT",
"description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceId",
+ "name": "PUBLIC",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "WEBHOOK",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "UserOrderByInput",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "id",
+ "name": "createdAt_ASC",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "createdAt_DESC",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
+ "name": "id_ASC",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_enum_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "id_DESC",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceParameters_constraint",
- "description": "unique or primary key constraints on table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "contentSpaceParameters_contentSpaceId_key",
- "description": "unique or primary key constraint on columns \"contentSpaceId\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceParameters_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
+ "name": "isActive_ASC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_insert_input",
- "description": "input type for inserting data into table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "isActive_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "kind_ASC",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "kind_DESC",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "name_ASC",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
+ "name": "name_DESC",
"description": null,
- "type": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "picture_ASC",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "picture_DESC",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "publishedAt_ASC",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "publishedAt_DESC",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "updatedAt_ASC",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "updatedAt_DESC",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "contentSpaceParameters_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereComparatorInput",
+ "description": "This contains a set of filters that can be used to compare values internally",
+ "fields": null,
+ "inputFields": [
{
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
- "args": [],
+ "name": "outdated_to",
+ "description": "This field can be used to request to check if the entry is outdated by internal comparison",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "createdAt",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "args": [],
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_mutation_response",
- "description": "response of any mutation on the table \"contentSpaceParameters\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "createdAt_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "DateTime",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_on_conflict",
- "description": "on_conflict condition type for table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceParameters_constraint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "createdAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceParameters_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "createdAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_order_by",
- "description": "Ordering options when selecting data from \"contentSpaceParameters\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "contentSpaceId",
+ "name": "documentInStages_every",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -53588,11 +53053,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "documentInStages_none",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -53600,11 +53065,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "documentInStages_some",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
"ofType": null
},
"defaultValue": null,
@@ -53612,11 +53077,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "id",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -53624,11 +53089,11 @@
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "id_contains",
+ "description": "All values containing the given string.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -53636,108 +53101,91 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_pk_columns_input",
- "description": "primary key columns input for table: contentSpaceParameters",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "id",
- "description": null,
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "ID",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
- "description": "select columns of table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "contentSpaceId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "created_at",
- "description": "column name",
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "column name",
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "column name",
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": "column name",
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_set_input",
- "description": "input type for updating data in table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": [
- {
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -53745,11 +53193,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -53757,11 +53205,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "isActive",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -53769,11 +53217,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "isActive_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -53781,11 +53229,11 @@
"deprecationReason": null
},
{
- "name": "status",
+ "name": "kind",
"description": null,
"type": {
"kind": "ENUM",
- "name": "contentSpaceStatus_enum",
+ "name": "UserKind",
"ofType": null
},
"defaultValue": null,
@@ -53793,37 +53241,42 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "kind_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "UserKind",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "kind_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "ENUM",
+ "name": "UserKind",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_stream_cursor_input",
- "description": "Streaming cursor of the table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "kind_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_stream_cursor_value_input",
+ "kind": "ENUM",
+ "name": "UserKind",
"ofType": null
}
},
@@ -53832,31 +53285,20 @@
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "name",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "contentSpaceId",
- "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "name": "name_contains",
+ "description": "All values containing the given string.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -53867,11 +53309,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "name_ends_with",
+ "description": "All values ending with the given string.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -53879,20 +53321,24 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "name_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "name_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -53903,11 +53349,11 @@
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "name_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -53915,81 +53361,87 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "name_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceParameters_update_column",
- "description": "update columns of table \"contentSpaceParameters\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "contentSpaceId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "created_at",
- "description": "column name",
+ "name": "name_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "column name",
+ "name": "name_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "column name",
+ "name": "name_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": "column name",
+ "name": "picture",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "picture_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "picture_ends_with",
+ "description": "All values ending with the given string.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_set_input",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -53997,216 +53449,115 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "picture_in",
+ "description": "All values that are contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
- "description": "columns and relationships of \"contentSpaceStatus\"",
- "fields": [
+ },
{
- "name": "value",
- "description": null,
- "args": [],
+ "name": "picture_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_aggregate",
- "description": "aggregated selection of \"contentSpaceStatus\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "picture_not_contains",
+ "description": "All values not containing the given string.",
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "picture_not_ends_with",
+ "description": "All values not ending with the given string",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_aggregate_fields",
- "description": "aggregate fields of \"contentSpaceStatus\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "picture_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "picture_not_starts_with",
+ "description": "All values not starting with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_max_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "args": [],
+ "name": "picture_starts_with",
+ "description": "All values starting with the given string.",
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_min_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "description": "Boolean expression to filter rows from the table \"contentSpaceStatus\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "publishedAt",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
- "description": null,
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -54214,19 +53565,27 @@
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
"defaultValue": null,
@@ -54234,74 +53593,35 @@
"deprecationReason": null
},
{
- "name": "value",
- "description": null,
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceStatus_constraint",
- "description": "unique or primary key constraints on table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "contentSpaceStatus_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "DRAFT",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "PUBLISHED",
- "description": null,
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"contentSpaceStatus_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_eq",
- "description": null,
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -54309,19 +53629,15 @@
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
"defaultValue": null,
@@ -54329,11 +53645,11 @@
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "updatedAt",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -54341,11 +53657,11 @@
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
"type": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
+ "kind": "SCALAR",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
@@ -54353,166 +53669,150 @@
"deprecationReason": null
},
{
- "name": "_nin",
- "description": null,
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_enum",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_insert_input",
- "description": "input type for inserting data into table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": null,
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": null,
- "args": [],
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": null,
- "args": [],
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "contentSpaceStatus_mutation_response",
- "description": "response of any mutation on the table \"contentSpaceStatus\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
+ "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "fields": null,
+ "inputFields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_on_conflict",
- "description": "on_conflict condition type for table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_constraint",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereStageInput",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -54520,35 +53820,23 @@
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "compareWithParent",
+ "description": "This field contains fields which can be set as true or false to specify an internal comparison",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereComparatorInput",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "stage",
+ "description": "Specify the stage to compare with",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
},
"defaultValue": null,
@@ -54562,16 +53850,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_order_by",
- "description": "Ordering options when selecting data from \"contentSpaceStatus\".",
+ "name": "UserWhereUniqueInput",
+ "description": "References User record uniquely",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "id",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "ID",
"ofType": null
},
"defaultValue": null,
@@ -54584,178 +53872,127 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_pk_columns_input",
- "description": "primary key columns input for table: contentSpaceStatus",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "Version",
+ "description": null,
+ "fields": [
{
- "name": "value",
+ "name": "createdAt",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "DateTime",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
- "description": "select columns of table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_set_input",
- "description": "input type for updating data in table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_stream_cursor_input",
- "description": "Streaming cursor of the table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "revision",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_stream_cursor_value_input",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "stage",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
+ "name": "VersionWhereInput",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "id",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "contentSpaceStatus_update_column",
- "description": "update columns of table \"contentSpaceStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "revision",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_set_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "stage",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
}
},
@@ -54770,11 +54007,11 @@
},
{
"kind": "OBJECT",
- "name": "currency",
- "description": "Currencies code following the standard ISO 4217 (https://en.wikipedia.org/wiki/ISO_4217)",
+ "name": "__Directive",
+ "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
"fields": [
{
- "name": "value",
+ "name": "name",
"description": null,
"args": [],
"type": {
@@ -54788,32 +54025,37 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "currency_aggregate",
- "description": "aggregated selection of \"currency\"",
- "fields": [
+ },
{
- "name": "aggregate",
+ "name": "description",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "currency_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "isRepeatable",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locations",
"description": null,
"args": [],
"type": {
@@ -54826,8 +54068,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "currency",
+ "kind": "ENUM",
+ "name": "__DirectiveLocation",
"ofType": null
}
}
@@ -54835,51 +54077,20 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "currency_aggregate_fields",
- "description": "aggregate fields of \"currency\"",
- "fields": [
+ },
{
- "name": "count",
+ "name": "args",
"description": null,
"args": [
{
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
+ "name": "includeDeprecated",
"description": null,
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": null,
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
}
@@ -54888,37 +54099,21 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__InputValue",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "currency_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "currency_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -54927,290 +54122,181 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "description": "Boolean expression to filter rows from the table \"currency\". All fields are combined with a logical 'AND'.",
+ "kind": "ENUM",
+ "name": "__DirectiveLocation",
+ "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
+ "name": "QUERY",
+ "description": "Location adjacent to a query operation.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "MUTATION",
+ "description": "Location adjacent to a mutation operation.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
+ "name": "SUBSCRIPTION",
+ "description": "Location adjacent to a subscription operation.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "FIELD",
+ "description": "Location adjacent to a field.",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "currency_constraint",
- "description": "unique or primary key constraints on table \"currency\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "currency_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
+ "name": "FRAGMENT_DEFINITION",
+ "description": "Location adjacent to a fragment definition.",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "currency_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "AED",
- "description": null,
+ "name": "FRAGMENT_SPREAD",
+ "description": "Location adjacent to a fragment spread.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "CNY",
- "description": null,
+ "name": "INLINE_FRAGMENT",
+ "description": "Location adjacent to an inline fragment.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "EUR",
- "description": null,
+ "name": "VARIABLE_DEFINITION",
+ "description": "Location adjacent to a variable definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "GBP",
- "description": null,
+ "name": "SCHEMA",
+ "description": "Location adjacent to a schema definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "QAR",
- "description": null,
+ "name": "SCALAR",
+ "description": "Location adjacent to a scalar definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "SGD",
- "description": null,
+ "name": "OBJECT",
+ "description": "Location adjacent to an object type definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "USD",
- "description": null,
+ "name": "FIELD_DEFINITION",
+ "description": "Location adjacent to a field definition.",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"currency_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_eq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "ARGUMENT_DEFINITION",
+ "description": "Location adjacent to an argument definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
+ "name": "INTERFACE",
+ "description": "Location adjacent to an interface definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_is_null",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "UNION",
+ "description": "Location adjacent to a union definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "ENUM",
+ "description": "Location adjacent to an enum definition.",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "ENUM_VALUE",
+ "description": "Location adjacent to an enum value definition.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "INPUT_OBJECT",
+ "description": "Location adjacent to an input object type definition.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "INPUT_FIELD_DEFINITION",
+ "description": "Location adjacent to an input object field definition.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "__EnumValue",
+ "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
+ "fields": [
+ {
+ "name": "name",
"description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_insert_input",
- "description": "input type for inserting data into table \"currency\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "description",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "currency_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
+ "name": "isDeprecated",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "currency_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
+ "name": "deprecationReason",
"description": null,
"args": [],
"type": {
@@ -55229,19 +54315,19 @@
},
{
"kind": "OBJECT",
- "name": "currency_mutation_response",
- "description": "response of any mutation on the table \"currency\"",
+ "name": "__Field",
+ "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
"fields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
+ "name": "name",
+ "description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
@@ -55249,9 +54335,34 @@
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
+ "name": "description",
+ "description": null,
"args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "args",
+ "description": null,
+ "args": [
+ {
+ "name": "includeDeprecated",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -55263,7 +54374,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "currency",
+ "name": "__InputValue",
"ofType": null
}
}
@@ -55271,108 +54382,66 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_on_conflict",
- "description": "on_conflict condition type for table \"currency\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
+ "name": "type",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "currency_constraint",
+ "kind": "OBJECT",
+ "name": "__Type",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
+ "name": "isDeprecated",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_update_column",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
}
},
- "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_order_by",
- "description": "Ordering options when selecting data from \"currency\".",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
+ "name": "deprecationReason",
"description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "currency_pk_columns_input",
- "description": "primary key columns input for table: currency",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "__InputValue",
+ "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
+ "fields": [
{
- "name": "value",
+ "name": "name",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -55382,204 +54451,91 @@
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "currency_select_column",
- "description": "select columns of table \"currency\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_set_input",
- "description": "input type for updating data in table \"currency\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "description",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_stream_cursor_input",
- "description": "Streaming cursor of the table \"currency\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "type",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_stream_cursor_value_input",
+ "kind": "OBJECT",
+ "name": "__Type",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
+ "name": "defaultValue",
+ "description": "A GraphQL-formatted string representing the default value for this input value.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "currency_update_column",
- "description": "update columns of table \"currency\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "currency_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_set_input",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "isDeprecated",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "description": "ordering argument of a cursor",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "ASC",
- "description": "ascending ordering of the cursor",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "DESC",
- "description": "descending ordering of the cursor",
+ "name": "deprecationReason",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventParameters",
- "description": "The eventParameters model is designed to define properties on an event involving all event passes. This table includes critical details like the eventId and activityWebhookId, which aids in monitoring and processing events or changes related to the event parameters. By centralizing this information, our system can effectively manage and control parameters tied to specific events, enhancing the overall functionality and flexibility of event handling.",
+ "name": "__Schema",
+ "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
"fields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "name": "description",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
@@ -55590,249 +54546,256 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "types",
+ "description": "A list of all types supported by this server.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "name": "queryType",
+ "description": "The type that query operations will be rooted at.",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
+ "name": "mutationType",
+ "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "subscriptionType",
+ "description": "If this server support subscription, the type that subscription operations will be rooted at.",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "directives",
+ "description": "A list of all directives supported by this server.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Directive",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
+ "fields": [
+ {
+ "name": "kind",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "__TypeKind",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
+ "name": "description",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
+ "name": "specifiedByURL",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "event",
+ "name": "fields",
"description": null,
"args": [
{
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
+ "name": "includeDeprecated",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput_remote_rel_eventParametersevent",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
- "defaultValue": null,
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Field",
+ "ofType": null
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
+ "name": "interfaces",
"description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContracts",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
+ "name": "possibleTypes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__Type",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "enumValues",
+ "description": null,
+ "args": [
{
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "includeDeprecated",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "Boolean",
"ofType": null
},
- "defaultValue": null,
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "__EnumValue",
+ "ofType": null
}
}
},
@@ -55840,92 +54803,130 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts_aggregate",
- "description": "An aggregate relationship",
+ "name": "inputFields",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "includeDeprecated",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "Boolean",
"ofType": null
},
- "defaultValue": null,
+ "defaultValue": "false",
"isDeprecated": false,
"deprecationReason": null
}
],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "__InputValue",
+ "ofType": null
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ofType",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "__Type",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "__TypeKind",
+ "description": "An enum describing what kind of type a given `__Type` is.",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "SCALAR",
+ "description": "Indicates this type is a scalar.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "OBJECT",
+ "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "INTERFACE",
+ "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "UNION",
+ "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ENUM",
+ "description": "Indicates this type is an enum. `enumValues` is a valid field.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "INPUT_OBJECT",
+ "description": "Indicates this type is an input object. `inputFields` is a valid field.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "LIST",
+ "description": "Indicates this type is a list. `ofType` is a valid field.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "NON_NULL",
+ "description": "Indicates this type is a non-null. `ofType` is a valid field.",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "account",
+ "description": "An account can represent a user or a role on an organizer. It stores essential information and is used as the root class for relationships with other tables",
+ "fields": [
+ {
+ "name": "address",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -55933,7 +54934,47 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts",
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "kyc",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "roles",
"description": "An array relationship",
"args": [
{
@@ -55947,7 +54988,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "roleAssignment_select_column",
"ofType": null
}
}
@@ -55991,7 +55032,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "roleAssignment_order_by",
"ofType": null
}
}
@@ -56005,7 +55046,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56024,7 +55065,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "roleAssignment",
"ofType": null
}
}
@@ -56034,7 +55075,7 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts_aggregate",
+ "name": "roles_aggregate",
"description": "An aggregate relationship",
"args": [
{
@@ -56048,7 +55089,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "roleAssignment_select_column",
"ofType": null
}
}
@@ -56092,7 +55133,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "roleAssignment_order_by",
"ofType": null
}
}
@@ -56106,7 +55147,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56119,23 +55160,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft_aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "name": "roleAssignment_aggregate",
"ofType": null
}
},
@@ -56143,169 +55168,28 @@
"deprecationReason": null
},
{
- "name": "isOngoing",
- "description": "A computed field, executes function \"is_event_ongoing\"",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isSaleOngoing",
- "description": "A computed field, executes function \"is_sale_ongoing\"",
+ "name": "stripeCustomer",
+ "description": "An object relationship",
"args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer",
- "description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
"kind": "OBJECT",
- "name": "Organizer",
+ "name": "stripeCustomer",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
+ "name": "updated_at",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "args": [],
- "type": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -56315,8 +55199,8 @@
},
{
"kind": "OBJECT",
- "name": "eventParameters_aggregate",
- "description": "aggregated selection of \"eventParameters\"",
+ "name": "account_aggregate",
+ "description": "aggregated selection of \"account\"",
"fields": [
{
"name": "aggregate",
@@ -56324,7 +55208,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventParameters_aggregate_fields",
+ "name": "account_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -56345,7 +55229,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "account",
"ofType": null
}
}
@@ -56362,8 +55246,8 @@
},
{
"kind": "OBJECT",
- "name": "eventParameters_aggregate_fields",
- "description": "aggregate fields of \"eventParameters\"",
+ "name": "account_aggregate_fields",
+ "description": "aggregate fields of \"account\"",
"fields": [
{
"name": "count",
@@ -56380,7 +55264,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventParameters_select_column",
+ "name": "account_select_column",
"ofType": null
}
}
@@ -56420,7 +55304,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventParameters_max_fields",
+ "name": "account_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -56432,7 +55316,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventParameters_min_fields",
+ "name": "account_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -56446,8 +55330,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventParameters\". All fields are combined with a logical 'AND'.",
+ "name": "account_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"account\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -56461,7 +55345,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "account_bool_exp",
"ofType": null
}
}
@@ -56475,7 +55359,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "account_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56493,7 +55377,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "account_bool_exp",
"ofType": null
}
}
@@ -56503,7 +55387,7 @@
"deprecationReason": null
},
{
- "name": "activityWebhookId",
+ "name": "address",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -56526,114 +55410,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "dateEnd",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContracts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContracts_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
"description": null,
@@ -56647,35 +55423,11 @@
"deprecationReason": null
},
{
- "name": "isOngoing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isSaleOngoing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
+ "name": "kyc",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "kyc_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56683,11 +55435,11 @@
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "roles",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56695,11 +55447,11 @@
"deprecationReason": null
},
{
- "name": "status",
+ "name": "roles_aggregate",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_enum_comparison_exp",
+ "name": "roleAssignment_aggregate_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56707,11 +55459,11 @@
"deprecationReason": null
},
{
- "name": "timezone",
+ "name": "stripeCustomer",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -56737,42 +55489,36 @@
},
{
"kind": "ENUM",
- "name": "eventParameters_constraint",
- "description": "unique or primary key constraints on table \"eventParameters\"",
+ "name": "account_constraint",
+ "description": "unique or primary key constraints on table \"account\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "eventParameters_eventId_key",
- "description": "unique or primary key constraint on columns \"eventId\"",
+ "name": "account_address_key",
+ "description": "unique or primary key constraint on columns \"address\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters_pkey",
+ "name": "account_pkey",
"description": "unique or primary key constraint on columns \"id\"",
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "eventParameters_signingKey_key",
- "description": "unique or primary key constraint on columns \"signingKey\"",
- "isDeprecated": false,
- "deprecationReason": null
}
],
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_insert_input",
- "description": "input type for inserting data into table \"eventParameters\"",
+ "name": "account_insert_input",
+ "description": "input type for inserting data into table \"account\"",
"fields": null,
"inputFields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "name": "address",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -56795,47 +55541,11 @@
"deprecationReason": null
},
{
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -56843,11 +55553,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
+ "name": "kyc",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -56855,11 +55565,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts",
+ "name": "roles",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_arr_rel_insert_input",
+ "name": "roleAssignment_arr_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -56867,11 +55577,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts",
+ "name": "stripeCustomer",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_arr_rel_insert_input",
+ "name": "stripeCustomer_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -56879,90 +55589,89 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "updated_at",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "account_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "organizerId",
+ "name": "address",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
+ "name": "id",
"description": null,
- "type": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventParameters_max_fields",
- "description": "aggregate max on columns",
+ "name": "account_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "name": "address",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
@@ -56985,271 +55694,20 @@
"deprecationReason": null
},
{
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "name": "id",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventParameters_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
+ "name": "updated_at",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
@@ -57267,8 +55725,8 @@
},
{
"kind": "OBJECT",
- "name": "eventParameters_mutation_response",
- "description": "response of any mutation on the table \"eventParameters\"",
+ "name": "account_mutation_response",
+ "description": "response of any mutation on the table \"account\"",
"fields": [
{
"name": "affected_rows",
@@ -57301,7 +55759,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "account",
"ofType": null
}
}
@@ -57318,8 +55776,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"eventParameters\"",
+ "name": "account_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"account\"",
"fields": null,
"inputFields": [
{
@@ -57330,7 +55788,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_insert_input",
+ "name": "account_insert_input",
"ofType": null
}
},
@@ -57343,7 +55801,7 @@
"description": "upsert condition",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_on_conflict",
+ "name": "account_on_conflict",
"ofType": null
},
"defaultValue": null,
@@ -57357,8 +55815,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_on_conflict",
- "description": "on_conflict condition type for table \"eventParameters\"",
+ "name": "account_on_conflict",
+ "description": "on_conflict condition type for table \"account\"",
"fields": null,
"inputFields": [
{
@@ -57369,7 +55827,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventParameters_constraint",
+ "name": "account_constraint",
"ofType": null
}
},
@@ -57391,7 +55849,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventParameters_update_column",
+ "name": "account_update_column",
"ofType": null
}
}
@@ -57406,7 +55864,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "account_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -57420,12 +55878,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
- "description": "Ordering options when selecting data from \"eventParameters\".",
+ "name": "account_order_by",
+ "description": "Ordering options when selecting data from \"account\".",
"fields": null,
"inputFields": [
{
- "name": "activityWebhookId",
+ "name": "address",
"description": null,
"type": {
"kind": "ENUM",
@@ -57449,55 +55907,7 @@
"deprecationReason": null
},
{
- "name": "dateEnd",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
+ "name": "id",
"description": null,
"type": {
"kind": "ENUM",
@@ -57509,11 +55919,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts_aggregate",
+ "name": "kyc",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_order_by",
+ "name": "kyc_order_by",
"ofType": null
},
"defaultValue": null,
@@ -57521,83 +55931,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts_aggregate",
+ "name": "roles_aggregate",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isOngoing",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isSaleOngoing",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
+ "name": "roleAssignment_aggregate_order_by",
"ofType": null
},
"defaultValue": null,
@@ -57605,11 +55943,11 @@
"deprecationReason": null
},
{
- "name": "timezone",
+ "name": "stripeCustomer",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_order_by",
"ofType": null
},
"defaultValue": null,
@@ -57635,8 +55973,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_pk_columns_input",
- "description": "primary key columns input for table: eventParameters",
+ "name": "account_pk_columns_input",
+ "description": "primary key columns input for table: account",
"fields": null,
"inputFields": [
{
@@ -57662,14 +56000,14 @@
},
{
"kind": "ENUM",
- "name": "eventParameters_select_column",
- "description": "select columns of table \"eventParameters\"",
+ "name": "account_select_column",
+ "description": "select columns of table \"account\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "activityWebhookId",
+ "name": "address",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -57680,66 +56018,12 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "dateEnd",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "updated_at",
"description": "column name",
@@ -57751,13 +56035,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_set_input",
- "description": "input type for updating data in table \"eventParameters\"",
+ "name": "account_set_input",
+ "description": "input type for updating data in table \"account\"",
"fields": null,
"inputFields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "name": "address",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -57779,66 +56063,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
"description": null,
@@ -57851,54 +56075,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "updated_at",
"description": null,
@@ -57918,8 +56094,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventParameters\"",
+ "name": "account_stream_cursor_input",
+ "description": "Streaming cursor of the table \"account\"",
"fields": null,
"inputFields": [
{
@@ -57930,7 +56106,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_stream_cursor_value_input",
+ "name": "account_stream_cursor_value_input",
"ofType": null
}
},
@@ -57957,13 +56133,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_stream_cursor_value_input",
+ "name": "account_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "name": "address",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -57985,66 +56161,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "dateEnd",
- "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
"description": null,
@@ -58057,54 +56173,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "updated_at",
"description": null,
@@ -58124,14 +56192,14 @@
},
{
"kind": "ENUM",
- "name": "eventParameters_update_column",
- "description": "update columns of table \"eventParameters\"",
+ "name": "account_update_column",
+ "description": "update columns of table \"account\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "activityWebhookId",
+ "name": "address",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -58142,66 +56210,12 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "dateEnd",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateStart",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "updated_at",
"description": "column name",
@@ -58213,7 +56227,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventParameters_updates",
+ "name": "account_updates",
"description": null,
"fields": null,
"inputFields": [
@@ -58222,7 +56236,7 @@
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_set_input",
+ "name": "account_set_input",
"ofType": null
},
"defaultValue": null,
@@ -58237,7 +56251,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "account_bool_exp",
"ofType": null
}
},
@@ -58252,12 +56266,12 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNft",
- "description": "columns and relationships of \"eventPassNft\"",
+ "name": "apiKeyStatus",
+ "description": "The apiKeyStatus table defines the possible status values for API keys. It ensures data integrity and provides a centralized reference for the status field in the publishableApiKey and secretApiKey tables.",
"fields": [
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -58270,142 +56284,108 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_aggregate",
+ "description": "aggregated selection of \"apiKeyStatus\"",
+ "fields": [
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "aggregate",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_aggregate_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "nodes",
"description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_aggregate_fields",
+ "description": "aggregate fields of \"apiKeyStatus\"",
+ "fields": [
{
- "name": "event",
+ "name": "count",
"description": null,
"args": [
{
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "ofType": null
}
}
},
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
+ "name": "distinct",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput_remote_rel_eventPassNftevent",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "type": {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
}
},
@@ -58413,193 +56393,327 @@
"deprecationReason": null
},
{
- "name": "eventParameters",
- "description": "An object relationship",
+ "name": "max",
+ "description": null,
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "apiKeyStatus_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPass",
+ "name": "min",
"description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPass",
+ "name": "apiKeyStatus_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"apiKeyStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
- "args": [],
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": "An object relationship",
- "args": [],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "_or",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": "Indicates whether the event pass NFT has been delivered to the owner.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_constraint",
+ "description": "unique or primary key constraints on table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "apiKeyStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "ACTIVE",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "DISABLED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "EXPIRED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"apiKeyStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isRevealed",
- "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
- "args": [],
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_insert_input",
+ "description": "input type for inserting data into table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "lastNftTransfer",
- "description": "An object relationship",
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_mutation_response",
+ "description": "response of any mutation on the table \"apiKeyStatus\"",
+ "fields": [
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
- "args": [
- {
- "name": "path",
- "description": "JSON select path",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "jsonb",
+ "name": "Int",
"ofType": null
}
},
@@ -58607,86 +56721,9 @@
"deprecationReason": null
},
{
- "name": "nftTransfers",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -58698,7 +56735,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "nftTransfer",
+ "name": "apiKeyStatus",
"ofType": null
}
}
@@ -58706,351 +56743,292 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_on_conflict",
+ "description": "on_conflict condition type for table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "nftTransfers_aggregate",
- "description": "An aggregate relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "nftTransfer_aggregate",
+ "kind": "ENUM",
+ "name": "apiKeyStatus_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizer",
+ "name": "update_columns",
"description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer",
+ "name": "apiKeyStatus_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ }
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "An object relationship",
- "args": [],
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "passAmount",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_order_by",
+ "description": "Ordering options when selecting data from \"apiKeyStatus\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "packId",
+ "name": "value",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_pk_columns_input",
+ "description": "primary key columns input for table: apiKeyStatus",
+ "fields": null,
+ "inputFields": [
{
- "name": "packPricing",
- "description": "An object relationship",
- "args": [],
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "description": "select columns of table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "passAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_set_input",
+ "description": "input type for updating data in table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "passPricing",
- "description": "An object relationship",
- "args": [],
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
- "args": [],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "updated_at",
- "description": null,
- "args": [],
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "description": "The eventPassNftContract model is designed to store metadata associated with NFT contracts linked to specific event passes. This table captures critical, immutable details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. Additionally, this table includes information specific to each event pass, like the eventPassId and organizerId, allowing for precise management and interaction with NFT contracts tied to individual event passes. By centralizing this information, our system can effectively manage, reference, and interact with NFT contracts related to particular event passes.",
- "fields": [
+ "kind": "ENUM",
+ "name": "apiKeyStatus_update_column",
+ "description": "update columns of table \"apiKeyStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
- "args": [],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_set_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "description": "The apiKeyType table defines the possible types of API keys. It ensures data integrity and provides a centralized reference for the type field in the api key tables.",
+ "fields": [
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "value",
+ "description": "The type of the API key",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -59063,157 +57041,34 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyType_aggregate",
+ "description": "aggregated selection of \"apiKeyType\"",
+ "fields": [
{
- "name": "eventPass",
+ "name": "aggregate",
"description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPass",
+ "name": "apiKeyType_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "nodes",
"description": null,
"args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -59225,7 +57080,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "apiKeyType",
"ofType": null
}
}
@@ -59233,14 +57088,25 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "apiKeyType_aggregate_fields",
+ "description": "aggregate fields of \"apiKeyType\"",
+ "fields": [
{
- "name": "eventPassNfts_aggregate",
- "description": "An aggregate relationship",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -59249,7 +57115,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "apiKeyType_select_column",
"ofType": null
}
}
@@ -59259,55 +57125,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -59319,8 +57141,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -59328,594 +57150,90 @@
"deprecationReason": null
},
{
- "name": "eventPassOrderSums",
- "description": "An object relationship",
+ "name": "max",
+ "description": null,
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "apiKeyType_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "min",
"description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
+ "kind": "OBJECT",
+ "name": "apiKeyType_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"apiKeyType\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Flag indicating whether the event pass NFT is airdropped.",
- "args": [],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelayedRevealed",
- "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
- "args": [],
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ }
}
},
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orders",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "order_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "order",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orders_aggregate",
- "description": "An aggregate relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "order_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "order_aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passType",
- "description": "Type of the pass, referencing the eventPassType table.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": "Type of the event pass NFT contract.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_enum",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "validationType",
- "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
- "description": "Contract types representing the nature of the event pass NFT contract.",
- "fields": [
- {
- "name": "value",
- "description": "Type name for event pass NFT contract.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_aggregate",
- "description": "aggregated selection of \"eventPassNftContractType\"",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_aggregate_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nodes",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_aggregate_fields",
- "description": "aggregate fields of \"eventPassNftContractType\"",
- "fields": [
- {
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassNftContractType\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
@@ -59938,14 +57256,14 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContractType_constraint",
- "description": "unique or primary key constraints on table \"eventPassNftContractType\"",
+ "name": "apiKeyType_constraint",
+ "description": "unique or primary key constraints on table \"apiKeyType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "eventPassNftContractType_pkey",
+ "name": "apiKeyType_pkey",
"description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
@@ -59955,20 +57273,14 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "name": "apiKeyType_enum",
"description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "delayed_reveal",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "normal",
+ "name": "EXTERNAL",
"description": null,
"isDeprecated": false,
"deprecationReason": null
@@ -59978,8 +57290,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"eventPassNftContractType_enum\". All fields are combined with logical 'AND'.",
+ "name": "apiKeyType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"apiKeyType_enum\". All fields are combined with logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -59987,7 +57299,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "name": "apiKeyType_enum",
"ofType": null
},
"defaultValue": null,
@@ -60005,7 +57317,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "name": "apiKeyType_enum",
"ofType": null
}
}
@@ -60031,7 +57343,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "name": "apiKeyType_enum",
"ofType": null
},
"defaultValue": null,
@@ -60049,7 +57361,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "name": "apiKeyType_enum",
"ofType": null
}
}
@@ -60065,13 +57377,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_insert_input",
- "description": "input type for inserting data into table \"eventPassNftContractType\"",
+ "name": "apiKeyType_insert_input",
+ "description": "input type for inserting data into table \"apiKeyType\"",
"fields": null,
"inputFields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -60088,12 +57400,12 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNftContractType_max_fields",
+ "name": "apiKeyType_max_fields",
"description": "aggregate max on columns",
"fields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"args": [],
"type": {
"kind": "SCALAR",
@@ -60111,12 +57423,12 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNftContractType_min_fields",
+ "name": "apiKeyType_min_fields",
"description": "aggregate min on columns",
"fields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"args": [],
"type": {
"kind": "SCALAR",
@@ -60134,8 +57446,8 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNftContractType_mutation_response",
- "description": "response of any mutation on the table \"eventPassNftContractType\"",
+ "name": "apiKeyType_mutation_response",
+ "description": "response of any mutation on the table \"apiKeyType\"",
"fields": [
{
"name": "affected_rows",
@@ -60168,7 +57480,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "name": "apiKeyType",
"ofType": null
}
}
@@ -60185,8 +57497,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_on_conflict",
- "description": "on_conflict condition type for table \"eventPassNftContractType\"",
+ "name": "apiKeyType_on_conflict",
+ "description": "on_conflict condition type for table \"apiKeyType\"",
"fields": null,
"inputFields": [
{
@@ -60197,7 +57509,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_constraint",
+ "name": "apiKeyType_constraint",
"ofType": null
}
},
@@ -60219,7 +57531,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_update_column",
+ "name": "apiKeyType_update_column",
"ofType": null
}
}
@@ -60234,7 +57546,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
+ "name": "apiKeyType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -60248,8 +57560,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_order_by",
- "description": "Ordering options when selecting data from \"eventPassNftContractType\".",
+ "name": "apiKeyType_order_by",
+ "description": "Ordering options when selecting data from \"apiKeyType\".",
"fields": null,
"inputFields": [
{
@@ -60271,13 +57583,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_pk_columns_input",
- "description": "primary key columns input for table: eventPassNftContractType",
+ "name": "apiKeyType_pk_columns_input",
+ "description": "primary key columns input for table: apiKeyType",
"fields": null,
"inputFields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -60298,8 +57610,8 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
- "description": "select columns of table \"eventPassNftContractType\"",
+ "name": "apiKeyType_select_column",
+ "description": "select columns of table \"apiKeyType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -60315,13 +57627,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_set_input",
- "description": "input type for updating data in table \"eventPassNftContractType\"",
+ "name": "apiKeyType_set_input",
+ "description": "input type for updating data in table \"apiKeyType\"",
"fields": null,
"inputFields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -60338,8 +57650,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassNftContractType\"",
+ "name": "apiKeyType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"apiKeyType\"",
"fields": null,
"inputFields": [
{
@@ -60350,7 +57662,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_stream_cursor_value_input",
+ "name": "apiKeyType_stream_cursor_value_input",
"ofType": null
}
},
@@ -60377,13 +57689,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_stream_cursor_value_input",
+ "name": "apiKeyType_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": "The type of the API key",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -60400,8 +57712,8 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContractType_update_column",
- "description": "update columns of table \"eventPassNftContractType\"",
+ "name": "apiKeyType_update_column",
+ "description": "update columns of table \"apiKeyType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -60417,7 +57729,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_updates",
+ "name": "apiKeyType_updates",
"description": null,
"fields": null,
"inputFields": [
@@ -60426,7 +57738,7 @@
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_set_input",
+ "name": "apiKeyType_set_input",
"ofType": null
},
"defaultValue": null,
@@ -60441,7 +57753,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
+ "name": "apiKeyType_bool_exp",
"ofType": null
}
},
@@ -60455,64 +57767,51 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNftContract_aggregate",
- "description": "aggregated selection of \"eventPassNftContract\"",
- "fields": [
+ "kind": "SCALAR",
+ "name": "bigint",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"bigint\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "aggregate",
+ "name": "_eq",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "_gt",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "bool_and",
+ "name": "_gte",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_bool_and",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"defaultValue": null,
@@ -60520,62 +57819,55 @@
"deprecationReason": null
},
{
- "name": "bool_or",
+ "name": "_in",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_bool_or",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
+ "name": "_is_null",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_count",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_bool_and",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
+ "name": "_lt",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "_lte",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "bigint",
"ofType": null
},
"defaultValue": null,
@@ -60583,11 +57875,11 @@
"deprecationReason": null
},
{
- "name": "filter",
+ "name": "_neq",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"defaultValue": null,
@@ -60595,15 +57887,19 @@
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "_nin",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -60616,147 +57912,228 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_bool_or",
- "description": null,
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "description": "The contentSpaceParameters model is designed to define properties specifically for content spaces. This table includes essential details like the contentSpaceId, which links to the specific content space. By centralizing this information, our system can effectively manage and control parameters tied to each content space, enhancing functionality and flexibility.",
+ "fields": [
{
- "name": "arguments",
+ "name": "contentSpace",
"description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput_remote_rel_contentSpaceParameterscontentSpace",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "filter",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
+ "name": "status",
"description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "updated_at",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_aggregate",
+ "description": "aggregated selection of \"contentSpaceParameters\"",
+ "fields": [
{
- "name": "filter",
+ "name": "aggregate",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_aggregate_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "nodes",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventPassNftContract_aggregate_fields",
- "description": "aggregate fields of \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_aggregate_fields",
+ "description": "aggregate fields of \"contentSpaceParameters\"",
"fields": [
{
"name": "count",
@@ -60773,7 +58150,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContract_select_column",
+ "name": "contentSpaceParameters_select_column",
"ofType": null
}
}
@@ -60813,7 +58190,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassNftContract_max_fields",
+ "name": "contentSpaceParameters_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -60825,7 +58202,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassNftContract_min_fields",
+ "name": "contentSpaceParameters_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -60839,28 +58216,36 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_aggregate_order_by",
- "description": "order by aggregate values of table \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"contentSpaceParameters\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "count",
+ "name": "_and",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "_not",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_max_order_by",
+ "name": "contentSpaceParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -60868,45 +58253,18 @@
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_min_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"eventPassNftContract\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
+ "name": "_or",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_insert_input",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
}
}
},
@@ -60915,54 +58273,35 @@
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "contentSpaceId",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_on_conflict",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassNftContract\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "id",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -60970,231 +58309,7 @@
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "chainId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassOrderSums",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isAirdrop",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelayedRevealed",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orders",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orders_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passType",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_enum_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "password",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -61206,11 +58321,11 @@
"deprecationReason": null
},
{
- "name": "type",
+ "name": "status",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_enum_comparison_exp",
+ "name": "contentSpaceStatus_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -61228,18 +58343,6 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "validationType",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_enum_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -61248,26 +58351,20 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContract_constraint",
- "description": "unique or primary key constraints on table \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_constraint",
+ "description": "unique or primary key constraints on table \"contentSpaceParameters\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "eventPassId_unique",
- "description": "unique or primary key constraint on columns \"eventPassId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract_contractAddress_chainId_key",
- "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
+ "name": "contentSpaceParameters_contentSpaceId_key",
+ "description": "unique or primary key constraint on columns \"contentSpaceId\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract_pkey",
+ "name": "contentSpaceParameters_pkey",
"description": "unique or primary key constraint on columns \"id\"",
"isDeprecated": false,
"deprecationReason": null
@@ -61277,25 +58374,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_insert_input",
- "description": "input type for inserting data into table \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_insert_input",
+ "description": "input type for inserting data into table \"contentSpaceParameters\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -61318,11 +58403,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -61330,7 +58415,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "SCALAR",
@@ -61342,23 +58427,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_arr_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassOrderSums",
+ "name": "status",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_obj_rel_insert_input",
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -61366,174 +58439,101 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "updated_at",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isAirdrop",
- "description": "Flag indicating whether the event pass NFT is airdropped.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "isDelayedRevealed",
- "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orders",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_arr_rel_insert_input",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
+ "name": "organizerId",
"description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passType",
- "description": "Type of the pass, referencing the eventPassType table.",
- "type": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": "Type of the event pass NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "validationType",
- "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
- "type": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventPassNftContract_max_fields",
- "description": "aggregate max on columns",
+ "name": "contentSpaceParameters_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -61556,73 +58556,88 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
+ "name": "id",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "organizerId",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "updated_at",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_mutation_response",
+ "description": "response of any mutation on the table \"contentSpaceParameters\"",
+ "fields": [
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -61635,49 +58650,76 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_max_order_by",
- "description": "order by max() on columns of table \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_on_conflict",
+ "description": "on_conflict condition type for table \"contentSpaceParameters\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_constraint",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "name": "update_columns",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_update_column",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "where",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_order_by",
+ "description": "Ordering options when selecting data from \"contentSpaceParameters\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "contentSpaceId",
+ "description": null,
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -61688,7 +58730,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "created_at",
"description": null,
"type": {
"kind": "ENUM",
@@ -61724,8 +58766,8 @@
"deprecationReason": null
},
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "name": "status",
+ "description": null,
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -61753,148 +58795,213 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNftContract_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_pk_columns_input",
+ "description": "primary key columns input for table: contentSpaceParameters",
+ "fields": null,
+ "inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
- "args": [],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_select_column",
+ "description": "select columns of table \"contentSpaceParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "contentSpaceId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
- "args": [],
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_set_input",
+ "description": "input type for updating data in table \"contentSpaceParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "organizerId",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
- "args": [],
+ "name": "status",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_min_order_by",
- "description": "order by min() on columns of table \"eventPassNftContract\"",
+ "name": "contentSpaceParameters_stream_cursor_input",
+ "description": "Streaming cursor of the table \"contentSpaceParameters\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "contentSpaceId",
+ "description": "It stores the identifier for the content space. This ID is crucial for managing and linking specific parameters to each content space, ensuring accurate and efficient handling of content space-related data.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -61905,8 +59012,8 @@
"name": "created_at",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -61914,11 +59021,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -61926,11 +59033,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "organizerId",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -61938,11 +59045,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "status",
"description": null,
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "contentSpaceStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -61950,23 +59057,81 @@
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_update_column",
+ "description": "update columns of table \"contentSpaceParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "contentSpaceId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_set_input",
"ofType": null
},
"defaultValue": null,
@@ -61974,12 +59139,16 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -61992,28 +59161,51 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNftContract_mutation_response",
- "description": "response of any mutation on the table \"eventPassNftContract\"",
+ "name": "contentSpaceStatus",
+ "description": "columns and relationships of \"contentSpaceStatus\"",
"fields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
+ "name": "value",
+ "description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_aggregate",
+ "description": "aggregated selection of \"contentSpaceStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
+ "name": "nodes",
+ "description": null,
"args": [],
"type": {
"kind": "NON_NULL",
@@ -62026,7 +59218,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContract",
+ "name": "contentSpaceStatus",
"ofType": null
}
}
@@ -62042,60 +59234,109 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"eventPassNftContract\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_aggregate_fields",
+ "description": "aggregate fields of \"contentSpaceStatus\"",
+ "fields": [
{
- "name": "data",
+ "name": "count",
"description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_insert_input",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_on_conflict",
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_min_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_on_conflict",
- "description": "on_conflict condition type for table \"eventPassNftContract\"",
+ "name": "contentSpaceStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"contentSpaceStatus\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "constraint",
+ "name": "_and",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_constraint",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -62103,35 +59344,43 @@
"deprecationReason": null
},
{
- "name": "update_columns",
+ "name": "_not",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_update_column",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
}
}
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
+ "name": "value",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -62144,29 +59393,57 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "description": "Ordering options when selecting data from \"eventPassNftContract\".",
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_constraint",
+ "description": "unique or primary key constraints on table \"contentSpaceStatus\"",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "chainId",
+ "name": "contentSpaceStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "DRAFT",
"description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
+ "name": "PUBLISHED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"contentSpaceStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
"description": null,
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "contentSpaceStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -62174,23 +59451,31 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "_in",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
+ "name": "_is_null",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -62198,11 +59483,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "_neq",
"description": null,
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "contentSpaceStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -62210,115 +59495,221 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts_aggregate",
+ "name": "_nin",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_insert_input",
+ "description": "input type for inserting data into table \"contentSpaceStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventPassOrderSums",
+ "name": "value",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "id",
+ "name": "value",
"description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "isAirdrop",
+ "name": "value",
"description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_mutation_response",
+ "description": "response of any mutation on the table \"contentSpaceStatus\"",
+ "fields": [
{
- "name": "isDelayedRevealed",
- "description": null,
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orders_aggregate",
- "description": null,
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_on_conflict",
+ "description": "on_conflict condition type for table \"contentSpaceStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "organizerId",
+ "name": "constraint",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_constraint",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
+ "name": "update_columns",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
+ "name": "where",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
+ "name": "contentSpaceStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_order_by",
+ "description": "Ordering options when selecting data from \"contentSpaceStatus\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "passType",
+ "name": "value",
"description": null,
"type": {
"kind": "ENUM",
@@ -62328,49 +59719,107 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_pk_columns_input",
+ "description": "primary key columns input for table: contentSpaceStatus",
+ "fields": null,
+ "inputFields": [
{
- "name": "password",
+ "name": "value",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "description": "select columns of table \"contentSpaceStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "type",
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_set_input",
+ "description": "input type for updating data in table \"contentSpaceStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"contentSpaceStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "updated_at",
- "description": null,
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "validationType",
- "description": null,
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "cursor_ordering",
"ofType": null
},
"defaultValue": null,
@@ -62384,21 +59833,17 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_pk_columns_input",
- "description": "primary key columns input for table: eventPassNftContract",
+ "name": "contentSpaceStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "id",
+ "name": "value",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -62411,116 +59856,304 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "description": "select columns of table \"eventPassNftContract\"",
+ "name": "contentSpaceStatus_update_column",
+ "description": "update columns of table \"contentSpaceStatus\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
+ "name": "value",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "created_at",
- "description": "column name",
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "column name",
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency",
+ "description": "Currencies code following the standard ISO 4217 (https://en.wikipedia.org/wiki/ISO_4217)",
+ "fields": [
{
- "name": "eventPassId",
- "description": "column name",
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency_aggregate",
+ "description": "aggregated selection of \"currency\"",
+ "fields": [
{
- "name": "id",
- "description": "column name",
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_aggregate_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "column name",
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency_aggregate_fields",
+ "description": "aggregate fields of \"currency\"",
+ "fields": [
{
- "name": "isDelayedRevealed",
- "description": "column name",
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "column name",
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_max_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passType",
- "description": "column name",
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_min_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"currency\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "password",
- "description": "column name",
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "column name",
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "validationType",
- "description": "column name",
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "interfaces": null,
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
- "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns",
- "description": "select \"eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"eventPassNftContract\"",
+ "name": "currency_constraint",
+ "description": "unique or primary key constraints on table \"currency\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "isAirdrop",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelayedRevealed",
- "description": "column name",
+ "name": "currency_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
}
@@ -62529,21 +60162,51 @@
},
{
"kind": "ENUM",
- "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns",
- "description": "select \"eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"eventPassNftContract\"",
+ "name": "currency_enum",
+ "description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "isAirdrop",
- "description": "column name",
+ "name": "AED",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelayedRevealed",
- "description": "column name",
+ "name": "CNY",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "EUR",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "GBP",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "QAR",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "SGD",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "USD",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
}
@@ -62552,16 +60215,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_set_input",
- "description": "input type for updating data in table \"eventPassNftContract\"",
+ "name": "currency_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"currency_enum\". All fields are combined with logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "currency_enum",
"ofType": null
},
"defaultValue": null,
@@ -62569,23 +60232,31 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "name": "_in",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "_is_null",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -62593,11 +60264,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "currency_enum",
"ofType": null
},
"defaultValue": null,
@@ -62605,119 +60276,225 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "_nin",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_insert_input",
+ "description": "input type for inserting data into table \"currency\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
+ "name": "value",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "isAirdrop",
- "description": "Flag indicating whether the event pass NFT is airdropped.",
+ "name": "value",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "isDelayedRevealed",
- "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
+ "name": "value",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "currency_mutation_response",
+ "description": "response of any mutation on the table \"currency\"",
+ "fields": [
{
- "name": "organizerId",
- "description": null,
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passType",
- "description": "Type of the pass, referencing the eventPassType table.",
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_on_conflict",
+ "description": "on_conflict condition type for table \"currency\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_constraint",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "Type of the event pass NFT contract.",
+ "name": "update_columns",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_update_column",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "where",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_order_by",
+ "description": "Ordering options when selecting data from \"currency\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "validationType",
- "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
+ "name": "value",
+ "description": null,
"type": {
"kind": "ENUM",
- "name": "eventPassValidationType_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -62731,52 +60508,57 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassNftContract\"",
+ "name": "currency_pk_columns_input",
+ "description": "primary key columns input for table: currency",
"fields": null,
"inputFields": [
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "value",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_stream_cursor_value_input",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "description": "select columns of table \"currency\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
+ "name": "currency_set_input",
+ "description": "input type for updating data in table \"currency\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "name": "value",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -62785,34 +60567,60 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_stream_cursor_input",
+ "description": "Streaming cursor of the table \"currency\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "contractAddress",
- "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventId",
- "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "name": "value",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -62821,13 +60629,41 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "currency_update_column",
+ "description": "update columns of table \"currency\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "eventPassId",
- "description": null,
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "currency_set_input",
"ofType": null
},
"defaultValue": null,
@@ -62835,256 +60671,818 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "description": "ordering argument of a cursor",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "ASC",
+ "description": "ascending ordering of the cursor",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Flag indicating whether the event pass NFT is airdropped.",
+ "name": "DESC",
+ "description": "descending ordering of the cursor",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "description": "The eventParameters model is designed to define properties on an event involving all event passes. This table includes critical details like the eventId and activityWebhookId, which aids in monitoring and processing events or changes related to the event parameters. By centralizing this information, our system can effectively manage and control parameters tied to specific events, enhancing the overall functionality and flexibility of event handling.",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelayedRevealed",
- "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passType",
- "description": "Type of the pass, referencing the eventPassType table.",
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "password",
- "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "Type of the event pass NFT contract.",
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_enum",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "validationType",
- "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
+ "name": "event",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput_remote_rel_eventParametersevent",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
+ "kind": "OBJECT",
+ "name": "Event",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassNftContract_update_column",
- "description": "update columns of table \"eventPassNftContract\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "chainId",
- "description": "column name",
+ "name": "eventId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "column name",
+ "name": "eventPassNftContracts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": "column name",
+ "name": "eventPassNftContracts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_aggregate",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "column name",
+ "name": "eventPassNfts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "column name",
+ "name": "eventPassNfts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
- "description": "column name",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "column name",
+ "name": "isOngoing",
+ "description": "A computed field, executes function \"is_event_ongoing\"",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelayedRevealed",
- "description": "column name",
+ "name": "isSaleOngoing",
+ "description": "A computed field, executes function \"is_sale_ongoing\"",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "column name",
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passType",
- "description": "column name",
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "password",
- "description": "column name",
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_eventParametersorganizer",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "column name",
+ "name": "organizerId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "validationType",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_set_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventPassNft_aggregate",
- "description": "aggregated selection of \"eventPassNft\"",
+ "name": "eventParameters_aggregate",
+ "description": "aggregated selection of \"eventParameters\"",
"fields": [
{
"name": "aggregate",
@@ -63092,7 +61490,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassNft_aggregate_fields",
+ "name": "eventParameters_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -63113,7 +61511,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "eventParameters",
"ofType": null
}
}
@@ -63129,68 +61527,109 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventParameters_aggregate_fields",
+ "description": "aggregate fields of \"eventParameters\"",
+ "fields": [
{
- "name": "bool_and",
+ "name": "count",
"description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_bool_and",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "bool_or",
+ "name": "max",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_bool_or",
+ "kind": "OBJECT",
+ "name": "eventParameters_max_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
+ "name": "min",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_count",
+ "kind": "OBJECT",
+ "name": "eventParameters_min_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_bool_and",
- "description": null,
+ "name": "eventParameters_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventParameters\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "arguments",
+ "name": "_and",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -63198,23 +61637,11 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "filter",
+ "name": "_not",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "eventParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -63222,54 +61649,43 @@
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "_or",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_bool_or",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
+ "name": "activityWebhookId",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "activityWebhookSigningKey",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -63277,11 +61693,11 @@
"deprecationReason": null
},
{
- "name": "filter",
+ "name": "created_at",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -63289,58 +61705,35 @@
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "dateEnd",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamp_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
+ "name": "dateSaleEnd",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamp_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "dateSaleStart",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamp_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -63348,11 +61741,11 @@
"deprecationReason": null
},
{
- "name": "filter",
+ "name": "dateStart",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "timestamp_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -63360,218 +61753,225 @@
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "eventId",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_aggregate_fields",
- "description": "aggregate fields of \"eventPassNft\"",
- "fields": [
+ },
{
- "name": "avg",
+ "name": "eventPassNftContracts",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_avg_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
+ "name": "eventPassNftContracts_aggregate",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_aggregate_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "eventPassNfts",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_max_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "eventPassNfts_aggregate",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_min_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev",
+ "name": "id",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_pop",
+ "name": "isOngoing",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_pop_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_samp",
+ "name": "isSaleOngoing",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_samp_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "sum",
+ "name": "metadataUpdateWebhookId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_sum_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_pop",
+ "name": "metadataUpdateWebhookSigningKey",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_var_pop_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_samp",
+ "name": "organizerId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_var_samp_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
+ "name": "status",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_variance_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "ENUM",
+ "name": "eventParameters_constraint",
+ "description": "unique or primary key constraints on table \"eventParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "eventParameters_eventId_key",
+ "description": "unique or primary key constraint on columns \"eventId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventParameters_metadataUpdateWebhookSigningKey_key",
+ "description": "unique or primary key constraint on columns \"metadataUpdateWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventParameters_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventParameters_signingKey_key",
+ "description": "unique or primary key constraint on columns \"activityWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_order_by",
- "description": "order by aggregate values of table \"eventPassNft\"",
+ "name": "eventParameters_insert_input",
+ "description": "input type for inserting data into table \"eventParameters\"",
"fields": null,
"inputFields": [
{
- "name": "avg",
- "description": null,
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_avg_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -63579,11 +61979,11 @@
"deprecationReason": null
},
{
- "name": "count",
- "description": null,
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -63591,11 +61991,11 @@
"deprecationReason": null
},
{
- "name": "max",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_max_order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -63603,11 +62003,11 @@
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_min_order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -63615,11 +62015,11 @@
"deprecationReason": null
},
{
- "name": "stddev",
- "description": null,
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -63627,11 +62027,11 @@
"deprecationReason": null
},
{
- "name": "stddev_pop",
- "description": null,
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_pop_order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -63639,11 +62039,11 @@
"deprecationReason": null
},
{
- "name": "stddev_samp",
- "description": null,
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_samp_order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -63651,11 +62051,11 @@
"deprecationReason": null
},
{
- "name": "sum",
+ "name": "eventId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_sum_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -63663,11 +62063,11 @@
"deprecationReason": null
},
{
- "name": "var_pop",
+ "name": "eventPassNftContracts",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_var_pop_order_by",
+ "name": "eventPassNftContract_arr_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -63675,11 +62075,11 @@
"deprecationReason": null
},
{
- "name": "var_samp",
+ "name": "eventPassNfts",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_var_samp_order_by",
+ "name": "eventPassNft_arr_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -63687,127 +62087,83 @@
"deprecationReason": null
},
{
- "name": "variance",
+ "name": "id",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_variance_order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_append_input",
- "description": "append existing jsonb value of filtered columns with new jsonb value",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
"type": {
"kind": "SCALAR",
- "name": "jsonb",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_insert_input",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "status",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_on_conflict",
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_avg_order_by",
- "description": "order by avg() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -63820,469 +62176,442 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassNft\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "OBJECT",
+ "name": "eventParameters_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "_not",
- "description": null,
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": null,
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": null,
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": null,
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "eventId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": null,
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": null,
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isRevealed",
+ "name": "updated_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventParameters_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "lastNftTransfer",
- "description": null,
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": null,
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "metadata",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "jsonb_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftTransfers",
- "description": null,
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftTransfers_aggregate",
- "description": null,
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_bool_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": null,
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "eventId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packPricing",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
- "description": null,
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
- "description": null,
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "bigint_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": null,
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "eventPassNft_constraint",
- "description": "unique or primary key constraints on table \"eventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "kind": "OBJECT",
+ "name": "eventParameters_mutation_response",
+ "description": "response of any mutation on the table \"eventParameters\"",
+ "fields": [
{
- "name": "eventPassNft_contractAddress_tokenId_chainId_key",
- "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"tokenId\"",
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNft_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_at_path_input",
- "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
- "fields": null,
- "inputFields": [
- {
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_elem_input",
- "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "name": "eventParameters_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"eventParameters\"",
"fields": null,
"inputFields": [
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "data",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_insert_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_key_input",
- "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_on_conflict",
"ofType": null
},
"defaultValue": null,
@@ -64296,16 +62625,56 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_inc_input",
- "description": "input type for incrementing numeric columns in table \"eventPassNft\"",
+ "name": "eventParameters_on_conflict",
+ "description": "on_conflict condition type for table \"eventParameters\"",
"fields": null,
"inputFields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -64319,16 +62688,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_insert_input",
- "description": "input type for inserting data into table \"eventPassNft\"",
+ "name": "eventParameters_order_by",
+ "description": "Ordering options when selecting data from \"eventParameters\".",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "name": "activityWebhookId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64336,11 +62705,11 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "activityWebhookSigningKey",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64351,8 +62720,8 @@
"name": "created_at",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64360,11 +62729,11 @@
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "name": "dateEnd",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64372,11 +62741,11 @@
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "name": "dateSaleEnd",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64384,11 +62753,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
+ "name": "dateSaleStart",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64396,11 +62765,11 @@
"deprecationReason": null
},
{
- "name": "eventParameters",
+ "name": "dateStart",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_obj_rel_insert_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64408,11 +62777,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64420,11 +62789,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
+ "name": "eventPassNftContracts_aggregate",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_obj_rel_insert_input",
+ "name": "eventPassNftContract_aggregate_order_by",
"ofType": null
},
"defaultValue": null,
@@ -64432,23 +62801,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "eventPassNfts_aggregate",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": "Indicates whether the event pass NFT has been delivered to the owner.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_order_by",
"ofType": null
},
"defaultValue": null,
@@ -64456,11 +62813,11 @@
"deprecationReason": null
},
{
- "name": "isRevealed",
- "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64468,11 +62825,11 @@
"deprecationReason": null
},
{
- "name": "lastNftTransfer",
+ "name": "isOngoing",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_obj_rel_insert_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64480,11 +62837,11 @@
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "name": "isSaleOngoing",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64492,11 +62849,11 @@
"deprecationReason": null
},
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "metadataUpdateWebhookId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64504,11 +62861,11 @@
"deprecationReason": null
},
{
- "name": "nftTransfers",
+ "name": "metadataUpdateWebhookSigningKey",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_arr_rel_insert_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64517,10 +62874,10 @@
},
{
"name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64528,11 +62885,11 @@
"deprecationReason": null
},
{
- "name": "packAmount",
+ "name": "status",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64540,11 +62897,11 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "timezone",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -64552,273 +62909,198 @@
"deprecationReason": null
},
{
- "name": "packPricing",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "passAmount",
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_pk_columns_input",
+ "description": "primary key columns input for table: eventParameters",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventParameters_select_column",
+ "description": "select columns of table \"eventParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "activityWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "created_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "dateEnd",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "dateSaleEnd",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "dateSaleStart",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
+ "name": "dateStart",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "eventId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "id",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "metadataUpdateWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
+ "name": "organizerId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
+ "name": "status",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "timezone",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
+ "name": "updated_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_set_input",
+ "description": "input type for updating data in table \"eventParameters\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
- "args": [],
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_max_order_by",
- "description": "order by max() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -64826,11 +63108,11 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -64838,11 +63120,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -64850,11 +63132,11 @@
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamp",
"ofType": null
},
"defaultValue": null,
@@ -64862,11 +63144,11 @@
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -64874,11 +63156,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -64886,11 +63168,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -64898,11 +63180,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -64910,11 +63192,11 @@
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "name": "organizerId",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -64922,11 +63204,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "name": "status",
+ "description": null,
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "eventStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -64934,11 +63216,11 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -64946,35 +63228,50 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventParameters\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "cursor_ordering",
"ofType": null
},
"defaultValue": null,
@@ -64987,1569 +63284,1967 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNft_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
- "args": [],
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers. This webhook ID is essential for real-time monitoring and processing of NFT transactions related to the event, ensuring that the platform stays updated with the latest transfer activities.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
- "args": [],
+ "name": "activityWebhookSigningKey",
+ "description": "The unique signing key used for securing activity webhooks.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateEnd",
+ "description": "The \"dateEnd\" column specifies the end date and time of the event. Similar to \"dateStart\", this timestamp is stored without a timezone, marking the official conclusion of the event. This information is vital for managing the overall duration and scheduling of the event.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
- "args": [],
+ "name": "dateSaleEnd",
+ "description": "The \"dateSaleEnd\" column indicates the end date and time for the sale of event passes. By providing a clear cut-off point for sales, this timestamp aids in the strategic planning and closure of the pass sale period.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
- "args": [],
+ "name": "dateSaleStart",
+ "description": "The \"dateSaleStart\" column denotes the start date and time for when the event passes become available for sale. This timestamp, free from timezone specifics, is critical for controlling the sales window, allowing for precise planning and marketing of the event passes.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
- "args": [],
+ "name": "dateStart",
+ "description": "The \"dateStart\" column represents the start date and time of the event. This timestamp, set in a timezone-neutral format, indicates when the event officially begins. It is crucial for scheduling and coordinating event-related activities.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
- "args": [],
+ "name": "eventId",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
- "args": [],
+ "name": "metadataUpdateWebhookId",
+ "description": "The identifier for the metadata update webhook.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
- "args": [],
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "The unique signing key used for securing metadata update webhooks.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "organizerId",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
+ "name": "status",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
- "args": [],
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the event. All event-related timestamps, such as \"dateStart\", \"dateEnd\", \"dateSaleStart\", and \"dateSaleEnd\", are interpreted in this specified timezone. This column ensures consistency in timekeeping and scheduling across various geographic locations.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_min_order_by",
- "description": "order by min() on columns of table \"eventPassNft\"",
+ "kind": "ENUM",
+ "name": "eventParameters_update_column",
+ "description": "update columns of table \"eventParameters\"",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "activityWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "dateEnd",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "dateSaleEnd",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "dateSaleStart",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "dateStart",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "metadataUpdateWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizerId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "status",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "timezone",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNft_mutation_response",
- "description": "response of any mutation on the table \"eventPassNft\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_set_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_on_conflict",
- "description": "on_conflict condition type for table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "description": "columns and relationships of \"eventPassNft\"",
+ "fields": [
{
- "name": "constraint",
- "description": null,
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_constraint",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_update_column",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
- "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
- "description": "Ordering options when selecting data from \"eventPassNft\".",
- "fields": null,
- "inputFields": [
- {
- "name": "chainId",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": null,
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
+ "name": "event",
"description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput_remote_rel_eventPassNftevent",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "Event",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": null,
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
+ "name": "eventParameters",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters",
+ "name": "eventPass",
"description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
+ "kind": "OBJECT",
+ "name": "EventPass",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "eventPassId",
- "description": null,
+ "description": "Directly relates to a specific Event Pass within the system",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "eventPassNftContract",
- "description": null,
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "isRevealed",
- "description": null,
+ "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "lastNftTransfer",
- "description": null,
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
+ "kind": "OBJECT",
+ "name": "nftTransfer",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "lastNftTransferId",
- "description": null,
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "metadata",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nftTransfers_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "args": [
+ {
+ "name": "path",
+ "description": "JSON select path",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
+ "name": "nftTransfers",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": null,
+ "name": "nftTransfers_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
+ "name": "organizer",
"description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_eventPassNftorganizer",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "Organizer",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_pk_columns_input",
- "description": "primary key columns input for table: eventPassNft",
- "fields": null,
- "inputFields": [
- {
- "name": "id",
- "description": null,
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_prepend_input",
- "description": "prepend existing jsonb value of filtered columns with new jsonb value",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "packAmount",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "OBJECT",
+ "name": "passAmount",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "description": "select columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isRevealed",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "metadata",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenUri",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns",
- "description": "select \"eventPassNft_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "isDelivered",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isRevealed",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns",
- "description": "select \"eventPassNft_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "isDelivered",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isRevealed",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_set_input",
- "description": "input type for updating data in table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "packPricing",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "passPricing",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "passAmount",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "passAmount",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "name": "passPricing",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "passPricing",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "name": "status",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "bigint",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "updated_at",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "description": "The eventPassNftContract model is designed to store metadata associated with NFT contracts linked to specific event passes. This table captures critical, immutable details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. Additionally, this table includes information specific to each event pass, like the eventPassId and organizerId, allowing for precise management and interaction with NFT contracts tied to individual event passes. By centralizing this information, our system can effectively manage, reference, and interact with NFT contracts related to particular event passes.",
+ "fields": [
{
- "name": "isDelivered",
- "description": "Indicates whether the event pass NFT has been delivered to the owner.",
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isRevealed",
- "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "name": "eventPass",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "EventPass",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "eventPassId",
"description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "eventPassNfts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
+ "name": "eventPassNfts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "eventPassOrderSums",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "id",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_order_by",
- "description": "order by stddev() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "isAirdrop",
+ "description": "Flag indicating whether the event pass NFT is airdropped.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "isDelayedRevealed",
+ "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_pop_order_by",
- "description": "order by stddev_pop() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassNft_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stddev_samp_order_by",
- "description": "order by stddev_samp() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "orders",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "orders_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stream_cursor_value_input",
+ "kind": "OBJECT",
+ "name": "order_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "organizerId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "chainId",
- "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "name": "passAmount",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "passAmount",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "passPricing",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "passPricing",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "passType",
+ "description": "Type of the pass, referencing the eventPassType table.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "name": "type",
+ "description": "Type of the event pass NFT contract.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "A reference to the event associated with the event pass NFT",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Directly relates to a specific Event Pass within the system",
+ "name": "validationType",
+ "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "description": "Contract types representing the nature of the event pass NFT contract.",
+ "fields": [
{
- "name": "id",
- "description": null,
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_aggregate",
+ "description": "aggregated selection of \"eventPassNftContractType\"",
+ "fields": [
{
- "name": "isDelivered",
- "description": "Indicates whether the event pass NFT has been delivered to the owner.",
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_aggregate_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isRevealed",
- "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_aggregate_fields",
+ "description": "aggregate fields of \"eventPassNftContractType\"",
+ "fields": [
{
- "name": "lastNftTransferId",
- "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "metadata",
- "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_max_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_min_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassNftContractType\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "packId",
+ "name": "_and",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -66557,23 +65252,31 @@
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "value",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -66586,158 +65289,39 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassNft_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_sum_order_by",
- "description": "order by sum() on columns of table \"eventPassNft\"",
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_constraint",
+ "description": "unique or primary key constraints on table \"eventPassNftContractType\"",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "eventPassNftContractType_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
- "name": "eventPassNft_update_column",
- "description": "update columns of table \"eventPassNft\"",
+ "name": "eventPassNftContractType_enum",
+ "description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isRevealed",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "metadata",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenUri",
- "description": "column name",
+ "name": "delayed_reveal",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "normal",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
}
@@ -66746,52 +65330,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_updates",
- "description": null,
+ "name": "eventPassNftContractType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"eventPassNftContractType_enum\". All fields are combined with logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "_append",
- "description": "append existing jsonb value of filtered columns with new jsonb value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_append_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_at_path",
- "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_at_path_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_elem",
- "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_elem_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_key",
- "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_key_input",
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
"ofType": null
},
"defaultValue": null,
@@ -66799,23 +65347,31 @@
"deprecationReason": null
},
{
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
+ "name": "_in",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_inc_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_prepend",
- "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_prepend_input",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -66823,11 +65379,11 @@
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_set_input",
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
"ofType": null
},
"defaultValue": null,
@@ -66835,15 +65391,19 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "_nin",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -66855,41 +65415,18 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "eventPassNft_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_var_pop_order_by",
- "description": "order by var_pop() on columns of table \"eventPassNft\"",
+ "name": "eventPassNftContractType_insert_input",
+ "description": "input type for inserting data into table \"eventPassNftContractType\"",
"fields": null,
"inputFields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -66903,16 +65440,16 @@
},
{
"kind": "OBJECT",
- "name": "eventPassNft_var_samp_fields",
- "description": "aggregate var_samp on columns",
+ "name": "eventPassNftContractType_max_fields",
+ "description": "aggregate max on columns",
"fields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -66924,41 +65461,18 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_var_samp_order_by",
- "description": "order by var_samp() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "eventPassNft_variance_fields",
- "description": "aggregate variance on columns",
+ "name": "eventPassNftContractType_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -66970,44 +65484,21 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_variance_order_by",
- "description": "order by variance() on columns of table \"eventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "tokenId",
- "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "eventPassOrderSums",
- "description": "Hold the sums for the Event Pass Orders",
+ "name": "eventPassNftContractType_mutation_response",
+ "description": "response of any mutation on the table \"eventPassNftContractType\"",
"fields": [
{
- "name": "eventPassId",
- "description": null,
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
}
},
@@ -67015,16 +65506,24 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
@@ -67037,26 +65536,30 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassOrderSums_aggregate",
- "description": "aggregated selection of \"eventPassOrderSums\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassNftContractType\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "aggregate",
+ "name": "constraint",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_aggregate_fields",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "update_columns",
"description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -67067,306 +65570,78 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_update_column",
"ofType": null
}
}
}
},
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassOrderSums_aggregate_fields",
- "description": "aggregate fields of \"eventPassOrderSums\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_order_by",
+ "description": "Ordering options when selecting data from \"eventPassNftContractType\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "avg",
+ "name": "value",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_avg_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassOrderSums\". All fields are combined with a logical 'AND'.",
+ "name": "eventPassNftContractType_pk_columns_input",
+ "description": "primary key columns input for table: eventPassNftContractType",
"fields": null,
"inputFields": [
{
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "totalReserved",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -67375,15 +65650,15 @@
},
{
"kind": "ENUM",
- "name": "eventPassOrderSums_constraint",
- "description": "unique or primary key constraints on table \"eventPassOrderSums\"",
+ "name": "eventPassNftContractType_select_column",
+ "description": "select columns of table \"eventPassNftContractType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "eventPassOrderSums_pkey",
- "description": "unique or primary key constraint on columns \"eventPassId\"",
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
@@ -67392,16 +65667,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_inc_input",
- "description": "input type for incrementing numeric columns in table \"eventPassOrderSums\"",
+ "name": "eventPassNftContractType_set_input",
+ "description": "input type for updating data in table \"eventPassNftContractType\"",
"fields": null,
"inputFields": [
{
- "name": "totalReserved",
- "description": null,
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -67415,28 +65690,32 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_insert_input",
- "description": "input type for inserting data into table \"eventPassOrderSums\"",
+ "name": "eventPassNftContractType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassNftContractType\"",
"fields": null,
"inputFields": [
{
- "name": "eventPassId",
- "description": null,
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
"defaultValue": null,
@@ -67449,99 +65728,104 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassOrderSums_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventPassId",
- "description": null,
- "args": [],
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_update_column",
+ "description": "update columns of table \"eventPassNftContractType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassOrderSums_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "eventPassId",
- "description": null,
- "args": [],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventPassOrderSums_mutation_response",
- "description": "response of any mutation on the table \"eventPassOrderSums\"",
+ "name": "eventPassNftContract_aggregate",
+ "description": "aggregated selection of \"eventPassNftContract\"",
"fields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
+ "name": "aggregate",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_aggregate_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
+ "name": "nodes",
+ "description": null,
"args": [],
"type": {
"kind": "NON_NULL",
@@ -67554,7 +65838,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "eventPassNftContract",
"ofType": null
}
}
@@ -67571,118 +65855,28 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"eventPassOrderSums\"",
+ "name": "eventPassNftContract_aggregate_bool_exp",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "data",
+ "name": "bool_and",
"description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_on_conflict",
+ "name": "eventPassNftContract_aggregate_bool_exp_bool_and",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_on_conflict",
- "description": "on_conflict condition type for table \"eventPassOrderSums\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassOrderSums_constraint",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassOrderSums_update_column",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "where",
+ "name": "bool_or",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
- "description": "Ordering options when selecting data from \"eventPassOrderSums\".",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
+ "name": "eventPassNftContract_aggregate_bool_exp_bool_or",
"ofType": null
},
"defaultValue": null,
@@ -67690,11 +65884,11 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "count",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_aggregate_bool_exp_count",
"ofType": null
},
"defaultValue": null,
@@ -67708,66 +65902,32 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_pk_columns_input",
- "description": "primary key columns input for table: eventPassOrderSums",
+ "name": "eventPassNftContract_aggregate_bool_exp_bool_and",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "eventPassId",
+ "name": "arguments",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
- "description": "select columns of table \"eventPassOrderSums\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "totalReserved",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_set_input",
- "description": "input type for updating data in table \"eventPassOrderSums\"",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassId",
+ "name": "distinct",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -67775,124 +65935,32 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "filter",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "predicate",
"description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassOrderSums\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_stream_cursor_value_input",
+ "name": "Boolean_comparison_exp",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -67901,97 +65969,32 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
+ "name": "eventPassNftContract_aggregate_bool_exp_bool_or",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "eventPassId",
+ "name": "arguments",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "totalReserved",
+ "name": "distinct",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassOrderSums_update_column",
- "description": "update columns of table \"eventPassOrderSums\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "totalReserved",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_inc_input",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -67999,11 +66002,11 @@
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "filter",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_set_input",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -68011,14 +66014,14 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "predicate",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
+ "name": "Boolean_comparison_exp",
"ofType": null
}
},
@@ -68032,152 +66035,80 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassOrderSums_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "totalReserved",
+ "name": "arguments",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "distinct",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassType",
- "description": "Defines the types of event passes.",
- "fields": [
- {
- "name": "value",
- "description": "Type name for event pass.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassType_aggregate",
- "description": "aggregated selection of \"eventPassType\"",
- "fields": [
+ },
{
- "name": "aggregate",
+ "name": "filter",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassType_aggregate_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "predicate",
"description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassType",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventPassType_aggregate_fields",
- "description": "aggregate fields of \"eventPassType\"",
+ "name": "eventPassNftContract_aggregate_fields",
+ "description": "aggregate fields of \"eventPassNftContract\"",
"fields": [
{
"name": "count",
@@ -68194,7 +66125,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassType_select_column",
+ "name": "eventPassNftContract_select_column",
"ofType": null
}
}
@@ -68234,7 +66165,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassType_max_fields",
+ "name": "eventPassNftContract_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -68246,7 +66177,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassType_min_fields",
+ "name": "eventPassNftContract_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -68260,36 +66191,28 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassType\". All fields are combined with a logical 'AND'.",
+ "name": "eventPassNftContract_aggregate_order_by",
+ "description": "order by aggregate values of table \"eventPassNftContract\"",
"fields": null,
"inputFields": [
{
- "name": "_and",
+ "name": "count",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "max",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
+ "name": "eventPassNftContract_max_order_by",
"ofType": null
},
"defaultValue": null,
@@ -68297,18 +66220,45 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "min",
"description": null,
"type": {
- "kind": "LIST",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_min_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_insert_input",
+ "ofType": null
+ }
}
}
},
@@ -68317,11 +66267,11 @@
"deprecationReason": null
},
{
- "name": "value",
- "description": null,
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "eventPassNftContract_on_conflict",
"ofType": null
},
"defaultValue": null,
@@ -68334,57 +66284,37 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "eventPassType_constraint",
- "description": "unique or primary key constraints on table \"eventPassType\"",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassNftContract\". All fields are combined with a logical 'AND'.",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "inputFields": [
{
- "name": "eventPassType_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassType_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "event_access",
- "description": null,
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "redeemable",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"eventPassType_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_eq",
+ "name": "_not",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -68392,7 +66322,7 @@
"deprecationReason": null
},
{
- "name": "_in",
+ "name": "_or",
"description": null,
"type": {
"kind": "LIST",
@@ -68401,8 +66331,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
}
}
@@ -68412,11 +66342,11 @@
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "chainId",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -68424,11 +66354,11 @@
"deprecationReason": null
},
{
- "name": "_neq",
+ "name": "contractAddress",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -68436,394 +66366,215 @@
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_enum",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_insert_input",
- "description": "input type for inserting data into table \"eventPassType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassType_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
- "args": [],
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassType_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
- "args": [],
+ "name": "eventPassNfts",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassType_mutation_response",
- "description": "response of any mutation on the table \"eventPassType\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "eventPassNfts_aggregate",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "eventPassOrderSums",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassType",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_on_conflict",
- "description": "on_conflict condition type for table \"eventPassType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
+ "name": "id",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_constraint",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
+ "name": "isAirdrop",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
+ "name": "isDelayedRevealed",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
+ "name": "Boolean_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_order_by",
- "description": "Ordering options when selecting data from \"eventPassType\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "orders",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_pk_columns_input",
- "description": "primary key columns input for table: eventPassType",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
+ "name": "orders_aggregate",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_bool_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassType_select_column",
- "description": "select columns of table \"eventPassType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "value",
- "description": "column name",
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_set_input",
- "description": "input type for updating data in table \"eventPassType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
+ "name": "passAmount",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "passPricing",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "passType",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
+ "name": "password",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassType_update_column",
- "description": "update columns of table \"eventPassType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "value",
- "description": "column name",
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "updated_at",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_set_input",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -68831,16 +66582,12 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "validationType",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_enum_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -68852,195 +66599,118 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassValidationType",
- "description": "Defines the types of validation for event passes.",
- "fields": [
+ "kind": "ENUM",
+ "name": "eventPassNftContract_constraint",
+ "description": "unique or primary key constraints on table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "value",
- "description": "Type name for event pass validation.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
+ "name": "eventPassId_unique",
+ "description": "unique or primary key constraint on columns \"eventPassId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract_contractAddress_chainId_key",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "eventPassValidationType_aggregate",
- "description": "aggregated selection of \"eventPassValidationType\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_insert_input",
+ "description": "input type for inserting data into table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
"type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassValidationType",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassValidationType_aggregate_fields",
- "description": "aggregate fields of \"eventPassValidationType\"",
- "fields": [
+ },
{
- "name": "count",
+ "name": "created_at",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
"type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_max_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "eventPassId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_min_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventPassValidationType\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "eventPassNfts",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_arr_rel_insert_input",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "eventPassOrderSums",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
+ "name": "eventPassOrderSums_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -69048,100 +66718,83 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "id",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
- "description": null,
+ "name": "isAirdrop",
+ "description": "Flag indicating whether the event pass NFT is airdropped.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassValidationType_constraint",
- "description": "unique or primary key constraints on table \"eventPassValidationType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "eventPassValidationType_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
+ "name": "isDelayedRevealed",
+ "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "external",
+ "name": "orders",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_arr_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "manual",
+ "name": "organizerId",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nft",
+ "name": "passAmount",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"eventPassValidationType_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_eq",
+ "name": "passPricing",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -69149,31 +66802,23 @@
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
+ "name": "passType",
+ "description": "Type of the pass, referencing the eventPassType table.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_is_null",
- "description": null,
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -69181,11 +66826,11 @@
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
+ "name": "type",
+ "description": "Type of the event pass NFT contract.",
"type": {
"kind": "ENUM",
- "name": "eventPassValidationType_enum",
+ "name": "eventPassNftContractType_enum",
"ofType": null
},
"defaultValue": null,
@@ -69193,42 +66838,23 @@
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_enum",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_insert_input",
- "description": "input type for inserting data into table \"eventPassValidationType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "validationType",
+ "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
"ofType": null
},
"defaultValue": null,
@@ -69242,12 +66868,12 @@
},
{
"kind": "OBJECT",
- "name": "eventPassValidationType_max_fields",
+ "name": "eventPassNftContract_max_fields",
"description": "aggregate max on columns",
"fields": [
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -69256,21 +66882,10 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassValidationType_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -69279,308 +66894,157 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventPassValidationType_mutation_response",
- "description": "response of any mutation on the table \"eventPassValidationType\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
+ "name": "created_at",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassValidationType",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_on_conflict",
- "description": "on_conflict condition type for table \"eventPassValidationType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
+ "name": "eventPassId",
"description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_constraint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
- "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_order_by",
- "description": "Ordering options when selecting data from \"eventPassValidationType\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": null,
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_pk_columns_input",
- "description": "primary key columns input for table: eventPassValidationType",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassValidationType_select_column",
- "description": "select columns of table \"eventPassValidationType\"",
- "fields": null,
"inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_set_input",
- "description": "input type for updating data in table \"eventPassValidationType\"",
+ "name": "eventPassNftContract_max_order_by",
+ "description": "order by max() on columns of table \"eventPassNftContract\"",
"fields": null,
"inputFields": [
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventPassValidationType\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "created_at",
+ "description": null,
"type": {
"kind": "ENUM",
- "name": "cursor_ordering",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventPassValidationType_update_column",
- "description": "update columns of table \"eventPassValidationType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_set_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -69588,311 +67052,189 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventStatus",
- "description": "columns and relationships of \"eventStatus\"",
- "fields": [
+ },
{
- "name": "value",
+ "name": "organizerId",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventStatus_aggregate",
- "description": "aggregated selection of \"eventStatus\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
"type": {
- "kind": "OBJECT",
- "name": "eventStatus_aggregate_fields",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "updated_at",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventStatus",
- "ofType": null
- }
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventStatus_aggregate_fields",
- "description": "aggregate fields of \"eventStatus\"",
+ "name": "eventPassNftContract_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventStatus_max_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "created_at",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventStatus_min_fields",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "description": "Boolean expression to filter rows from the table \"eventStatus\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
- "description": null,
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "eventPassId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventStatus_constraint",
- "description": "unique or primary key constraints on table \"eventStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "eventStatus_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "DRAFT",
- "description": null,
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "PUBLISHED",
+ "name": "updated_at",
"description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "eventStatus_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"eventStatus_enum\". All fields are combined with logical 'AND'.",
+ "name": "eventPassNftContract_min_order_by",
+ "description": "order by min() on columns of table \"eventPassNftContract\"",
"fields": null,
"inputFields": [
{
- "name": "_eq",
- "description": null,
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
"type": {
"kind": "ENUM",
- "name": "eventStatus_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -69900,31 +67242,23 @@
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -69932,11 +67266,11 @@
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
"type": {
"kind": "ENUM",
- "name": "eventStatus_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -69944,103 +67278,74 @@
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "eventPassId",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventStatus_enum",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_insert_input",
- "description": "input type for inserting data into table \"eventStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "id",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventStatus_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
+ "name": "organizerId",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "eventStatus_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "eventStatus_mutation_response",
- "description": "response of any mutation on the table \"eventStatus\"",
+ "name": "eventPassNftContract_mutation_response",
+ "description": "response of any mutation on the table \"eventPassNftContract\"",
"fields": [
{
"name": "affected_rows",
@@ -70073,7 +67378,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventStatus",
+ "name": "eventPassNftContract",
"ofType": null
}
}
@@ -70090,8 +67395,47 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventStatus_on_conflict",
- "description": "on_conflict condition type for table \"eventStatus\"",
+ "name": "eventPassNftContract_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassNftContract\"",
"fields": null,
"inputFields": [
{
@@ -70102,7 +67446,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventStatus_constraint",
+ "name": "eventPassNftContract_constraint",
"ofType": null
}
},
@@ -70124,7 +67468,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventStatus_update_column",
+ "name": "eventPassNftContract_update_column",
"ofType": null
}
}
@@ -70139,7 +67483,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -70153,12 +67497,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "eventStatus_order_by",
- "description": "Ordering options when selecting data from \"eventStatus\".",
+ "name": "eventPassNftContract_order_by",
+ "description": "Ordering options when selecting data from \"eventPassNftContract\".",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "chainId",
"description": null,
"type": {
"kind": "ENUM",
@@ -70168,170 +67512,73 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_pk_columns_input",
- "description": "primary key columns input for table: eventStatus",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "contractAddress",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventStatus_select_column",
- "description": "select columns of table \"eventStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_set_input",
- "description": "input type for updating data in table \"eventStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_stream_cursor_input",
- "description": "Streaming cursor of the table \"eventStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "eventPassId",
+ "description": null,
"type": {
"kind": "ENUM",
- "name": "cursor_ordering",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
+ "name": "eventPassNfts_aggregate",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "eventStatus_update_column",
- "description": "update columns of table \"eventStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "eventPassOrderSums",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_set_input",
+ "name": "eventPassOrderSums_order_by",
"ofType": null
},
"defaultValue": null,
@@ -70339,248 +67586,107 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "follow",
- "description": "Stores follow relationships. Each row represents an account following an organizer.",
- "fields": [
- {
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "created_at",
+ "name": "isAirdrop",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "follow_aggregate",
- "description": "aggregated selection of \"follow\"",
- "fields": [
- {
- "name": "aggregate",
+ "name": "isDelayedRevealed",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "follow_aggregate_fields",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "orders_aggregate",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "follow",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "follow_aggregate_fields",
- "description": "aggregate fields of \"follow\"",
- "fields": [
+ },
{
- "name": "count",
+ "name": "organizerId",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "passAmount",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "follow_max_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "passPricing",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "follow_min_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "description": "Boolean expression to filter rows from the table \"follow\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "passType",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "password",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -70588,31 +67694,23 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "type",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "accountId",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -70620,24 +67718,39 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "validationType",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_pk_columns_input",
+ "description": "primary key columns input for table: eventPassNftContract",
+ "fields": null,
+ "inputFields": [
{
- "name": "organizerSlug",
+ "name": "id",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -70650,288 +67763,289 @@
},
{
"kind": "ENUM",
- "name": "follow_constraint",
- "description": "unique or primary key constraints on table \"follow\"",
+ "name": "eventPassNftContract_select_column",
+ "description": "select columns of table \"eventPassNftContract\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "follow_pkey",
- "description": "unique or primary key constraint on columns \"accountId\", \"organizerSlug\"",
+ "name": "chainId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_insert_input",
- "description": "input type for inserting data into table \"follow\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "contractAddress",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
+ "name": "eventId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isDelayedRevealed",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passType",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "validationType",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns",
+ "description": "select \"eventPassNftContract_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isDelayedRevealed",
+ "description": "column name",
+ "isDeprecated": false,
"deprecationReason": null
}
],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column_eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns",
+ "description": "select \"eventPassNftContract_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": null,
"interfaces": null,
- "enumValues": null,
+ "enumValues": [
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isDelayedRevealed",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "follow_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_set_input",
+ "description": "input type for updating data in table \"eventPassNftContract\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "args": [],
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "args": [],
+ "name": "created_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "follow_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "args": [],
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "eventPassId",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "args": [],
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "follow_mutation_response",
- "description": "response of any mutation on the table \"follow\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "isAirdrop",
+ "description": "Flag indicating whether the event pass NFT is airdropped.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "isDelayedRevealed",
+ "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "follow",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_on_conflict",
- "description": "on_conflict condition type for table \"follow\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
+ "name": "organizerId",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_constraint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "passType",
+ "description": "Type of the pass, referencing the eventPassType table.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_order_by",
- "description": "Ordering options when selecting data from \"follow\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "accountId",
- "description": null,
+ "name": "type",
+ "description": "Type of the event pass NFT contract.",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "eventPassNftContractType_enum",
"ofType": null
},
"defaultValue": null,
@@ -70939,11 +68053,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -70951,11 +68065,11 @@
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": null,
+ "name": "validationType",
+ "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "eventPassValidationType_enum",
"ofType": null
},
"defaultValue": null,
@@ -70969,19 +68083,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "follow_pk_columns_input",
- "description": "primary key columns input for table: follow",
+ "name": "eventPassNftContract_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassNftContract\"",
"fields": null,
"inputFields": [
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_stream_cursor_value_input",
"ofType": null
}
},
@@ -70990,16 +68104,12 @@
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -71011,46 +68121,65 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "follow_select_column",
- "description": "select columns of table \"follow\"",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "inputFields": [
{
- "name": "accountId",
- "description": "column name",
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT collection resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT collection. It acts as the primary reference to the NFTs existence and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
- "description": "column name",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "column name",
+ "name": "eventId",
+ "description": "A unique identifier for the event associated with the NFT collection. This ties each collection directly to a specific event within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_set_input",
- "description": "input type for updating data in table \"follow\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
+ "name": "eventPassId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -71058,11 +68187,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -71070,73 +68199,59 @@
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "name": "isAirdrop",
+ "description": "Flag indicating whether the event pass NFT is airdropped.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_stream_cursor_input",
- "description": "Streaming cursor of the table \"follow\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "isDelayedRevealed",
+ "description": "Flag indicating whether the delayed reveal functionality is active. Can be set to true only if type is delayed_reveal.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passType",
+ "description": "Type of the pass, referencing the eventPassType table.",
"type": {
"kind": "ENUM",
- "name": "cursor_ordering",
+ "name": "eventPassType_enum",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "follow_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
+ "name": "password",
+ "description": "Password for the delayed reveal functionality. Nullable and only applicable for delayed_reveal type.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -71144,7 +68259,19 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "type",
+ "description": "Type of the event pass NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": null,
"type": {
"kind": "SCALAR",
@@ -71156,11 +68283,11 @@
"deprecationReason": null
},
{
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "name": "validationType",
+ "description": "The method of validation for the event pass, referencing the eventPassValidationType table.",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
"ofType": null
},
"defaultValue": null,
@@ -71174,14 +68301,20 @@
},
{
"kind": "ENUM",
- "name": "follow_update_column",
- "description": "update columns of table \"follow\"",
+ "name": "eventPassNftContract_update_column",
+ "description": "update columns of table \"eventPassNftContract\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "accountId",
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -71193,7 +68326,67 @@
"deprecationReason": null
},
{
- "name": "organizerSlug",
+ "name": "eventId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isDelayedRevealed",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passType",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "validationType",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -71203,7 +68396,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "follow_updates",
+ "name": "eventPassNftContract_updates",
"description": null,
"fields": null,
"inputFields": [
@@ -71212,7 +68405,7 @@
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "follow_set_input",
+ "name": "eventPassNftContract_set_input",
"ofType": null
},
"defaultValue": null,
@@ -71227,7 +68420,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "name": "eventPassNftContract_bool_exp",
"ofType": null
}
},
@@ -71241,62 +68434,64 @@
"possibleTypes": null
},
{
- "kind": "SCALAR",
- "name": "jsonb",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "jsonb_cast_exp",
- "description": null,
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "description": "aggregated selection of \"eventPassNft\"",
+ "fields": [
{
- "name": "String",
+ "name": "aggregate",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate_fields",
"ofType": null
},
- "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "jsonb_comparison_exp",
- "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.",
+ "name": "eventPassNft_aggregate_bool_exp",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "_cast",
+ "name": "bool_and",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "jsonb_cast_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_contained_in",
- "description": "is the column contained in the given json value",
- "type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "name": "eventPassNft_aggregate_bool_exp_bool_and",
"ofType": null
},
"defaultValue": null,
@@ -71304,11 +68499,11 @@
"deprecationReason": null
},
{
- "name": "_contains",
- "description": "does the column contain the given json value at the top level",
+ "name": "bool_or",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp_bool_or",
"ofType": null
},
"defaultValue": null,
@@ -71316,35 +68511,50 @@
"deprecationReason": null
},
{
- "name": "_eq",
+ "name": "count",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp_count",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp_bool_and",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "_gt",
+ "name": "arguments",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_gte",
+ "name": "distinct",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "jsonb",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -71352,11 +68562,11 @@
"deprecationReason": null
},
{
- "name": "_has_key",
- "description": "does the string exist as a top-level key in the column",
+ "name": "filter",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -71364,59 +68574,42 @@
"deprecationReason": null
},
{
- "name": "_has_keys_all",
- "description": "do all of these strings exist as top-level keys in the column",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_has_keys_any",
- "description": "do any of these strings exist as top-level keys in the column",
+ "name": "predicate",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp_bool_or",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "_in",
+ "name": "arguments",
"description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns",
+ "ofType": null
}
},
"defaultValue": null,
@@ -71424,7 +68617,7 @@
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "distinct",
"description": null,
"type": {
"kind": "SCALAR",
@@ -71436,35 +68629,11 @@
"deprecationReason": null
},
{
- "name": "_lt",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_lte",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_neq",
+ "name": "filter",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "jsonb",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -71472,19 +68641,15 @@
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "predicate",
"description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
+ "ofType": null
}
},
"defaultValue": null,
@@ -71497,175 +68662,93 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "kyc",
- "description": "columns and relationships of \"kyc\"",
- "fields": [
- {
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
- "args": [],
+ "name": "arguments",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "Level of KYC verification, referring to kycLevelName.",
- "args": [],
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
- "args": [],
+ "name": "filter",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycLevelName",
- "description": "KYC levels representing the level of verification for the applicant.",
- "fields": [
- {
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
- "args": [],
+ "name": "predicate",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "kycLevelName_aggregate",
- "description": "aggregated selection of \"kycLevelName\"",
+ "name": "eventPassNft_aggregate_fields",
+ "description": "aggregate fields of \"eventPassNft\"",
"fields": [
{
- "name": "aggregate",
+ "name": "avg",
"description": null,
"args": [],
"type": {
"kind": "OBJECT",
- "name": "kycLevelName_aggregate_fields",
+ "name": "eventPassNft_avg_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "nodes",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycLevelName_aggregate_fields",
- "description": "aggregate fields of \"kycLevelName\"",
- "fields": [
{
"name": "count",
"description": null,
@@ -71681,7 +68764,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kycLevelName_select_column",
+ "name": "eventPassNft_select_column",
"ofType": null
}
}
@@ -71721,7 +68804,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "kycLevelName_max_fields",
+ "name": "eventPassNft_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -71733,145 +68816,126 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "kycLevelName_min_fields",
+ "name": "eventPassNft_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "description": "Boolean expression to filter rows from the table \"kycLevelName\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "stddev",
"description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "eventPassNft_stddev_fields",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "stddev_pop",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
+ "kind": "OBJECT",
+ "name": "eventPassNft_stddev_pop_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "stddev_samp",
"description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "eventPassNft_stddev_samp_fields",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
+ "name": "sum",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "OBJECT",
+ "name": "eventPassNft_sum_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycLevelName_constraint",
- "description": "unique or primary key constraints on table \"kycLevelName\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "kycLevelName_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_var_pop_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "advanced_kyc_level",
+ "name": "var_samp",
"description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_var_samp_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "basic_kyc_level",
+ "name": "variance",
"description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_variance_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"kycLevelName_enum\". All fields are combined with logical 'AND'.",
+ "name": "eventPassNft_aggregate_order_by",
+ "description": "order by aggregate values of table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "_eq",
+ "name": "avg",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_avg_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
"description": null,
"type": {
"kind": "ENUM",
- "name": "kycLevelName_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -71879,31 +68943,23 @@
"deprecationReason": null
},
{
- "name": "_in",
+ "name": "max",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_max_order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "min",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_min_order_by",
"ofType": null
},
"defaultValue": null,
@@ -71911,11 +68967,11 @@
"deprecationReason": null
},
{
- "name": "_neq",
+ "name": "stddev",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_order_by",
"ofType": null
},
"defaultValue": null,
@@ -71923,174 +68979,113 @@
"deprecationReason": null
},
{
- "name": "_nin",
+ "name": "stddev_pop",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_pop_order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_insert_input",
- "description": "input type for inserting data into table \"kycLevelName\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "name": "stddev_samp",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_samp_order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycLevelName_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
- "args": [],
+ "name": "sum",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_sum_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycLevelName_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
- "args": [],
+ "name": "var_pop",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_var_pop_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycLevelName_mutation_response",
- "description": "response of any mutation on the table \"kycLevelName\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "var_samp",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_var_samp_order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "variance",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_variance_order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_on_conflict",
- "description": "on_conflict condition type for table \"kycLevelName\"",
+ "name": "eventPassNft_append_input",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
"fields": null,
"inputFields": [
{
- "name": "constraint",
- "description": null,
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_constraint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_columns",
+ "name": "data",
"description": null,
"type": {
"kind": "NON_NULL",
@@ -72102,23 +69097,23 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_update_column",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_insert_input",
"ofType": null
}
}
}
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
+ "name": "eventPassNft_on_conflict",
"ofType": null
},
"defaultValue": null,
@@ -72131,45 +69126,41 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_order_by",
- "description": "Ordering options when selecting data from \"kycLevelName\".",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventPassNft_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
{
- "name": "value",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_pk_columns_input",
- "description": "primary key columns input for table: kycLevelName",
+ "name": "eventPassNft_avg_order_by",
+ "description": "order by avg() on columns of table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -72181,61 +69172,57 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "kycLevelName_select_column",
- "description": "select columns of table \"kycLevelName\"",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassNft\". All fields are combined with a logical 'AND'.",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "inputFields": [
{
- "name": "value",
- "description": "column name",
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_set_input",
- "description": "input type for updating data in table \"kycLevelName\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_stream_cursor_input",
- "description": "Streaming cursor of the table \"kycLevelName\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_stream_cursor_value_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -72243,74 +69230,47 @@
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "chainId",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "name": "contractAddress",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycLevelName_update_column",
- "description": "update columns of table \"kycLevelName\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "value",
- "description": "column name",
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "currentOwnerAddress",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_set_input",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -72318,216 +69278,107 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "error",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycStatus",
- "description": "Statuses of Know Your Customer (KYC) processes.",
- "fields": [
+ },
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
- "args": [],
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycStatus_aggregate",
- "description": "aggregated selection of \"kycStatus\"",
- "fields": [
+ },
{
- "name": "aggregate",
+ "name": "eventParameters",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_aggregate_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "eventPassId",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kycStatus_aggregate_fields",
- "description": "aggregate fields of \"kycStatus\"",
- "fields": [
+ },
{
- "name": "count",
+ "name": "eventPassNftContract",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "id",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_max_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "isRevealed",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_min_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "description": "Boolean expression to filter rows from the table \"kycStatus\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "lastNftTransfer",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "lastNftTransferId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -72535,118 +69386,119 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "metadata",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
+ "name": "nftTransfers",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "nftTransfer_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycStatus_constraint",
- "description": "unique or primary key constraints on table \"kycStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "kycStatus_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
+ "name": "nftTransfers_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_aggregate_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycStatus_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "completed",
+ "name": "organizerId",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "init",
+ "name": "packAmount",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "onHold",
+ "name": "packId",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pending",
+ "name": "packPricing",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "prechecked",
+ "name": "passAmount",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "queued",
+ "name": "passPricing",
"description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"kycStatus_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_eq",
+ "name": "status",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -72654,31 +69506,23 @@
"deprecationReason": null
},
{
- "name": "_in",
+ "name": "tokenId",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_is_null",
+ "name": "tokenUri",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -72686,20 +69530,54 @@
"deprecationReason": null
},
{
- "name": "_neq",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNft_constraint",
+ "description": "unique or primary key constraints on table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "eventPassNft_contractAddress_tokenId_chainId_idx",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"tokenId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "_nin",
- "description": null,
+ "name": "eventPassNft_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_at_path_input",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
"kind": "LIST",
"name": null,
@@ -72707,8 +69585,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
}
@@ -72724,16 +69602,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "kycStatus_insert_input",
- "description": "input type for inserting data into table \"kycStatus\"",
+ "name": "eventPassNft_delete_elem_input",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
"fields": null,
"inputFields": [
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
},
"defaultValue": null,
@@ -72746,241 +69624,144 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "kycStatus_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_key_input",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "fields": null,
+ "inputFields": [
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
- "args": [],
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "kycStatus_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_inc_input",
+ "description": "input type for incrementing numeric columns in table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
- "args": [],
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "bigint",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "kycStatus_mutation_response",
- "description": "response of any mutation on the table \"kycStatus\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_insert_input",
+ "description": "input type for inserting data into table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_on_conflict",
- "description": "on_conflict condition type for table \"kycStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_constraint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_order_by",
- "description": "Ordering options when selecting data from \"kycStatus\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": null,
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_pk_columns_input",
- "description": "primary key columns input for table: kycStatus",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "name": "eventParameters",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_obj_rel_insert_input",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycStatus_select_column",
- "description": "select columns of table \"kycStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_set_input",
- "description": "input type for updating data in table \"kycStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -72989,103 +69770,49 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_stream_cursor_input",
- "description": "Streaming cursor of the table \"kycStatus\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "eventPassNftContract",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_obj_rel_insert_input",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "name": "isRevealed",
+ "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kycStatus_update_column",
- "description": "update columns of table \"kycStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "lastNftTransfer",
+ "description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_set_input",
+ "name": "nftTransfer_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -73093,189 +69820,71 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kyc_aggregate",
- "description": "aggregated selection of \"kyc\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
- "kind": "OBJECT",
- "name": "kyc_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kyc",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kyc_aggregate_fields",
- "description": "aggregate fields of \"kyc\"",
- "fields": [
- {
- "name": "count",
+ "name": "nftTransfers",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kyc_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_arr_rel_insert_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
"type": {
- "kind": "OBJECT",
- "name": "kyc_max_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "packAmount",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kyc_min_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_obj_rel_insert_input",
"ofType": null
},
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "description": "Boolean expression to filter rows from the table \"kyc\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- }
- }
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "packId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -73283,31 +69892,23 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "packPricing",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_obj_rel_insert_input",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "applicantId",
+ "name": "passAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passAmount_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -73315,11 +69916,11 @@
"deprecationReason": null
},
{
- "name": "createDate",
+ "name": "passPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "name": "passPricing_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -73327,11 +69928,11 @@
"deprecationReason": null
},
{
- "name": "externalUserId",
+ "name": "status",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -73339,11 +69940,11 @@
"deprecationReason": null
},
{
- "name": "levelName",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_enum_comparison_exp",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"defaultValue": null,
@@ -73351,11 +69952,11 @@
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": null,
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_enum_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -73366,8 +69967,8 @@
"name": "updated_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -73380,119 +69981,85 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "kyc_constraint",
- "description": "unique or primary key constraints on table \"kyc\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "kyc_externalUserId_key",
- "description": "unique or primary key constraint on columns \"externalUserId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kyc_pkey",
- "description": "unique or primary key constraint on columns \"externalUserId\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_insert_input",
- "description": "input type for inserting data into table \"kyc\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventPassNft_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "Level of KYC verification, referring to kycLevelName.",
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kyc_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
"args": [],
"type": {
"kind": "SCALAR",
@@ -73503,20 +70070,20 @@
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "name": "id",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -73527,31 +70094,20 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "kyc_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
+ "name": "packId",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
@@ -73562,24 +70118,24 @@
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "bigint",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -73587,7 +70143,7 @@
},
{
"name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
@@ -73604,166 +70160,97 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "kyc_mutation_response",
- "description": "response of any mutation on the table \"kyc\"",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_max_order_by",
+ "description": "order by max() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kyc",
- "ofType": null
- }
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"kyc\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_insert_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_on_conflict",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_on_conflict",
- "description": "on_conflict condition type for table \"kyc\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kyc_constraint",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kyc_update_column",
- "ofType": null
- }
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
- "defaultValue": "[]",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
- "description": "Ordering options when selecting data from \"kyc\".",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "applicantId",
+ "name": "id",
"description": null,
"type": {
"kind": "ENUM",
@@ -73775,8 +70262,8 @@
"deprecationReason": null
},
{
- "name": "createDate",
- "description": null,
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -73787,8 +70274,8 @@
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": null,
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -73799,7 +70286,7 @@
"deprecationReason": null
},
{
- "name": "levelName",
+ "name": "packId",
"description": null,
"type": {
"kind": "ENUM",
@@ -73811,8 +70298,8 @@
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -73823,8 +70310,8 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"type": {
"kind": "ENUM",
"name": "order_by",
@@ -73833,29 +70320,14 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_pk_columns_input",
- "description": "primary key columns input for table: kyc",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -73867,186 +70339,196 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "kyc_select_column",
- "description": "select columns of table \"kyc\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ "kind": "OBJECT",
+ "name": "eventPassNft_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "applicantId",
- "description": "column name",
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "column name",
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "column name",
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "column name",
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "column name",
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_set_input",
- "description": "input type for updating data in table \"kyc\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "Level of KYC verification, referring to kycLevelName.",
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "kycLevelName_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "kycStatus_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "bigint",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_stream_cursor_input",
- "description": "Streaming cursor of the table \"kyc\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_stream_cursor_value_input",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "kyc_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
+ "name": "eventPassNft_min_order_by",
+ "description": "order by min() on columns of table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "applicantId",
- "description": "Unique identifier for the applicant provided by Sumsub.",
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74054,11 +70536,11 @@
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74066,11 +70548,11 @@
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74078,11 +70560,11 @@
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "Level of KYC verification, referring to kycLevelName.",
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
"type": {
"kind": "ENUM",
- "name": "kycLevelName_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74090,11 +70572,11 @@
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
"type": {
"kind": "ENUM",
- "name": "kycStatus_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74102,81 +70584,95 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "kyc_update_column",
- "description": "update columns of table \"kyc\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "applicantId",
- "description": "column name",
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createDate",
- "description": "column name",
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "externalUserId",
- "description": "column name",
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "levelName",
- "description": "column name",
- "isDeprecated": false,
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
"deprecationReason": null
},
{
- "name": "reviewStatus",
- "description": "column name",
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "kyc_updates",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_set_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74184,16 +70680,12 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -74206,31 +70698,19 @@
},
{
"kind": "OBJECT",
- "name": "lotteryParameters",
- "description": "The lotteryParameters model is designed to define properties on a lottery, including details like the lotteryId and activityWebhookId. It manages various timestamps and settings related to the lottery, ensuring efficient and accurate management of lottery events.",
+ "name": "eventPassNft_mutation_response",
+ "description": "response of any mutation on the table \"eventPassNft\"",
"fields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "Int",
"ofType": null
}
},
@@ -74238,302 +70718,242 @@
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
+ "name": "constraint",
"description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "eventPassNft_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "update_columns",
"description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_update_column",
+ "ofType": null
+ }
+ }
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "where",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "description": "Ordering options when selecting data from \"eventPassNft\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "contractAddress",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "ENUM",
- "name": "lotteryStatus_enum",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
- "args": [],
+ "name": "currentOwnerAddress",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "error",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "lotteryParameters_aggregate",
- "description": "aggregated selection of \"lotteryParameters\"",
- "fields": [
+ },
{
- "name": "aggregate",
+ "name": "eventId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_aggregate_fields",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "eventParameters",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "lotteryParameters_aggregate_fields",
- "description": "aggregate fields of \"lotteryParameters\"",
- "fields": [
+ },
{
- "name": "count",
+ "name": "eventPassId",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "eventPassNftContract",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_max_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "id",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_min_fields",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "description": "Boolean expression to filter rows from the table \"lotteryParameters\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "_and",
+ "name": "isRevealed",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
+ "name": "lastNftTransfer",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
+ "name": "nftTransfer_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74541,31 +70961,23 @@
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "lastNftTransferId",
"description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "activityWebhookId",
+ "name": "metadata",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74573,11 +70985,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "nftTransfers_aggregate",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "name": "nftTransfer_aggregate_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74585,11 +70997,11 @@
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
+ "name": "organizerId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74597,11 +71009,11 @@
"deprecationReason": null
},
{
- "name": "dateSaleStart",
+ "name": "packAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "timestamp_comparison_exp",
+ "name": "passAmount_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74609,11 +71021,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "packId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74621,11 +71033,11 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "packPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passPricing_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74633,11 +71045,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "passAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passAmount_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74645,11 +71057,11 @@
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "passPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passPricing_order_by",
"ofType": null
},
"defaultValue": null,
@@ -74660,8 +71072,8 @@
"name": "status",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_enum_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74669,11 +71081,23 @@
"deprecationReason": null
},
{
- "name": "timezone",
+ "name": "tokenId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -74684,8 +71108,58 @@
"name": "updated_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_pk_columns_input",
+ "description": "primary key columns input for table: eventPassNft",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_prepend_input",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
"defaultValue": null,
@@ -74699,27 +71173,145 @@
},
{
"kind": "ENUM",
- "name": "lotteryParameters_constraint",
- "description": "unique or primary key constraints on table \"lotteryParameters\"",
+ "name": "eventPassNft_select_column",
+ "description": "select columns of table \"eventPassNft\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "lotteryParameters_lotteryId_key",
- "description": "unique or primary key constraint on columns \"lotteryId\"",
+ "name": "chainId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
+ "name": "contractAddress",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters_signingKey_key",
- "description": "unique or primary key constraint on columns \"signingKey\"",
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isRevealed",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_and_arguments_columns",
+ "description": "select \"eventPassNft_aggregate_bool_exp_bool_and_arguments_columns\" columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "isRevealed",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column_eventPassNft_aggregate_bool_exp_bool_or_arguments_columns",
+ "description": "select \"eventPassNft_aggregate_bool_exp_bool_or_arguments_columns\" columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "isRevealed",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
@@ -74728,13 +71320,25 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_insert_input",
- "description": "input type for inserting data into table \"lotteryParameters\"",
+ "name": "eventPassNft_set_input",
+ "description": "input type for updating data in table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -74757,11 +71361,11 @@
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -74769,11 +71373,35 @@
"deprecationReason": null
},
{
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -74793,11 +71421,35 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": null,
+ "name": "isRevealed",
+ "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
"defaultValue": null,
@@ -74806,7 +71458,7 @@
},
{
"name": "organizerId",
- "description": null,
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -74817,7 +71469,7 @@
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "packId",
"description": null,
"type": {
"kind": "SCALAR",
@@ -74833,7 +71485,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "lotteryStatus_enum",
+ "name": "nftStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -74841,8 +71493,20 @@
"deprecationReason": null
},
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -74871,464 +71535,349 @@
},
{
"kind": "OBJECT",
- "name": "lotteryParameters_max_fields",
- "description": "aggregate max on columns",
+ "name": "eventPassNft_stddev_fields",
+ "description": "aggregate stddev on columns",
"fields": [
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_order_by",
+ "description": "order by stddev() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNft_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
{
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_pop_order_by",
+ "description": "order by stddev_pop() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
- "args": [],
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "SCALAR",
- "name": "timestamp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNft_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
{
- "name": "id",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stddev_samp_order_by",
+ "description": "order by stddev_samp() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "lotteryId",
- "description": null,
- "args": [],
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "args": [],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "signingKey",
- "description": null,
- "args": [],
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the event pass NFT",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
- "args": [],
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the event pass NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "lotteryParameters_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
- "args": [],
+ "name": "currentOwnerAddress",
+ "description": "The address currently holding the event pass NFT, allowing tracking of ownership",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
- "args": [],
+ "name": "eventId",
+ "description": "A reference to the event associated with the event pass NFT",
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
- "args": [],
+ "name": "eventPassId",
+ "description": "Directly relates to a specific Event Pass within the system",
"type": {
"kind": "SCALAR",
- "name": "timestamp",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": null,
- "args": [],
+ "name": "isRevealed",
+ "description": "Indicates whether the QR code pass for the event pass NFT has been revealed by the owner. This field is essential for tracking and managing the reveal status within the platform.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "args": [],
+ "name": "lastNftTransferId",
+ "description": "Reference `id` to the latest `nftTransfer` entry, detailing the most recent transaction for this event pass NFT.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "signingKey",
- "description": null,
- "args": [],
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the event pass NFT.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
- "args": [],
+ "name": "organizerId",
+ "description": "Ties the event pass NFT to a specific organizer within the platform",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "packId",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "lotteryParameters_mutation_response",
- "description": "response of any mutation on the table \"lotteryParameters\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_on_conflict",
- "description": "on_conflict condition type for table \"lotteryParameters\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryParameters_constraint",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryParameters_update_column",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_order_by",
- "description": "Ordering options when selecting data from \"lotteryParameters\".",
- "fields": null,
- "inputFields": [
- {
- "name": "activityWebhookId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lotteryId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "status",
"description": null,
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "nftStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -75336,11 +71885,11 @@
"deprecationReason": null
},
{
- "name": "signingKey",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"defaultValue": null,
@@ -75348,11 +71897,11 @@
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "tokenUri",
+ "description": "The designated URI for the event pass NFTs metadata blob, providing a stable reference for data extraction.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -75360,51 +71909,58 @@
"deprecationReason": null
},
{
- "name": "timezone",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNft_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
{
- "name": "updated_at",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_pk_columns_input",
- "description": "primary key columns input for table: lotteryParameters",
+ "name": "eventPassNft_sum_order_by",
+ "description": "order by sum() on columns of table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -75417,275 +71973,141 @@
},
{
"kind": "ENUM",
- "name": "lotteryParameters_select_column",
- "description": "select columns of table \"lotteryParameters\"",
+ "name": "eventPassNft_update_column",
+ "description": "update columns of table \"eventPassNft\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "activityWebhookId",
+ "name": "chainId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "contractAddress",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
+ "name": "created_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "dateSaleStart",
+ "name": "currentOwnerAddress",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "error",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "eventId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "eventPassId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "signingKey",
+ "name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
+ "name": "isRevealed",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone",
+ "name": "lastNftTransferId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "metadata",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_set_input",
- "description": "input type for updating data in table \"lotteryParameters\"",
- "fields": null,
- "inputFields": [
- {
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "lotteryId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizerId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "packId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "signingKey",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "status",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "tokenId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "tokenUri",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "updated_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_stream_cursor_input",
- "description": "Streaming cursor of the table \"lotteryParameters\"",
+ "name": "eventPassNft_updates",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_stream_cursor_value_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_append_input",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "activityWebhookId",
- "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_at_path_input",
"ofType": null
},
"defaultValue": null,
@@ -75693,11 +72115,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_elem_input",
"ofType": null
},
"defaultValue": null,
@@ -75705,11 +72127,11 @@
"deprecationReason": null
},
{
- "name": "dateSaleEnd",
- "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
"type": {
- "kind": "SCALAR",
- "name": "timestamp",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_key_input",
"ofType": null
},
"defaultValue": null,
@@ -75717,11 +72139,11 @@
"deprecationReason": null
},
{
- "name": "dateSaleStart",
- "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "SCALAR",
- "name": "timestamp",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_inc_input",
"ofType": null
},
"defaultValue": null,
@@ -75729,11 +72151,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_prepend_input",
"ofType": null
},
"defaultValue": null,
@@ -75741,11 +72163,11 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": null,
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_set_input",
"ofType": null
},
"defaultValue": null,
@@ -75753,59 +72175,107 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNft_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "signingKey",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_var_pop_order_by",
+ "description": "order by var_pop() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "status",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
"kind": "ENUM",
- "name": "lotteryStatus_enum",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassNft_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "timezone",
- "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_var_samp_order_by",
+ "description": "order by var_samp() on columns of table \"eventPassNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "updated_at",
- "description": null,
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -75818,115 +72288,45 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "lotteryParameters_update_column",
- "description": "update columns of table \"lotteryParameters\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "activityWebhookId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleEnd",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "dateSaleStart",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lotteryId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "signingKey",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "OBJECT",
+ "name": "eventPassNft_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
{
- "name": "updated_at",
- "description": "column name",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_updates",
- "description": null,
+ "name": "eventPassNft_variance_order_by",
+ "description": "order by variance() on columns of table \"eventPassNft\"",
"fields": null,
"inputFields": [
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "tokenId",
+ "description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_set_input",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -75935,11 +72335,11 @@
},
{
"kind": "OBJECT",
- "name": "lotteryStatus",
- "description": "columns and relationships of \"lotteryStatus\"",
+ "name": "eventPassOrderSums",
+ "description": "Hold the sums for the Event Pass Orders",
"fields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"args": [],
"type": {
@@ -75953,6 +72353,22 @@
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -75962,8 +72378,8 @@
},
{
"kind": "OBJECT",
- "name": "lotteryStatus_aggregate",
- "description": "aggregated selection of \"lotteryStatus\"",
+ "name": "eventPassOrderSums_aggregate",
+ "description": "aggregated selection of \"eventPassOrderSums\"",
"fields": [
{
"name": "aggregate",
@@ -75971,7 +72387,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "lotteryStatus_aggregate_fields",
+ "name": "eventPassOrderSums_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -75992,7 +72408,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryStatus",
+ "name": "eventPassOrderSums",
"ofType": null
}
}
@@ -76009,9 +72425,21 @@
},
{
"kind": "OBJECT",
- "name": "lotteryStatus_aggregate_fields",
- "description": "aggregate fields of \"lotteryStatus\"",
+ "name": "eventPassOrderSums_aggregate_fields",
+ "description": "aggregate fields of \"eventPassOrderSums\"",
"fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "count",
"description": null,
@@ -76027,7 +72455,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryStatus_select_column",
+ "name": "eventPassOrderSums_select_column",
"ofType": null
}
}
@@ -76067,7 +72495,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "lotteryStatus_max_fields",
+ "name": "eventPassOrderSums_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -76079,7 +72507,114 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "lotteryStatus_min_fields",
+ "name": "eventPassOrderSums_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
@@ -76093,8 +72628,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
- "description": "Boolean expression to filter rows from the table \"lotteryStatus\". All fields are combined with a logical 'AND'.",
+ "name": "eventPassOrderSums_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassOrderSums\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -76108,7 +72643,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "eventPassOrderSums_bool_exp",
"ofType": null
}
}
@@ -76122,7 +72657,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "eventPassOrderSums_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -76140,7 +72675,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "eventPassOrderSums_bool_exp",
"ofType": null
}
}
@@ -76150,7 +72685,7 @@
"deprecationReason": null
},
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -76160,6 +72695,18 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"interfaces": null,
@@ -76168,15 +72715,15 @@
},
{
"kind": "ENUM",
- "name": "lotteryStatus_constraint",
- "description": "unique or primary key constraints on table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_constraint",
+ "description": "unique or primary key constraints on table \"eventPassOrderSums\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "lotteryStatus_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
+ "name": "eventPassOrderSums_pkey",
+ "description": "unique or primary key constraint on columns \"eventPassId\"",
"isDeprecated": false,
"deprecationReason": null
}
@@ -76184,72 +72731,40 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
- "description": null,
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_inc_input",
+ "description": "input type for incrementing numeric columns in table \"eventPassOrderSums\"",
"fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "DRAFT",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "inputFields": [
{
- "name": "PUBLISHED",
+ "name": "totalReserved",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "interfaces": null,
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"lotteryStatus_enum\". All fields are combined with logical 'AND'.",
+ "name": "eventPassOrderSums_insert_input",
+ "description": "input type for inserting data into table \"eventPassOrderSums\"",
"fields": null,
"inputFields": [
{
- "name": "_eq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_in",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_is_null",
+ "name": "eventPassId",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -76257,36 +72772,16 @@
"deprecationReason": null
},
{
- "name": "_neq",
+ "name": "totalReserved",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "_nin",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryStatus_enum",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -76294,40 +72789,29 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_insert_input",
- "description": "input type for inserting data into table \"lotteryStatus\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "lotteryStatus_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "value",
+ "name": "totalReserved",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
},
"isDeprecated": false,
@@ -76341,11 +72825,11 @@
},
{
"kind": "OBJECT",
- "name": "lotteryStatus_min_fields",
+ "name": "eventPassOrderSums_min_fields",
"description": "aggregate min on columns",
"fields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"args": [],
"type": {
@@ -76355,6 +72839,18 @@
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -76364,8 +72860,8 @@
},
{
"kind": "OBJECT",
- "name": "lotteryStatus_mutation_response",
- "description": "response of any mutation on the table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_mutation_response",
+ "description": "response of any mutation on the table \"eventPassOrderSums\"",
"fields": [
{
"name": "affected_rows",
@@ -76398,7 +72894,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryStatus",
+ "name": "eventPassOrderSums",
"ofType": null
}
}
@@ -76415,8 +72911,47 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_on_conflict",
- "description": "on_conflict condition type for table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"eventPassOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassOrderSums\"",
"fields": null,
"inputFields": [
{
@@ -76427,7 +72962,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryStatus_constraint",
+ "name": "eventPassOrderSums_constraint",
"ofType": null
}
},
@@ -76449,7 +72984,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryStatus_update_column",
+ "name": "eventPassOrderSums_update_column",
"ofType": null
}
}
@@ -76464,7 +72999,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "eventPassOrderSums_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -76478,12 +73013,24 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_order_by",
- "description": "Ordering options when selecting data from \"lotteryStatus\".",
+ "name": "eventPassOrderSums_order_by",
+ "description": "Ordering options when selecting data from \"eventPassOrderSums\".",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
"description": null,
"type": {
"kind": "ENUM",
@@ -76501,12 +73048,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_pk_columns_input",
- "description": "primary key columns input for table: lotteryStatus",
+ "name": "eventPassOrderSums_pk_columns_input",
+ "description": "primary key columns input for table: eventPassOrderSums",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"type": {
"kind": "NON_NULL",
@@ -76528,14 +73075,20 @@
},
{
"kind": "ENUM",
- "name": "lotteryStatus_select_column",
- "description": "select columns of table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_select_column",
+ "description": "select columns of table \"eventPassOrderSums\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "value",
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -76545,12 +73098,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_set_input",
- "description": "input type for updating data in table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_set_input",
+ "description": "input type for updating data in table \"eventPassOrderSums\"",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"type": {
"kind": "SCALAR",
@@ -76560,16 +73113,97 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_stream_cursor_input",
- "description": "Streaming cursor of the table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassOrderSums\"",
"fields": null,
"inputFields": [
{
@@ -76580,7 +73214,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_stream_cursor_value_input",
+ "name": "eventPassOrderSums_stream_cursor_value_input",
"ofType": null
}
},
@@ -76607,12 +73241,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_stream_cursor_value_input",
+ "name": "eventPassOrderSums_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "value",
+ "name": "eventPassId",
"description": null,
"type": {
"kind": "SCALAR",
@@ -76622,22 +73256,63 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
{
"kind": "ENUM",
- "name": "lotteryStatus_update_column",
- "description": "update columns of table \"lotteryStatus\"",
+ "name": "eventPassOrderSums_update_column",
+ "description": "update columns of table \"eventPassOrderSums\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "value",
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -76647,16 +73322,28 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_updates",
+ "name": "eventPassOrderSums_updates",
"description": null,
"fields": null,
"inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "_set",
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_set_input",
+ "name": "eventPassOrderSums_set_input",
"ofType": null
},
"defaultValue": null,
@@ -76671,7 +73358,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "eventPassOrderSums_bool_exp",
"ofType": null
}
},
@@ -76686,68 +73373,81 @@
},
{
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
- "description": "Temporary wallet information for minters, including optional links to event passes and packs.",
+ "name": "eventPassOrderSums_var_pop_fields",
+ "description": "aggregate var_pop on columns",
"fields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
+ "name": "totalReserved",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
+ "name": "totalReserved",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
{
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
+ "name": "totalReserved",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "description": "Defines the types of event passes.",
+ "fields": [
{
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "value",
+ "description": "Type name for event pass.",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -76769,8 +73469,8 @@
},
{
"kind": "OBJECT",
- "name": "minterTemporaryWallet_aggregate",
- "description": "aggregated selection of \"minterTemporaryWallet\"",
+ "name": "eventPassType_aggregate",
+ "description": "aggregated selection of \"eventPassType\"",
"fields": [
{
"name": "aggregate",
@@ -76778,7 +73478,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet_aggregate_fields",
+ "name": "eventPassType_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -76799,7 +73499,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "name": "eventPassType",
"ofType": null
}
}
@@ -76816,8 +73516,8 @@
},
{
"kind": "OBJECT",
- "name": "minterTemporaryWallet_aggregate_fields",
- "description": "aggregate fields of \"minterTemporaryWallet\"",
+ "name": "eventPassType_aggregate_fields",
+ "description": "aggregate fields of \"eventPassType\"",
"fields": [
{
"name": "count",
@@ -76834,7 +73534,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
+ "name": "eventPassType_select_column",
"ofType": null
}
}
@@ -76874,7 +73574,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet_max_fields",
+ "name": "eventPassType_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -76886,7 +73586,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet_min_fields",
+ "name": "eventPassType_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -76900,8 +73600,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
- "description": "Boolean expression to filter rows from the table \"minterTemporaryWallet\". All fields are combined with a logical 'AND'.",
+ "name": "eventPassType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassType\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -76915,7 +73615,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "eventPassType_bool_exp",
"ofType": null
}
}
@@ -76929,7 +73629,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "eventPassType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -76947,7 +73647,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "eventPassType_bool_exp",
"ofType": null
}
}
@@ -76957,43 +73657,7 @@
"deprecationReason": null
},
{
- "name": "address",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
+ "name": "value",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -77003,35 +73667,46 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassType_constraint",
+ "description": "unique or primary key constraints on table \"eventPassType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "privateKey",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "eventPassType_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
- "name": "minterTemporaryWallet_constraint",
- "description": "unique or primary key constraints on table \"minterTemporaryWallet\"",
+ "name": "eventPassType_enum",
+ "description": null,
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "minterTemporaryWallet_pkey",
- "description": "unique or primary key constraint on columns \"address\"",
+ "name": "event_access",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "redeemable",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
}
@@ -77040,16 +73715,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_insert_input",
- "description": "input type for inserting data into table \"minterTemporaryWallet\"",
+ "name": "eventPassType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"eventPassType_enum\". All fields are combined with logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
"ofType": null
},
"defaultValue": null,
@@ -77057,23 +73732,31 @@
"deprecationReason": null
},
{
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
+ "name": "_in",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
+ "name": "_is_null",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -77081,11 +73764,11 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
"ofType": null
},
"defaultValue": null,
@@ -77093,12 +73776,20 @@
"deprecationReason": null
},
{
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "_nin",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -77110,61 +73801,36 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_insert_input",
+ "description": "input type for inserting data into table \"eventPassType\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
- "args": [],
+ "name": "value",
+ "description": "Type name for event pass.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassType_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "value",
+ "description": "Type name for event pass.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -77182,60 +73848,12 @@
},
{
"kind": "OBJECT",
- "name": "minterTemporaryWallet_min_fields",
+ "name": "eventPassType_min_fields",
"description": "aggregate min on columns",
"fields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "value",
+ "description": "Type name for event pass.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -77253,8 +73871,8 @@
},
{
"kind": "OBJECT",
- "name": "minterTemporaryWallet_mutation_response",
- "description": "response of any mutation on the table \"minterTemporaryWallet\"",
+ "name": "eventPassType_mutation_response",
+ "description": "response of any mutation on the table \"eventPassType\"",
"fields": [
{
"name": "affected_rows",
@@ -77287,7 +73905,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "name": "eventPassType",
"ofType": null
}
}
@@ -77304,8 +73922,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_on_conflict",
- "description": "on_conflict condition type for table \"minterTemporaryWallet\"",
+ "name": "eventPassType_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassType\"",
"fields": null,
"inputFields": [
{
@@ -77316,7 +73934,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "minterTemporaryWallet_constraint",
+ "name": "eventPassType_constraint",
"ofType": null
}
},
@@ -77338,7 +73956,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "minterTemporaryWallet_update_column",
+ "name": "eventPassType_update_column",
"ofType": null
}
}
@@ -77353,7 +73971,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "eventPassType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -77367,60 +73985,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_order_by",
- "description": "Ordering options when selecting data from \"minterTemporaryWallet\".",
+ "name": "eventPassType_order_by",
+ "description": "Ordering options when selecting data from \"eventPassType\".",
"fields": null,
"inputFields": [
{
- "name": "address",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
+ "name": "value",
"description": null,
"type": {
"kind": "ENUM",
@@ -77438,13 +74008,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_pk_columns_input",
- "description": "primary key columns input for table: minterTemporaryWallet",
+ "name": "eventPassType_pk_columns_input",
+ "description": "primary key columns input for table: eventPassType",
"fields": null,
"inputFields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
+ "name": "value",
+ "description": "Type name for event pass.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -77465,38 +74035,14 @@
},
{
"kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
- "description": "select columns of table \"minterTemporaryWallet\"",
+ "name": "eventPassType_select_column",
+ "description": "select columns of table \"eventPassType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "address",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
+ "name": "value",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -77506,61 +74052,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_set_input",
- "description": "input type for updating data in table \"minterTemporaryWallet\"",
+ "name": "eventPassType_set_input",
+ "description": "input type for updating data in table \"eventPassType\"",
"fields": null,
"inputFields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "value",
+ "description": "Type name for event pass.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -77577,8 +74075,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_stream_cursor_input",
- "description": "Streaming cursor of the table \"minterTemporaryWallet\"",
+ "name": "eventPassType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassType\"",
"fields": null,
"inputFields": [
{
@@ -77589,7 +74087,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_stream_cursor_value_input",
+ "name": "eventPassType_stream_cursor_value_input",
"ofType": null
}
},
@@ -77616,61 +74114,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_stream_cursor_value_input",
+ "name": "eventPassType_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "The timestamp when the temporary wallet was created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Optional identifier for an event pass associated with this wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "Optional identifier for a pack associated with this wallet.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
- "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "name": "value",
+ "description": "Type name for event pass.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -77687,38 +74137,14 @@
},
{
"kind": "ENUM",
- "name": "minterTemporaryWallet_update_column",
- "description": "update columns of table \"minterTemporaryWallet\"",
+ "name": "eventPassType_update_column",
+ "description": "update columns of table \"eventPassType\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "address",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createdAt",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "privateKey",
+ "name": "value",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -77728,7 +74154,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_updates",
+ "name": "eventPassType_updates",
"description": null,
"fields": null,
"inputFields": [
@@ -77737,7 +74163,7 @@
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_set_input",
+ "name": "eventPassType_set_input",
"ofType": null
},
"defaultValue": null,
@@ -77752,7 +74178,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "eventPassType_bool_exp",
"ofType": null
}
},
@@ -77767,603 +74193,870 @@
},
{
"kind": "OBJECT",
- "name": "mutation_root",
- "description": "mutation root",
+ "name": "eventPassValidationType",
+ "description": "Defines the types of validation for event passes.",
"fields": [
{
- "name": "createAsset",
- "description": "Create one asset",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetCreateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_aggregate",
+ "description": "aggregated selection of \"eventPassValidationType\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Asset",
+ "name": "eventPassValidationType_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createContentSpace",
- "description": "Create one contentSpace",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceCreateInput",
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_aggregate_fields",
+ "description": "aggregate fields of \"eventPassValidationType\"",
+ "fields": [
{
- "name": "createEvent",
- "description": "Create one event",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "data",
+ "name": "columns",
"description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventCreateInput",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "createEventPass",
- "description": "Create one eventPass",
- "args": [
+ },
{
- "name": "data",
+ "name": "distinct",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassCreateInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPass",
+ "name": "eventPassValidationType_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createEventPassDelayedRevealed",
- "description": "Create one eventPassDelayedRevealed",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedCreateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "name": "eventPassValidationType_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventPassValidationType\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "createOrganizer",
- "description": "Create one organizer",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerCreateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createPack",
- "description": "Create one pack",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackCreateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_constraint",
+ "description": "unique or primary key constraints on table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "eventPassValidationType_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "external",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "createScheduledRelease",
- "description": "Create one scheduledRelease",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseCreateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "manual",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nft",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"eventPassValidationType_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteAsset",
- "description": "Delete one asset from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
+ "ofType": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Asset",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteContentSpace",
- "description": "Delete one contentSpace from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteEvent",
- "description": "Delete one event from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_enum",
+ "ofType": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_insert_input",
+ "description": "input type for inserting data into table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_mutation_response",
+ "description": "response of any mutation on the table \"eventPassValidationType\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteEventPass",
- "description": "Delete one eventPass from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_on_conflict",
+ "description": "on_conflict condition type for table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteEventPassDelayedRevealed",
- "description": "Delete one eventPassDelayedRevealed from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "kind": "ENUM",
+ "name": "eventPassValidationType_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_order_by",
+ "description": "Ordering options when selecting data from \"eventPassValidationType\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "deleteManyAssets",
- "description": "Delete many Asset documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_pk_columns_input",
+ "description": "primary key columns input for table: eventPassValidationType",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "description": "select columns of table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "deleteManyAssetsConnection",
- "description": "Delete many Asset documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_set_input",
+ "description": "input type for updating data in table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "AssetConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyContentSpaces",
- "description": "Delete many ContentSpace documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_update_column",
+ "description": "update columns of table \"eventPassValidationType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "description": "columns and relationships of \"eventStatus\"",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus_aggregate",
+ "description": "aggregated selection of \"eventStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "deleteManyContentSpacesConnection",
- "description": "Delete many ContentSpace documents, return deleted documents",
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus_aggregate_fields",
+ "description": "aggregate fields of \"eventStatus\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
+ "name": "columns",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "skip",
+ "name": "distinct",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -78375,8 +75068,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -78384,1277 +75077,770 @@
"deprecationReason": null
},
{
- "name": "deleteManyEventPasses",
- "description": "Delete many EventPass documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "eventStatus_max_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyEventPassesConnection",
- "description": "Delete many EventPass documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassConnection",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "eventStatus_min_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"eventStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "deleteManyEventPassesDelayedRevealed",
- "description": "Delete many EventPassDelayedRevealed documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyEventPassesDelayedRevealedConnection",
- "description": "Delete many EventPassDelayedRevealed documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyEvents",
- "description": "Delete many Event documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyEventsConnection",
- "description": "Delete many Event documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventConnection",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventStatus_constraint",
+ "description": "unique or primary key constraints on table \"eventStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "deleteManyOrganizers",
- "description": "Delete many Organizer documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
- },
+ "name": "eventStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "deleteManyOrganizersConnection",
- "description": "Delete many Organizer documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "OrganizerConnection",
- "ofType": null
- }
- },
+ "name": "DRAFT",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyPacks",
- "description": "Delete many Pack documents",
- "args": [
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "PUBLISHED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"eventStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteManyPacksConnection",
- "description": "Delete many Pack documents, return deleted documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to delete",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_in",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "PackConnection",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteOrganizer",
- "description": "Delete one organizer from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deletePack",
- "description": "Delete one pack from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "deleteScheduledOperation",
- "description": "Delete and return scheduled operation",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_nin",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_enum",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_insert_input",
+ "description": "input type for inserting data into table \"eventStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "deleteScheduledRelease",
- "description": "Delete one scheduledRelease from _all_ existing stages. Returns deleted document.",
- "args": [
- {
- "name": "where",
- "description": "Document to delete",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "delete_account",
- "description": "delete data from the table: \"account\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "account_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "delete_account_by_pk",
- "description": "delete single row from the table: \"account\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "account",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "eventStatus_mutation_response",
+ "description": "response of any mutation on the table \"eventStatus\"",
+ "fields": [
{
- "name": "delete_contentSpaceParameters",
- "description": "delete data from the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_contentSpaceParameters_by_pk",
- "description": "delete single row from the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "eventStatus",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_on_conflict",
+ "description": "on_conflict condition type for table \"eventStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_contentSpaceStatus",
- "description": "delete data from the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_contentSpaceStatus_by_pk",
- "description": "delete single row from the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "eventStatus_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
- "ofType": null
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_currency",
- "description": "delete data from the table: \"currency\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "currency_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "delete_currency_by_pk",
- "description": "delete single row from the table: \"currency\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_order_by",
+ "description": "Ordering options when selecting data from \"eventStatus\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "currency",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_pk_columns_input",
+ "description": "primary key columns input for table: eventStatus",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_eventParameters",
- "description": "delete data from the table: \"eventParameters\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventParameters_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "description": "select columns of table \"eventStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "delete_eventParameters_by_pk",
- "description": "delete single row from the table: \"eventParameters\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_set_input",
+ "description": "input type for updating data in table \"eventStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventParameters",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"eventStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_eventPassNft",
- "description": "delete data from the table: \"eventPassNft\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_stream_cursor_value_input",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassNftContract",
- "description": "delete data from the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_mutation_response",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_eventPassNftContractType",
- "description": "delete data from the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "eventStatus_update_column",
+ "description": "update columns of table \"eventStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "delete_eventPassNftContractType_by_pk",
- "description": "delete single row from the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "value",
- "description": "Type name for event pass NFT contract.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassNftContract_by_pk",
- "description": "delete single row from the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow",
+ "description": "Stores follow relationships. Each row represents an account following an organizer.",
+ "fields": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassNft_by_pk",
- "description": "delete single row from the table: \"eventPassNft\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassOrderSums",
- "description": "delete data from the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow_aggregate",
+ "description": "aggregated selection of \"follow\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassOrderSums_mutation_response",
+ "name": "follow_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassOrderSums_by_pk",
- "description": "delete single row from the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "eventPassId",
- "description": null,
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "follow",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow_aggregate_fields",
+ "description": "aggregate fields of \"follow\"",
+ "fields": [
{
- "name": "delete_eventPassType",
- "description": "delete data from the table: \"eventPassType\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "where",
- "description": "filter the rows which have to be deleted",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "follow_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassType_mutation_response",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "delete_eventPassType_by_pk",
- "description": "delete single row from the table: \"eventPassType\"",
- "args": [
+ },
{
- "name": "value",
- "description": "Type name for event pass.",
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -79662,1921 +75848,1181 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "eventPassType",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassValidationType",
- "description": "delete data from the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassValidationType_mutation_response",
+ "name": "follow_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventPassValidationType_by_pk",
- "description": "delete single row from the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "value",
- "description": "Type name for event pass validation.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassValidationType",
+ "name": "follow_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"follow\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_eventStatus",
- "description": "delete data from the table: \"eventStatus\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventStatus_mutation_response",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_eventStatus_by_pk",
- "description": "delete single row from the table: \"eventStatus\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventStatus",
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_follow",
- "description": "delete data from the table: \"follow\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "follow_mutation_response",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_follow_by_pk",
- "description": "delete single row from the table: \"follow\"",
- "args": [
- {
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "accountId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "follow",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_kyc",
- "description": "delete data from the table: \"kyc\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kyc_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_kycLevelName",
- "description": "delete data from the table: \"kycLevelName\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycLevelName_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "follow_constraint",
+ "description": "unique or primary key constraints on table \"follow\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "delete_kycLevelName_by_pk",
- "description": "delete single row from the table: \"kycLevelName\"",
- "args": [
- {
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "follow_pkey",
+ "description": "unique or primary key constraint on columns \"accountId\", \"organizerSlug\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_insert_input",
+ "description": "input type for inserting data into table \"follow\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
"type": {
- "kind": "OBJECT",
- "name": "kycLevelName",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_kycStatus",
- "description": "delete data from the table: \"kycStatus\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_kycStatus_by_pk",
- "description": "delete single row from the table: \"kycStatus\"",
- "args": [
- {
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
"type": {
- "kind": "OBJECT",
- "name": "kycStatus",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "delete_kyc_by_pk",
- "description": "delete single row from the table: \"kyc\"",
- "args": [
- {
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kyc",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_lotteryParameters",
- "description": "delete data from the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_lotteryParameters_by_pk",
- "description": "delete single row from the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "delete_lotteryStatus",
- "description": "delete data from the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_lotteryStatus_by_pk",
- "description": "delete single row from the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_minterTemporaryWallet",
- "description": "delete data from the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "follow_mutation_response",
+ "description": "response of any mutation on the table \"follow\"",
+ "fields": [
{
- "name": "delete_minterTemporaryWallet_by_pk",
- "description": "delete single row from the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_nftTransfer",
- "description": "delete data from the table: \"nftTransfer\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "kind": "OBJECT",
+ "name": "follow",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_on_conflict",
+ "description": "on_conflict condition type for table \"follow\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "follow_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_nftTransfer_by_pk",
- "description": "delete single row from the table: \"nftTransfer\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "follow_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "nftTransfer",
- "ofType": null
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_order",
- "description": "delete data from the table: \"order\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "order_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_order_by",
+ "description": "Ordering options when selecting data from \"follow\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_orderStatus",
- "description": "delete data from the table: \"orderStatus\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "accountId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "orderStatus_mutation_response",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_orderStatus_by_pk",
- "description": "delete single row from the table: \"orderStatus\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "orderStatus",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_order_by_pk",
- "description": "delete single row from the table: \"order\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "order",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_pk_columns_input",
+ "description": "primary key columns input for table: follow",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_packEventPassNft",
- "description": "delete data from the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packEventPassNft_by_pk",
- "description": "delete single row from the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "follow_select_column",
+ "description": "select columns of table \"follow\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "accountId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packNftContract",
- "description": "delete data from the table: \"packNftContract\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerSlug",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_set_input",
+ "description": "input type for updating data in table \"follow\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packNftContractEventPass",
- "description": "delete data from the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packNftContractEventPass_by_pk",
- "description": "delete single row from the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_stream_cursor_input",
+ "description": "Streaming cursor of the table \"follow\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_packNftContract_by_pk",
- "description": "delete single row from the table: \"packNftContract\"",
- "args": [
- {
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "OBJECT",
- "name": "packNftContract",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_stream_cursor_value_input",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packNftSupply",
- "description": "delete data from the table: \"packNftSupply\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "packNftSupply_mutation_response",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_packNftSupply_by_pk",
- "description": "delete single row from the table: \"packNftSupply\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
"type": {
- "kind": "OBJECT",
- "name": "packNftSupply",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packOrderSums",
- "description": "delete data from the table: \"packOrderSums\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_packOrderSums_by_pk",
- "description": "delete single row from the table: \"packOrderSums\"",
- "args": [
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "follow_update_column",
+ "description": "update columns of table \"follow\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "accountId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_passAmount",
- "description": "delete data from the table: \"passAmount\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerSlug",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "OBJECT",
- "name": "passAmount_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "follow_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_passAmount_by_pk",
- "description": "delete single row from the table: \"passAmount\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_cast_exp",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "String",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "passAmount",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "delete_passPricing",
- "description": "delete data from the table: \"passPricing\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_cast",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "passPricing_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_cast_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_passPricing_by_pk",
- "description": "delete single row from the table: \"passPricing\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_contained_in",
+ "description": "is the column contained in the given json value",
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_pendingOrder",
- "description": "delete data from the table: \"pendingOrder\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_contains",
+ "description": "does the column contain the given json value at the top level",
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder_mutation_response",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_pendingOrder_by_pk",
- "description": "delete single row from the table: \"pendingOrder\"",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_roleAssignment",
- "description": "delete data from the table: \"roleAssignment\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_gt",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roleAssignment_mutation_response",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_roles",
- "description": "delete data from the table: \"roles\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_gte",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roles_mutation_response",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_roles_by_pk",
- "description": "delete single row from the table: \"roles\"",
- "args": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_has_key",
+ "description": "does the string exist as a top-level key in the column",
"type": {
- "kind": "OBJECT",
- "name": "roles",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCheckoutSession",
- "description": "delete data from the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_has_keys_all",
+ "description": "do all of these strings exist as top-level keys in the column",
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_mutation_response",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCheckoutSessionType",
- "description": "delete data from the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_has_keys_any",
+ "description": "do any of these strings exist as top-level keys in the column",
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_mutation_response",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCheckoutSessionType_by_pk",
- "description": "delete single row from the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_in",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCheckoutSession_by_pk",
- "description": "delete single row from the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCustomer",
- "description": "delete data from the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_lt",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer_mutation_response",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_stripeCustomer_by_pk",
- "description": "delete single row from the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_lte",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_timezone",
- "description": "delete data from the table: \"timezone\"",
- "args": [
- {
- "name": "where",
- "description": "filter the rows which have to be deleted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "timezone_mutation_response",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "delete_timezone_by_pk",
- "description": "delete single row from the table: \"timezone\"",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_nin",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "timezone",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc",
+ "description": "columns and relationships of \"kyc\"",
+ "fields": [
{
- "name": "insert_account",
- "description": "insert data into the table: \"account\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "account_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_account_one",
- "description": "insert a single row into the table: \"account\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "account",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_contentSpaceParameters",
- "description": "insert data into the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_contentSpaceParameters_one",
- "description": "insert a single row into the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "levelName",
+ "description": "Level of KYC verification, referring to kycLevelName.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_contentSpaceStatus",
- "description": "insert data into the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "reviewStatus",
+ "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_mutation_response",
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_contentSpaceStatus_one",
- "description": "insert a single row into the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "description": "KYC levels representing the level of verification for the applicant.",
+ "fields": [
{
- "name": "insert_currency",
- "description": "insert data into the table: \"currency\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName_aggregate",
+ "description": "aggregated selection of \"kycLevelName\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "currency_mutation_response",
+ "name": "kycLevelName_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_currency_one",
- "description": "insert a single row into the table: \"currency\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_insert_input",
+ "kind": "OBJECT",
+ "name": "kycLevelName",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "currency",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName_aggregate_fields",
+ "description": "aggregate fields of \"kycLevelName\"",
+ "fields": [
{
- "name": "insert_eventParameters",
- "description": "insert data into the table: \"eventParameters\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "objects",
- "description": "the rows to be inserted",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_insert_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "kycLevelName_select_column",
+ "ofType": null
}
}
},
@@ -81585,11 +77031,11 @@
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_on_conflict",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -81598,795 +77044,736 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "eventParameters_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventParameters_one",
- "description": "insert a single row into the table: \"eventParameters\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "kycLevelName_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassNft",
- "description": "insert data into the table: \"eventPassNft\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassNft_mutation_response",
+ "name": "kycLevelName_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"kycLevelName\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_eventPassNftContract",
- "description": "insert data into the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_on_conflict",
+ "name": "kycLevelName_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_mutation_response",
- "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassNftContractType",
- "description": "insert data into the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassNftContractType_one",
- "description": "insert a single row into the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_on_conflict",
+ "name": "kycLevelName_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
- "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassNftContract_one",
- "description": "insert a single row into the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycLevelName_constraint",
+ "description": "unique or primary key constraints on table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "kycLevelName_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "advanced_kyc_level",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassNft_one",
- "description": "insert a single row into the table: \"eventPassNft\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "basic_kyc_level",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"kycLevelName_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft",
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassOrderSums",
- "description": "insert data into the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_on_conflict",
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_mutation_response",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassOrderSums_one",
- "description": "insert a single row into the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassType",
- "description": "insert data into the table: \"eventPassType\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_on_conflict",
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_insert_input",
+ "description": "input type for inserting data into table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
"type": {
- "kind": "OBJECT",
- "name": "eventPassType_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "insert_eventPassType_one",
- "description": "insert a single row into the table: \"eventPassType\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassType",
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycLevelName_mutation_response",
+ "description": "response of any mutation on the table \"kycLevelName\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "insert_eventPassValidationType",
- "description": "insert data into the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_insert_input",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_on_conflict",
+ "description": "on_conflict condition type for table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_eventPassValidationType_one",
- "description": "insert a single row into the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_insert_input",
+ "kind": "ENUM",
+ "name": "kycLevelName_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType",
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_order_by",
+ "description": "Ordering options when selecting data from \"kycLevelName\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_eventStatus",
- "description": "insert data into the table: \"eventStatus\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_pk_columns_input",
+ "description": "primary key columns input for table: kycLevelName",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycLevelName_select_column",
+ "description": "select columns of table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_set_input",
+ "description": "input type for updating data in table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
"type": {
- "kind": "OBJECT",
- "name": "eventStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_stream_cursor_input",
+ "description": "Streaming cursor of the table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_eventStatus_one",
- "description": "insert a single row into the table: \"eventStatus\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_stream_cursor_value_input",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "eventStatus",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycLevelName_update_column",
+ "description": "update columns of table \"kycLevelName\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_follow",
- "description": "insert data into the table: \"follow\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "description": "Statuses of Know Your Customer (KYC) processes.",
+ "fields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus_aggregate",
+ "description": "aggregated selection of \"kycStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "follow_mutation_response",
+ "name": "kycStatus_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_follow_one",
- "description": "insert a single row into the table: \"follow\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_insert_input",
+ "kind": "OBJECT",
+ "name": "kycStatus",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "follow",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus_aggregate_fields",
+ "description": "aggregate fields of \"kycStatus\"",
+ "fields": [
{
- "name": "insert_kyc",
- "description": "insert data into the table: \"kyc\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "objects",
- "description": "the rows to be inserted",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_insert_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "kycStatus_select_column",
+ "ofType": null
}
}
},
@@ -82395,11 +77782,11 @@
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_on_conflict",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -82408,615 +77795,733 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "kyc_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_kycLevelName",
- "description": "insert data into the table: \"kycLevelName\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "kycLevelName_mutation_response",
+ "name": "kycStatus_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_kycLevelName_one",
- "description": "insert a single row into the table: \"kycLevelName\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "kycLevelName",
+ "name": "kycStatus_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"kycStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_kycStatus",
- "description": "insert data into the table: \"kycStatus\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_on_conflict",
+ "name": "kycStatus_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_kycStatus_one",
- "description": "insert a single row into the table: \"kycStatus\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_on_conflict",
+ "name": "kycStatus_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycStatus",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycStatus_constraint",
+ "description": "unique or primary key constraints on table \"kycStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "kycStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "completed",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_kyc_one",
- "description": "insert a single row into the table: \"kyc\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "init",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "onHold",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pending",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "prechecked",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "queued",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"kycStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kyc",
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_lotteryParameters",
- "description": "insert data into the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_on_conflict",
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_mutation_response",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_lotteryParameters_one",
- "description": "insert a single row into the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_lotteryStatus",
- "description": "insert data into the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_on_conflict",
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_insert_input",
+ "description": "input type for inserting data into table \"kycStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kycStatus_mutation_response",
+ "description": "response of any mutation on the table \"kycStatus\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "insert_lotteryStatus_one",
- "description": "insert a single row into the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_insert_input",
+ "kind": "OBJECT",
+ "name": "kycStatus",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_on_conflict",
+ "description": "on_conflict condition type for table \"kycStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_minterTemporaryWallet",
- "description": "insert data into the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_insert_input",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "kycStatus_update_column",
+ "ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_order_by",
+ "description": "Ordering options when selecting data from \"kycStatus\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_minterTemporaryWallet_one",
- "description": "insert a single row into the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_pk_columns_input",
+ "description": "primary key columns input for table: kycStatus",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycStatus_select_column",
+ "description": "select columns of table \"kycStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_set_input",
+ "description": "input type for updating data in table \"kycStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"kycStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kycStatus_update_column",
+ "description": "update columns of table \"kycStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_nftTransfer",
- "description": "insert data into the table: \"nftTransfer\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc_aggregate",
+ "description": "aggregated selection of \"kyc\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "nftTransfer_mutation_response",
+ "name": "kyc_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_nftTransfer_one",
- "description": "insert a single row into the table: \"nftTransfer\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_insert_input",
+ "kind": "OBJECT",
+ "name": "kyc",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "nftTransfer",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc_aggregate_fields",
+ "description": "aggregate fields of \"kyc\"",
+ "fields": [
{
- "name": "insert_order",
- "description": "insert data into the table: \"order\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "objects",
- "description": "the rows to be inserted",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_insert_input",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "kyc_select_column",
+ "ofType": null
}
}
},
@@ -83025,11 +78530,11 @@
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "order_on_conflict",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -83038,2149 +78543,1086 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "order_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_orderStatus",
- "description": "insert data into the table: \"orderStatus\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "orderStatus_mutation_response",
+ "name": "kyc_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_orderStatus_one",
- "description": "insert a single row into the table: \"orderStatus\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "orderStatus",
+ "name": "kyc_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"kyc\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_order_one",
- "description": "insert a single row into the table: \"order\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "order_on_conflict",
+ "name": "kyc_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "order",
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packEventPassNft",
- "description": "insert data into the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_on_conflict",
+ "name": "kyc_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "applicantId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packEventPassNft_one",
- "description": "insert a single row into the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftContract",
- "description": "insert data into the table: \"packNftContract\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftContractEventPass",
- "description": "insert data into the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "levelName",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_enum_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftContractEventPass_one",
- "description": "insert a single row into the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "reviewStatus",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_enum_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftContract_one",
- "description": "insert a single row into the table: \"packNftContract\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContract",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kyc_constraint",
+ "description": "unique or primary key constraints on table \"kyc\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "kyc_externalUserId_key",
+ "description": "unique or primary key constraint on columns \"externalUserId\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftSupply",
- "description": "insert data into the table: \"packNftSupply\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "kyc_pkey",
+ "description": "unique or primary key constraint on columns \"externalUserId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_insert_input",
+ "description": "input type for inserting data into table \"kyc\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
"type": {
- "kind": "OBJECT",
- "name": "packNftSupply_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packNftSupply_one",
- "description": "insert a single row into the table: \"packNftSupply\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
"type": {
- "kind": "OBJECT",
- "name": "packNftSupply",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packOrderSums",
- "description": "insert data into the table: \"packOrderSums\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_packOrderSums_one",
- "description": "insert a single row into the table: \"packOrderSums\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "levelName",
+ "description": "Level of KYC verification, referring to kycLevelName.",
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums",
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_passAmount",
- "description": "insert data into the table: \"passAmount\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "reviewStatus",
+ "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
"type": {
- "kind": "OBJECT",
- "name": "passAmount_mutation_response",
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_passAmount_one",
- "description": "insert a single row into the table: \"passAmount\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
"type": {
- "kind": "OBJECT",
- "name": "passAmount",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "insert_passPricing",
- "description": "insert data into the table: \"passPricing\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "passPricing_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_passPricing_one",
- "description": "insert a single row into the table: \"passPricing\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_pendingOrder",
- "description": "insert data into the table: \"pendingOrder\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_pendingOrder_one",
- "description": "insert a single row into the table: \"pendingOrder\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder",
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_roleAssignment",
- "description": "insert data into the table: \"roleAssignment\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "roleAssignment_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_roleAssignment_one",
- "description": "insert a single row into the table: \"roleAssignment\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "roleAssignment",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_roles",
- "description": "insert data into the table: \"roles\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "roles_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "kyc_mutation_response",
+ "description": "response of any mutation on the table \"kyc\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "insert_roles_one",
- "description": "insert a single row into the table: \"roles\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_insert_input",
+ "kind": "OBJECT",
+ "name": "kyc",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"kyc\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roles",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_insert_input",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_stripeCheckoutSession",
- "description": "insert data into the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_on_conflict",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_on_conflict",
+ "description": "on_conflict condition type for table \"kyc\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "insert_stripeCheckoutSessionType",
- "description": "insert data into the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kyc_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_stripeCheckoutSessionType_one",
- "description": "insert a single row into the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_insert_input",
+ "kind": "ENUM",
+ "name": "kyc_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_order_by",
+ "description": "Ordering options when selecting data from \"kyc\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "applicantId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_stripeCheckoutSession_one",
- "description": "insert a single row into the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_stripeCustomer",
- "description": "insert data into the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer_mutation_response",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_stripeCustomer_one",
- "description": "insert a single row into the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "levelName",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_timezone",
- "description": "insert data into the table: \"timezone\"",
- "args": [
- {
- "name": "objects",
- "description": "the rows to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "reviewStatus",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "timezone_mutation_response",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "insert_timezone_one",
- "description": "insert a single row into the table: \"timezone\"",
- "args": [
- {
- "name": "object",
- "description": "the row to be inserted",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_pk_columns_input",
+ "description": "primary key columns input for table: kyc",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kyc_select_column",
+ "description": "select columns of table \"kyc\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "applicantId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createDate",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "externalUserId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "levelName",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "reviewStatus",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_set_input",
+ "description": "input type for updating data in table \"kyc\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
"type": {
- "kind": "OBJECT",
- "name": "timezone",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishAsset",
- "description": "Publish one asset",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
"type": {
- "kind": "OBJECT",
- "name": "Asset",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishContentSpace",
- "description": "Publish one contentSpace",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishEvent",
- "description": "Publish one event",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "levelName",
+ "description": "Level of KYC verification, referring to kycLevelName.",
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishEventPass",
- "description": "Publish one eventPass",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "reviewStatus",
+ "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishEventPassDelayedRevealed",
- "description": "Publish one eventPassDelayedRevealed",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_stream_cursor_input",
+ "description": "Streaming cursor of the table \"kyc\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_stream_cursor_value_input",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "applicantId",
+ "description": "Unique identifier for the applicant provided by Sumsub.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyAssets",
- "description": "Publish many Asset documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "createDate",
+ "description": "The date and time when the applicant was created in Sumsub. Stored in UTC timestamp.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "levelName",
+ "description": "Level of KYC verification, referring to kycLevelName.",
+ "type": {
+ "kind": "ENUM",
+ "name": "kycLevelName_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "reviewStatus",
+ "description": "Status of the applicant’s review in Sumsub, referring to kycStatus.",
+ "type": {
+ "kind": "ENUM",
+ "name": "kycStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the kyc row changes.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "kyc_update_column",
+ "description": "update columns of table \"kyc\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "applicantId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createDate",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "externalUserId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "levelName",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "reviewStatus",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "description": "The lotteryParameters model is designed to define properties on a lottery, including details like the lotteryId and activityWebhookId. It manages various timestamps and settings related to the lottery, ensuring efficient and accurate management of lottery events.",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyAssetsConnection",
- "description": "Publish many Asset documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "AssetConnection",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
@@ -85188,96 +79630,31 @@
"deprecationReason": null
},
{
- "name": "publishManyContentSpaces",
- "description": "Publish many ContentSpace documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "lotteryId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -85285,181 +79662,114 @@
"deprecationReason": null
},
{
- "name": "publishManyContentSpacesConnection",
- "description": "Publish many ContentSpace documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_aggregate",
+ "description": "aggregated selection of \"lotteryParameters\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "publishManyEventPasses",
- "description": "Publish many EventPass documents",
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_aggregate_fields",
+ "description": "aggregate fields of \"lotteryParameters\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "locales",
- "description": "Document localizations to publish",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -85468,7 +79778,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "Locale",
+ "name": "lotteryParameters_select_column",
"ofType": null
}
}
@@ -85478,72 +79788,24 @@
"deprecationReason": null
},
{
- "name": "publishBase",
- "description": "Whether to publish the base document",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
}
],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -85551,168 +79813,679 @@
"deprecationReason": null
},
{
- "name": "publishManyEventPassesConnection",
- "description": "Publish many EventPass documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"lotteryParameters\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
+ "name": "lotteryParameters_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
"ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamp_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamp_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryParameters_constraint",
+ "description": "unique or primary key constraints on table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "lotteryParameters_lotteryId_key",
+ "description": "unique or primary key constraint on columns \"lotteryId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryParameters_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryParameters_signingKey_key",
+ "description": "unique or primary key constraint on columns \"activityWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_insert_input",
+ "description": "input type for inserting data into table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_mutation_response",
+ "description": "response of any mutation on the table \"lotteryParameters\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventPassConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -85720,2250 +80493,53405 @@
"deprecationReason": null
},
{
- "name": "publishManyEventPassesDelayedRevealed",
- "description": "Publish many EventPassDelayedRevealed documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
}
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_on_conflict",
+ "description": "on_conflict condition type for table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "ENUM",
+ "name": "lotteryParameters_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyEventPassesDelayedRevealedConnection",
- "description": "Publish many EventPassDelayedRevealed documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "lotteryParameters_update_column",
+ "ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_order_by",
+ "description": "Ordering options when selecting data from \"lotteryParameters\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_pk_columns_input",
+ "description": "primary key columns input for table: lotteryParameters",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryParameters_select_column",
+ "description": "select columns of table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_set_input",
+ "description": "input type for updating data in table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_stream_cursor_input",
+ "description": "Streaming cursor of the table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "Optional column\nfor the end date and time for the lottery ticket sales, used when there is a defined sales period for the lottery.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "Optional column for the start date and time for the lottery ticket sales, applicable if the lottery involves a sale.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "The \"timezone\" column contains the timezone identifier for the lottery, ensuring accurate timing for events and sales across different regions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryParameters_update_column",
+ "description": "update columns of table \"lotteryParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleEnd",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "dateSaleStart",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timezone",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "description": "columns and relationships of \"lotteryStatus\"",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_aggregate",
+ "description": "aggregated selection of \"lotteryStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_aggregate_fields",
+ "description": "aggregate fields of \"lotteryStatus\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
{
- "name": "to",
- "description": "Stages to publish documents to",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "lotteryStatus_select_column",
+ "ofType": null
}
}
},
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": "true",
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
- "ofType": null
- }
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"lotteryStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryStatus_constraint",
+ "description": "unique or primary key constraints on table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "lotteryStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "DRAFT",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "PUBLISHED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"lotteryStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_insert_input",
+ "description": "input type for inserting data into table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_mutation_response",
+ "description": "response of any mutation on the table \"lotteryStatus\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_on_conflict",
+ "description": "on_conflict condition type for table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_order_by",
+ "description": "Ordering options when selecting data from \"lotteryStatus\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_pk_columns_input",
+ "description": "primary key columns input for table: lotteryStatus",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryStatus_select_column",
+ "description": "select columns of table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_set_input",
+ "description": "input type for updating data in table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "lotteryStatus_update_column",
+ "description": "update columns of table \"lotteryStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "description": "The loyaltyCardNft model stores NFTs delivered by the loyaltyCardNftContract, each uniquely associated with a loyalty card. These NFTs are soulbound to a specific owner and not transferable, though they can be burned, indicating the end of their lifecycle. The structure allows for the dynamic update of NFT metadata by contract admins, adhering to the loyalty card contract stipulations.",
+ "fields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "args": [
+ {
+ "name": "path",
+ "description": "JSON select path",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftorganizer",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "description": "The loyaltyCardNftContract model is designed to store metadata associated with NFT contracts that act as loyalty cards for organizers. This table captures critical details from the ERC-721 standard, such as the chainId and contractAddress, ensuring accurate tracking and referencing of NFT contracts. It includes organizerId to link each loyalty card contract directly with an organizer, facilitating the management and interaction with NFT-based loyalty programs.",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameter",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_loyaltyCardNftContractorganizer",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_aggregate",
+ "description": "aggregated selection of \"loyaltyCardNftContract\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_aggregate_fields",
+ "description": "aggregate fields of \"loyaltyCardNftContract\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"loyaltyCardNftContract\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_constraint",
+ "description": "unique or primary key constraints on table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "loyaltyCardNftContract_contractAddress_chainId_key",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract_loyaltyCardId_key",
+ "description": "unique or primary key constraint on columns \"loyaltyCardId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_insert_input",
+ "description": "input type for inserting data into table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_mutation_response",
+ "description": "response of any mutation on the table \"loyaltyCardNftContract\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_on_conflict",
+ "description": "on_conflict condition type for table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_order_by",
+ "description": "Ordering options when selecting data from \"loyaltyCardNftContract\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_pk_columns_input",
+ "description": "primary key columns input for table: loyaltyCardNftContract",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_select_column",
+ "description": "select columns of table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_set_input",
+ "description": "input type for updating data in table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_stream_cursor_input",
+ "description": "Streaming cursor of the table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Specifies the particular blockchain or network on which the NFT-based loyalty card resides. Essential for distinguishing between different blockchains in a multi-chain environment.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Represents the unique address of the smart contract that governs the NFT-based loyalty card. It acts as the primary reference point to the loyalty card's existence and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the specific loyalty card model in the Hygraph CMS associated with this contract. Ensuring uniqueness of this field guarantees that each NFT-based loyalty card is uniquely linked to a single loyalty card model in the CMS.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT-based loyalty card. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_update_column",
+ "description": "update columns of table \"loyaltyCardNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_aggregate",
+ "description": "aggregated selection of \"loyaltyCardNft\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_aggregate_fields",
+ "description": "aggregate fields of \"loyaltyCardNft\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_append_input",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"loyaltyCardNft\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "burnedTransferId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_constraint",
+ "description": "unique or primary key constraints on table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "idx_loyaltycardnft_owneraddress_active",
+ "description": "unique or primary key constraint on columns \"ownerAddress\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNft_contractAddress_tokenId_chainId_idx",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"tokenId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNft_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_at_path_input",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_elem_input",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_key_input",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_inc_input",
+ "description": "input type for incrementing numeric columns in table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_insert_input",
+ "description": "input type for inserting data into table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_mutation_response",
+ "description": "response of any mutation on the table \"loyaltyCardNft\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_on_conflict",
+ "description": "on_conflict condition type for table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_order_by",
+ "description": "Ordering options when selecting data from \"loyaltyCardNft\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "burnedTransferId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_pk_columns_input",
+ "description": "primary key columns input for table: loyaltyCardNft",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_prepend_input",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_select_column",
+ "description": "select columns of table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "burnedTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_set_input",
+ "description": "input type for updating data in table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_stream_cursor_input",
+ "description": "Streaming cursor of the table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "burnedTransferId",
+ "description": "If not null, indicates the NFT has been burned, marking its lifecycle end. This field links to the transaction that executed the burn, whether by the NFT owner or a contract admin.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Denotes the specific blockchain or network of the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the loyalty card NFT. This provides a direct link to the NFT's origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Contains any error message related to metadata retrieval, ensuring transparency in the data extraction process.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "A reference to the loyalty card associated with the NFT, linking it directly to the loyalty program within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "The structured metadata parsed from the token URI. This contains a variety of details regarding the loyalty card NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "A unique identifier for the organizer associated with the NFT. This links the loyalty card directly to a specific organizer within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "The address currently holding the loyalty card NFT. Given the soulbound nature, this represents the permanent owner unless the NFT is burned.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The designated URI for the loyalty card NFT's metadata blob, providing a stable reference for data extraction.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_update_column",
+ "description": "update columns of table \"loyaltyCardNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "burnedTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ownerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the loyalty card NFT within its specific collection or contract. This remains constant across various platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "description": "The loyaltyCardParameters model is designed to define properties on a loyalty card, including details like the loyaltyCardId and activityWebhookId. It manages various settings and metadata related to the loyalty card, ensuring efficient and accurate management of loyalty card programs.",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "Represents the current status of the loyalty card, either \"DRAFT\" or \"PUBLISHED\".",
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_aggregate",
+ "description": "aggregated selection of \"loyaltyCardParameters\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_aggregate_fields",
+ "description": "aggregate fields of \"loyaltyCardParameters\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"loyaltyCardParameters\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_constraint",
+ "description": "unique or primary key constraints on table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "loyaltyCardParameters_activityWebhookSigningKey_key",
+ "description": "unique or primary key constraint on columns \"activityWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters_loyaltyCardId_key",
+ "description": "unique or primary key constraint on columns \"loyaltyCardId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters_metadataUpdateWebhookSigningKey_key",
+ "description": "unique or primary key constraint on columns \"metadataUpdateWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_insert_input",
+ "description": "input type for inserting data into table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "Represents the current status of the loyalty card, either \"DRAFT\" or \"PUBLISHED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_mutation_response",
+ "description": "response of any mutation on the table \"loyaltyCardParameters\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_on_conflict",
+ "description": "on_conflict condition type for table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_order_by",
+ "description": "Ordering options when selecting data from \"loyaltyCardParameters\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_pk_columns_input",
+ "description": "primary key columns input for table: loyaltyCardParameters",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_select_column",
+ "description": "select columns of table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_set_input",
+ "description": "input type for updating data in table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "Represents the current status of the loyalty card, either \"DRAFT\" or \"PUBLISHED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_stream_cursor_input",
+ "description": "Streaming cursor of the table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": "The \"activityWebhookId\" column stores the identifier for the Alchemy webhook that tracks NFT transfers related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card activity webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Unique identifier for each loyalty card, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "The \"metadataUpdateWebhookId\" column stores the identifier for the Alchemy webhook that tracks metadata updates related to the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "Unique signing key used for secure operations related to the loyalty card metadata update webhook.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the loyalty card.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "Represents the current status of the loyalty card, either \"DRAFT\" or \"PUBLISHED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_update_column",
+ "description": "update columns of table \"loyaltyCardParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadataUpdateWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "description": "columns and relationships of \"loyaltyCardStatus\"",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_aggregate",
+ "description": "aggregated selection of \"loyaltyCardStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_aggregate_fields",
+ "description": "aggregate fields of \"loyaltyCardStatus\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"loyaltyCardStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_constraint",
+ "description": "unique or primary key constraints on table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "loyaltyCardStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "DRAFT",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "PUBLISHED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"loyaltyCardStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_insert_input",
+ "description": "input type for inserting data into table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_mutation_response",
+ "description": "response of any mutation on the table \"loyaltyCardStatus\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_on_conflict",
+ "description": "on_conflict condition type for table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_order_by",
+ "description": "Ordering options when selecting data from \"loyaltyCardStatus\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_pk_columns_input",
+ "description": "primary key columns input for table: loyaltyCardStatus",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_select_column",
+ "description": "select columns of table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_set_input",
+ "description": "input type for updating data in table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_update_column",
+ "description": "update columns of table \"loyaltyCardStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "description": "Temporary wallet information for minters, including optional links to event passes and packs.",
+ "fields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_aggregate",
+ "description": "aggregated selection of \"minterTemporaryWallet\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_aggregate_fields",
+ "description": "aggregate fields of \"minterTemporaryWallet\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"minterTemporaryWallet\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "address",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_constraint",
+ "description": "unique or primary key constraints on table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "minterTemporaryWallet_pkey",
+ "description": "unique or primary key constraint on columns \"address\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_insert_input",
+ "description": "input type for inserting data into table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_mutation_response",
+ "description": "response of any mutation on the table \"minterTemporaryWallet\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_on_conflict",
+ "description": "on_conflict condition type for table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_order_by",
+ "description": "Ordering options when selecting data from \"minterTemporaryWallet\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "address",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_pk_columns_input",
+ "description": "primary key columns input for table: minterTemporaryWallet",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_select_column",
+ "description": "select columns of table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "address",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_set_input",
+ "description": "input type for updating data in table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_stream_cursor_input",
+ "description": "Streaming cursor of the table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "Identifies the campaign associated with this temporary wallet for minting purposes. This text field corresponds to a campaign in the stampNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The timestamp when the temporary wallet was created.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Optional identifier for an event pass associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "Identifies the loyalty card associated with this temporary wallet for minting purposes. This text field corresponds to a loyalty card in the loyaltyCardNftContract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Optional identifier for a pack associated with this wallet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "The private key for the temporary wallet, necessary for signing transactions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_update_column",
+ "description": "update columns of table \"minterTemporaryWallet\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "address",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "privateKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "mutation_root",
+ "description": "mutation root",
+ "fields": [
+ {
+ "name": "createAsset",
+ "description": "Create one asset",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createContentSpace",
+ "description": "Create one contentSpace",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createEvent",
+ "description": "Create one event",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createEventPass",
+ "description": "Create one eventPass",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createEventPassDelayedRevealed",
+ "description": "Create one eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createLoyaltyCard",
+ "description": "Create one loyaltyCard",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createOrganizer",
+ "description": "Create one organizer",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createPack",
+ "description": "Create one pack",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createScheduledRelease",
+ "description": "Create one scheduledRelease",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteAsset",
+ "description": "Delete one asset from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteContentSpace",
+ "description": "Delete one contentSpace from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteEvent",
+ "description": "Delete one event from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteEventPass",
+ "description": "Delete one eventPass from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteEventPassDelayedRevealed",
+ "description": "Delete one eventPassDelayedRevealed from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteLoyaltyCard",
+ "description": "Delete one loyaltyCard from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyAssets",
+ "description": "Delete many Asset documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyAssetsConnection",
+ "description": "Delete many Asset documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyContentSpaces",
+ "description": "Delete many ContentSpace documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyContentSpacesConnection",
+ "description": "Delete many ContentSpace documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEventPasses",
+ "description": "Delete many EventPass documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEventPassesConnection",
+ "description": "Delete many EventPass documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEventPassesDelayedRevealed",
+ "description": "Delete many EventPassDelayedRevealed documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEventPassesDelayedRevealedConnection",
+ "description": "Delete many EventPassDelayedRevealed documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEvents",
+ "description": "Delete many Event documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyEventsConnection",
+ "description": "Delete many Event documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyLoyaltyCards",
+ "description": "Delete many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyLoyaltyCardsConnection",
+ "description": "Delete many LoyaltyCard documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyOrganizers",
+ "description": "Delete many Organizer documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyOrganizersConnection",
+ "description": "Delete many Organizer documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyPacks",
+ "description": "Delete many Pack documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyPacksConnection",
+ "description": "Delete many Pack documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteOrganizer",
+ "description": "Delete one organizer from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deletePack",
+ "description": "Delete one pack from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteScheduledOperation",
+ "description": "Delete and return scheduled operation",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteScheduledRelease",
+ "description": "Delete one scheduledRelease from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_account",
+ "description": "delete data from the table: \"account\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_account_by_pk",
+ "description": "delete single row from the table: \"account\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_apiKeyStatus",
+ "description": "delete data from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_apiKeyStatus_by_pk",
+ "description": "delete single row from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_apiKeyType",
+ "description": "delete data from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_apiKeyType_by_pk",
+ "description": "delete single row from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "The type of the API key",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_contentSpaceParameters",
+ "description": "delete data from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_contentSpaceParameters_by_pk",
+ "description": "delete single row from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_contentSpaceStatus",
+ "description": "delete data from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_contentSpaceStatus_by_pk",
+ "description": "delete single row from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_currency",
+ "description": "delete data from the table: \"currency\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_currency_by_pk",
+ "description": "delete single row from the table: \"currency\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventParameters",
+ "description": "delete data from the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventParameters_by_pk",
+ "description": "delete single row from the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNft",
+ "description": "delete data from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNftContract",
+ "description": "delete data from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNftContractType",
+ "description": "delete data from the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNftContractType_by_pk",
+ "description": "delete single row from the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNftContract_by_pk",
+ "description": "delete single row from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassNft_by_pk",
+ "description": "delete single row from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassOrderSums",
+ "description": "delete data from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassOrderSums_by_pk",
+ "description": "delete single row from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassType",
+ "description": "delete data from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassType_by_pk",
+ "description": "delete single row from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassValidationType",
+ "description": "delete data from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventPassValidationType_by_pk",
+ "description": "delete single row from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventStatus",
+ "description": "delete data from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_eventStatus_by_pk",
+ "description": "delete single row from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_follow",
+ "description": "delete data from the table: \"follow\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_follow_by_pk",
+ "description": "delete single row from the table: \"follow\"",
+ "args": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kyc",
+ "description": "delete data from the table: \"kyc\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kycLevelName",
+ "description": "delete data from the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kycLevelName_by_pk",
+ "description": "delete single row from the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kycStatus",
+ "description": "delete data from the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kycStatus_by_pk",
+ "description": "delete single row from the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_kyc_by_pk",
+ "description": "delete single row from the table: \"kyc\"",
+ "args": [
+ {
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_lotteryParameters",
+ "description": "delete data from the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_lotteryParameters_by_pk",
+ "description": "delete single row from the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_lotteryStatus",
+ "description": "delete data from the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_lotteryStatus_by_pk",
+ "description": "delete single row from the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardNft",
+ "description": "delete data from the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardNftContract",
+ "description": "delete data from the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardNftContract_by_pk",
+ "description": "delete single row from the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardNft_by_pk",
+ "description": "delete single row from the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardParameters",
+ "description": "delete data from the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardParameters_by_pk",
+ "description": "delete single row from the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardStatus",
+ "description": "delete data from the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_loyaltyCardStatus_by_pk",
+ "description": "delete single row from the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_minterTemporaryWallet",
+ "description": "delete data from the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_minterTemporaryWallet_by_pk",
+ "description": "delete single row from the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftMintPassword",
+ "description": "delete data from the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftMintPassword_by_pk",
+ "description": "delete single row from the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftStatus",
+ "description": "delete data from the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftStatus_by_pk",
+ "description": "delete single row from the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftTransfer",
+ "description": "delete data from the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_nftTransfer_by_pk",
+ "description": "delete single row from the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_order",
+ "description": "delete data from the table: \"order\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_orderStatus",
+ "description": "delete data from the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_orderStatus_by_pk",
+ "description": "delete single row from the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_order_by_pk",
+ "description": "delete single row from the table: \"order\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packEventPassNft",
+ "description": "delete data from the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packEventPassNft_by_pk",
+ "description": "delete single row from the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftContract",
+ "description": "delete data from the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftContractEventPass",
+ "description": "delete data from the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftContractEventPass_by_pk",
+ "description": "delete single row from the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftContract_by_pk",
+ "description": "delete single row from the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftSupply",
+ "description": "delete data from the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packNftSupply_by_pk",
+ "description": "delete single row from the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packOrderSums",
+ "description": "delete data from the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_packOrderSums_by_pk",
+ "description": "delete single row from the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_passAmount",
+ "description": "delete data from the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_passAmount_by_pk",
+ "description": "delete single row from the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_passPricing",
+ "description": "delete data from the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_passPricing_by_pk",
+ "description": "delete single row from the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_pendingOrder",
+ "description": "delete data from the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_pendingOrder_by_pk",
+ "description": "delete single row from the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_publishableApiKey",
+ "description": "delete data from the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_publishableApiKey_by_pk",
+ "description": "delete single row from the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_roleAssignment",
+ "description": "delete data from the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roleAssignment_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_roles",
+ "description": "delete data from the table: \"roles\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_roles_by_pk",
+ "description": "delete single row from the table: \"roles\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_secretApiKey",
+ "description": "delete data from the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_secretApiKey_by_pk",
+ "description": "delete single row from the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyCampaignParameters",
+ "description": "delete data from the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyCampaignParameters_by_pk",
+ "description": "delete single row from the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyCampaignStatus",
+ "description": "delete data from the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyCampaignStatus_by_pk",
+ "description": "delete single row from the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyCustomer",
+ "description": "delete data from the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyDomain",
+ "description": "delete data from the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_shopifyDomain_by_pk",
+ "description": "delete single row from the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNft",
+ "description": "delete data from the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftContract",
+ "description": "delete data from the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftContractType",
+ "description": "delete data from the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftContractType_by_pk",
+ "description": "delete single row from the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftContract_by_pk",
+ "description": "delete single row from the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftSupply",
+ "description": "delete data from the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNftSupply_by_pk",
+ "description": "delete single row from the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stampNft_by_pk",
+ "description": "delete single row from the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCheckoutSession",
+ "description": "delete data from the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCheckoutSessionType",
+ "description": "delete data from the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCheckoutSessionType_by_pk",
+ "description": "delete single row from the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCheckoutSession_by_pk",
+ "description": "delete single row from the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCustomer",
+ "description": "delete data from the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_stripeCustomer_by_pk",
+ "description": "delete single row from the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_timezone",
+ "description": "delete data from the table: \"timezone\"",
+ "args": [
+ {
+ "name": "where",
+ "description": "filter the rows which have to be deleted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete_timezone_by_pk",
+ "description": "delete single row from the table: \"timezone\"",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_account",
+ "description": "insert data into the table: \"account\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_account_one",
+ "description": "insert a single row into the table: \"account\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_apiKeyStatus",
+ "description": "insert data into the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_apiKeyStatus_one",
+ "description": "insert a single row into the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_apiKeyType",
+ "description": "insert data into the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_apiKeyType_one",
+ "description": "insert a single row into the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_contentSpaceParameters",
+ "description": "insert data into the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_contentSpaceParameters_one",
+ "description": "insert a single row into the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_contentSpaceStatus",
+ "description": "insert data into the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_contentSpaceStatus_one",
+ "description": "insert a single row into the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_currency",
+ "description": "insert data into the table: \"currency\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_currency_one",
+ "description": "insert a single row into the table: \"currency\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventParameters",
+ "description": "insert data into the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventParameters_one",
+ "description": "insert a single row into the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNft",
+ "description": "insert data into the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNftContract",
+ "description": "insert data into the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNftContractType",
+ "description": "insert data into the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNftContractType_one",
+ "description": "insert a single row into the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNftContract_one",
+ "description": "insert a single row into the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassNft_one",
+ "description": "insert a single row into the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassOrderSums",
+ "description": "insert data into the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassOrderSums_one",
+ "description": "insert a single row into the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassType",
+ "description": "insert data into the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassType_one",
+ "description": "insert a single row into the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassValidationType",
+ "description": "insert data into the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventPassValidationType_one",
+ "description": "insert a single row into the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventStatus",
+ "description": "insert data into the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_eventStatus_one",
+ "description": "insert a single row into the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_follow",
+ "description": "insert data into the table: \"follow\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_follow_one",
+ "description": "insert a single row into the table: \"follow\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kyc",
+ "description": "insert data into the table: \"kyc\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kycLevelName",
+ "description": "insert data into the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kycLevelName_one",
+ "description": "insert a single row into the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kycStatus",
+ "description": "insert data into the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kycStatus_one",
+ "description": "insert a single row into the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_kyc_one",
+ "description": "insert a single row into the table: \"kyc\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_lotteryParameters",
+ "description": "insert data into the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_lotteryParameters_one",
+ "description": "insert a single row into the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_lotteryStatus",
+ "description": "insert data into the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_lotteryStatus_one",
+ "description": "insert a single row into the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardNft",
+ "description": "insert data into the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardNftContract",
+ "description": "insert data into the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardNftContract_one",
+ "description": "insert a single row into the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardNft_one",
+ "description": "insert a single row into the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardParameters",
+ "description": "insert data into the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardParameters_one",
+ "description": "insert a single row into the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardStatus",
+ "description": "insert data into the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_loyaltyCardStatus_one",
+ "description": "insert a single row into the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_minterTemporaryWallet",
+ "description": "insert data into the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_minterTemporaryWallet_one",
+ "description": "insert a single row into the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftMintPassword",
+ "description": "insert data into the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftMintPassword_one",
+ "description": "insert a single row into the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftStatus",
+ "description": "insert data into the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftStatus_one",
+ "description": "insert a single row into the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftTransfer",
+ "description": "insert data into the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_nftTransfer_one",
+ "description": "insert a single row into the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_order",
+ "description": "insert data into the table: \"order\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_orderStatus",
+ "description": "insert data into the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_orderStatus_one",
+ "description": "insert a single row into the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_order_one",
+ "description": "insert a single row into the table: \"order\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packEventPassNft",
+ "description": "insert data into the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packEventPassNft_one",
+ "description": "insert a single row into the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftContract",
+ "description": "insert data into the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftContractEventPass",
+ "description": "insert data into the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftContractEventPass_one",
+ "description": "insert a single row into the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftContract_one",
+ "description": "insert a single row into the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftSupply",
+ "description": "insert data into the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packNftSupply_one",
+ "description": "insert a single row into the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packOrderSums",
+ "description": "insert data into the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_packOrderSums_one",
+ "description": "insert a single row into the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_passAmount",
+ "description": "insert data into the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_passAmount_one",
+ "description": "insert a single row into the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_passPricing",
+ "description": "insert data into the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_passPricing_one",
+ "description": "insert a single row into the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_pendingOrder",
+ "description": "insert data into the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_pendingOrder_one",
+ "description": "insert a single row into the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_publishableApiKey",
+ "description": "insert data into the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_publishableApiKey_one",
+ "description": "insert a single row into the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_roleAssignment",
+ "description": "insert data into the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roleAssignment_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_roleAssignment_one",
+ "description": "insert a single row into the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roleAssignment",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_roles",
+ "description": "insert data into the table: \"roles\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_roles_one",
+ "description": "insert a single row into the table: \"roles\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_secretApiKey",
+ "description": "insert data into the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_secretApiKey_one",
+ "description": "insert a single row into the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCampaignParameters",
+ "description": "insert data into the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCampaignParameters_one",
+ "description": "insert a single row into the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCampaignStatus",
+ "description": "insert data into the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCampaignStatus_one",
+ "description": "insert a single row into the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCustomer",
+ "description": "insert data into the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyCustomer_one",
+ "description": "insert a single row into the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyDomain",
+ "description": "insert data into the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_shopifyDomain_one",
+ "description": "insert a single row into the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNft",
+ "description": "insert data into the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftContract",
+ "description": "insert data into the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftContractType",
+ "description": "insert data into the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftContractType_one",
+ "description": "insert a single row into the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftContract_one",
+ "description": "insert a single row into the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftSupply",
+ "description": "insert data into the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNftSupply_one",
+ "description": "insert a single row into the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stampNft_one",
+ "description": "insert a single row into the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCheckoutSession",
+ "description": "insert data into the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCheckoutSessionType",
+ "description": "insert data into the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCheckoutSessionType_one",
+ "description": "insert a single row into the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCheckoutSession_one",
+ "description": "insert a single row into the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCustomer",
+ "description": "insert data into the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_stripeCustomer_one",
+ "description": "insert a single row into the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_timezone",
+ "description": "insert data into the table: \"timezone\"",
+ "args": [
+ {
+ "name": "objects",
+ "description": "the rows to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "insert_timezone_one",
+ "description": "insert a single row into the table: \"timezone\"",
+ "args": [
+ {
+ "name": "object",
+ "description": "the row to be inserted",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishAsset",
+ "description": "Publish one asset",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishContentSpace",
+ "description": "Publish one contentSpace",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishEvent",
+ "description": "Publish one event",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishEventPass",
+ "description": "Publish one eventPass",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishEventPassDelayedRevealed",
+ "description": "Publish one eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishLoyaltyCard",
+ "description": "Publish one loyaltyCard",
+ "args": [
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyAssets",
+ "description": "Publish many Asset documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyAssetsConnection",
+ "description": "Publish many Asset documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyContentSpaces",
+ "description": "Publish many ContentSpace documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyContentSpacesConnection",
+ "description": "Publish many ContentSpace documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEventPasses",
+ "description": "Publish many EventPass documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEventPassesConnection",
+ "description": "Publish many EventPass documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEventPassesDelayedRevealed",
+ "description": "Publish many EventPassDelayedRevealed documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEventPassesDelayedRevealedConnection",
+ "description": "Publish many EventPassDelayedRevealed documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEvents",
+ "description": "Publish many Event documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyEventsConnection",
+ "description": "Publish many Event documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyLoyaltyCards",
+ "description": "Publish many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyLoyaltyCardsConnection",
+ "description": "Publish many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyOrganizers",
+ "description": "Publish many Organizer documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyOrganizersConnection",
+ "description": "Publish many Organizer documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyPacks",
+ "description": "Publish many Pack documents",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyPacksConnection",
+ "description": "Publish many Pack documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Document localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is true",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishOrganizer",
+ "description": "Publish one organizer",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishPack",
+ "description": "Publish one pack",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishAsset",
+ "description": "Schedule to publish one asset",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishContentSpace",
+ "description": "Schedule to publish one contentSpace",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishEvent",
+ "description": "Schedule to publish one event",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishEventPass",
+ "description": "Schedule to publish one eventPass",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishEventPassDelayedRevealed",
+ "description": "Schedule to publish one eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishLoyaltyCard",
+ "description": "Schedule to publish one loyaltyCard",
+ "args": [
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishOrganizer",
+ "description": "Schedule to publish one organizer",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishPack",
+ "description": "Schedule to publish one pack",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Optional localizations to publish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishBase",
+ "description": "Whether to publish the base document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishAsset",
+ "description": "Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishContentSpace",
+ "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishEvent",
+ "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishEventPass",
+ "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishEventPassDelayedRevealed",
+ "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishLoyaltyCard",
+ "description": "Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishOrganizer",
+ "description": "Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduleUnpublishPack",
+ "description": "Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishAsset",
+ "description": "Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishContentSpace",
+ "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishEvent",
+ "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishEventPass",
+ "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishEventPassDelayedRevealed",
+ "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishLoyaltyCard",
+ "description": "Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyAssets",
+ "description": "Unpublish many Asset documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyAssetsConnection",
+ "description": "Find many Asset documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyContentSpaces",
+ "description": "Unpublish many ContentSpace documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyContentSpacesConnection",
+ "description": "Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEventPasses",
+ "description": "Unpublish many EventPass documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEventPassesConnection",
+ "description": "Find many EventPass documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEventPassesDelayedRevealed",
+ "description": "Unpublish many EventPassDelayedRevealed documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEventPassesDelayedRevealedConnection",
+ "description": "Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEvents",
+ "description": "Unpublish many Event documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyEventsConnection",
+ "description": "Find many Event documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyLoyaltyCards",
+ "description": "Unpublish many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyLoyaltyCardsConnection",
+ "description": "Find many LoyaltyCard documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyOrganizers",
+ "description": "Unpublish many Organizer documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyOrganizersConnection",
+ "description": "Find many Organizer documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyPacks",
+ "description": "Unpublish many Pack documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyPacksConnection",
+ "description": "Find many Pack documents that match criteria in specified stage and unpublish from target stages",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Locales to unpublish",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Whether to unpublish the base document and default localization",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in draft stage",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishOrganizer",
+ "description": "Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishPack",
+ "description": "Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateAsset",
+ "description": "Update one asset",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateContentSpace",
+ "description": "Update one contentSpace",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateEvent",
+ "description": "Update one event",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateEventPass",
+ "description": "Update one eventPass",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateEventPassDelayedRevealed",
+ "description": "Update one eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateLoyaltyCard",
+ "description": "Update one loyaltyCard",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyAssets",
+ "description": "Update many assets",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyAssetsConnection",
+ "description": "Update many Asset documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyContentSpaces",
+ "description": "Update many contentSpaces",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyContentSpacesConnection",
+ "description": "Update many ContentSpace documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPasses",
+ "description": "Update many eventPasses",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPassesConnection",
+ "description": "Update many EventPass documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPassesDelayedRevealed",
+ "description": "Update many eventPassesDelayedRevealed",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPassesDelayedRevealedConnection",
+ "description": "Update many EventPassDelayedRevealed documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEvents",
+ "description": "Update many events",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventsConnection",
+ "description": "Update many Event documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyLoyaltyCards",
+ "description": "Update many loyaltyCards",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyLoyaltyCardsConnection",
+ "description": "Update many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyOrganizers",
+ "description": "Update many organizers",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyOrganizersConnection",
+ "description": "Update many Organizer documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyPacks",
+ "description": "Update many packs",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyPacksConnection",
+ "description": "Update many Pack documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateOrganizer",
+ "description": "Update one organizer",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatePack",
+ "description": "Update one pack",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateScheduledRelease",
+ "description": "Update one scheduledRelease",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_account",
+ "description": "update data of the table: \"account\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_account_by_pk",
+ "description": "update single row of the table: \"account\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_account_many",
+ "description": "update multiples rows of table: \"account\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "account_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyStatus",
+ "description": "update data of the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyStatus_by_pk",
+ "description": "update single row of the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyStatus_many",
+ "description": "update multiples rows of table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyType",
+ "description": "update data of the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyType_by_pk",
+ "description": "update single row of the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_apiKeyType_many",
+ "description": "update multiples rows of table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceParameters",
+ "description": "update data of the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceParameters_by_pk",
+ "description": "update single row of the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceParameters_many",
+ "description": "update multiples rows of table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceStatus",
+ "description": "update data of the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceStatus_by_pk",
+ "description": "update single row of the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_contentSpaceStatus_many",
+ "description": "update multiples rows of table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_currency",
+ "description": "update data of the table: \"currency\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_currency_by_pk",
+ "description": "update single row of the table: \"currency\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_currency_many",
+ "description": "update multiples rows of table: \"currency\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventParameters",
+ "description": "update data of the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventParameters_by_pk",
+ "description": "update single row of the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventParameters_many",
+ "description": "update multiples rows of table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventParameters_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNft",
+ "description": "update data of the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContract",
+ "description": "update data of the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContractType",
+ "description": "update data of the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContractType_by_pk",
+ "description": "update single row of the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContractType_many",
+ "description": "update multiples rows of table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContract_by_pk",
+ "description": "update single row of the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNftContract_many",
+ "description": "update multiples rows of table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNft_by_pk",
+ "description": "update single row of the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassNft_many",
+ "description": "update multiples rows of table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassOrderSums",
+ "description": "update data of the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassOrderSums_by_pk",
+ "description": "update single row of the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassOrderSums_many",
+ "description": "update multiples rows of table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassType",
+ "description": "update data of the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassType_by_pk",
+ "description": "update single row of the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassType_many",
+ "description": "update multiples rows of table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassValidationType",
+ "description": "update data of the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassValidationType_by_pk",
+ "description": "update single row of the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventPassValidationType_many",
+ "description": "update multiples rows of table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventStatus",
+ "description": "update data of the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventStatus_by_pk",
+ "description": "update single row of the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_eventStatus_many",
+ "description": "update multiples rows of table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_follow",
+ "description": "update data of the table: \"follow\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_follow_by_pk",
+ "description": "update single row of the table: \"follow\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "follow",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_follow_many",
+ "description": "update multiples rows of table: \"follow\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "follow_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kyc",
+ "description": "update data of the table: \"kyc\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycLevelName",
+ "description": "update data of the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycLevelName_by_pk",
+ "description": "update single row of the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycLevelName_many",
+ "description": "update multiples rows of table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycLevelName_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycStatus",
+ "description": "update data of the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycStatus_by_pk",
+ "description": "update single row of the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kycStatus_many",
+ "description": "update multiples rows of table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kyc_by_pk",
+ "description": "update single row of the table: \"kyc\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kyc",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_kyc_many",
+ "description": "update multiples rows of table: \"kyc\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kyc_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryParameters",
+ "description": "update data of the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryParameters_by_pk",
+ "description": "update single row of the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryParameters_many",
+ "description": "update multiples rows of table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryStatus",
+ "description": "update data of the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryStatus_by_pk",
+ "description": "update single row of the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_lotteryStatus_many",
+ "description": "update multiples rows of table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNft",
+ "description": "update data of the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNftContract",
+ "description": "update data of the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNftContract_by_pk",
+ "description": "update single row of the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNftContract_many",
+ "description": "update multiples rows of table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNft_by_pk",
+ "description": "update single row of the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardNft_many",
+ "description": "update multiples rows of table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardParameters",
+ "description": "update data of the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardParameters_by_pk",
+ "description": "update single row of the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardParameters_many",
+ "description": "update multiples rows of table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardStatus",
+ "description": "update data of the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardStatus_by_pk",
+ "description": "update single row of the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_loyaltyCardStatus_many",
+ "description": "update multiples rows of table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_minterTemporaryWallet",
+ "description": "update data of the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_minterTemporaryWallet_by_pk",
+ "description": "update single row of the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_minterTemporaryWallet_many",
+ "description": "update multiples rows of table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftMintPassword",
+ "description": "update data of the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftMintPassword_by_pk",
+ "description": "update single row of the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftMintPassword_many",
+ "description": "update multiples rows of table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftStatus",
+ "description": "update data of the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftStatus_by_pk",
+ "description": "update single row of the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftStatus_many",
+ "description": "update multiples rows of table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftTransfer",
+ "description": "update data of the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftTransfer_by_pk",
+ "description": "update single row of the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_nftTransfer_many",
+ "description": "update multiples rows of table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_order",
+ "description": "update data of the table: \"order\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_orderStatus",
+ "description": "update data of the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_orderStatus_by_pk",
+ "description": "update single row of the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_orderStatus_many",
+ "description": "update multiples rows of table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_order_by_pk",
+ "description": "update single row of the table: \"order\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_order_many",
+ "description": "update multiples rows of table: \"order\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packEventPassNft",
+ "description": "update data of the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packEventPassNft_by_pk",
+ "description": "update single row of the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packEventPassNft_many",
+ "description": "update multiples rows of table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContract",
+ "description": "update data of the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContractEventPass",
+ "description": "update data of the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContractEventPass_by_pk",
+ "description": "update single row of the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContractEventPass_many",
+ "description": "update multiples rows of table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContract_by_pk",
+ "description": "update single row of the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftContract_many",
+ "description": "update multiples rows of table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContract_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftSupply",
+ "description": "update data of the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftSupply_by_pk",
+ "description": "update single row of the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packNftSupply_many",
+ "description": "update multiples rows of table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packOrderSums",
+ "description": "update data of the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packOrderSums_by_pk",
+ "description": "update single row of the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_packOrderSums_many",
+ "description": "update multiples rows of table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passAmount",
+ "description": "update data of the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passAmount_by_pk",
+ "description": "update single row of the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passAmount_many",
+ "description": "update multiples rows of table: \"passAmount\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passAmount_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passPricing",
+ "description": "update data of the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passPricing_by_pk",
+ "description": "update single row of the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_passPricing_many",
+ "description": "update multiples rows of table: \"passPricing\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passPricing_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_pendingOrder",
+ "description": "update data of the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_pendingOrder_by_pk",
+ "description": "update single row of the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_pendingOrder_many",
+ "description": "update multiples rows of table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_publishableApiKey",
+ "description": "update data of the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_publishableApiKey_by_pk",
+ "description": "update single row of the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_publishableApiKey_many",
+ "description": "update multiples rows of table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_roleAssignment",
+ "description": "update data of the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roleAssignment_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_roleAssignment_many",
+ "description": "update multiples rows of table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roleAssignment_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_roles",
+ "description": "update data of the table: \"roles\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_roles_by_pk",
+ "description": "update single row of the table: \"roles\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_roles_many",
+ "description": "update multiples rows of table: \"roles\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roles_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_secretApiKey",
+ "description": "update data of the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_secretApiKey_by_pk",
+ "description": "update single row of the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_secretApiKey_many",
+ "description": "update multiples rows of table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignParameters",
+ "description": "update data of the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignParameters_by_pk",
+ "description": "update single row of the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignParameters_many",
+ "description": "update multiples rows of table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignStatus",
+ "description": "update data of the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignStatus_by_pk",
+ "description": "update single row of the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCampaignStatus_many",
+ "description": "update multiples rows of table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCustomer",
+ "description": "update data of the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyCustomer_many",
+ "description": "update multiples rows of table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyDomain",
+ "description": "update data of the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyDomain_by_pk",
+ "description": "update single row of the table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_shopifyDomain_many",
+ "description": "update multiples rows of table: \"shopifyDomain\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyDomain_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNft",
+ "description": "update data of the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContract",
+ "description": "update data of the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContractType",
+ "description": "update data of the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContractType_by_pk",
+ "description": "update single row of the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContractType_many",
+ "description": "update multiples rows of table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContract_by_pk",
+ "description": "update single row of the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftContract_many",
+ "description": "update multiples rows of table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContract_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftSupply",
+ "description": "update data of the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftSupply_by_pk",
+ "description": "update single row of the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNftSupply_many",
+ "description": "update multiples rows of table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNft_by_pk",
+ "description": "update single row of the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_append_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_at_path_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_elem_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_key_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_prepend_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stampNft_many",
+ "description": "update multiples rows of table: \"stampNft\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNft_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSession",
+ "description": "update data of the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSessionType",
+ "description": "update data of the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSessionType_by_pk",
+ "description": "update single row of the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSessionType_many",
+ "description": "update multiples rows of table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSession_by_pk",
+ "description": "update single row of the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCheckoutSession_many",
+ "description": "update multiples rows of table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCustomer",
+ "description": "update data of the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCustomer_by_pk",
+ "description": "update single row of the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_stripeCustomer_many",
+ "description": "update multiples rows of table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stripeCustomer_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_timezone",
+ "description": "update data of the table: \"timezone\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone_mutation_response",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_timezone_by_pk",
+ "description": "update single row of the table: \"timezone\"",
+ "args": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pk_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_pk_columns_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "timezone",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_timezone_many",
+ "description": "update multiples rows of table: \"timezone\"",
+ "args": [
+ {
+ "name": "updates",
+ "description": "updates to execute, in order",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_updates",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "timezone_mutation_response",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertAsset",
+ "description": "Upsert one asset",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertContentSpace",
+ "description": "Upsert one contentSpace",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertEvent",
+ "description": "Upsert one event",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertEventPass",
+ "description": "Upsert one eventPass",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertEventPassDelayedRevealed",
+ "description": "Upsert one eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertLoyaltyCard",
+ "description": "Upsert one loyaltyCard",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertOrganizer",
+ "description": "Upsert one organizer",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsertPack",
+ "description": "Upsert one pack",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "description": "The nftMintPassword table stores unique passwords that allow for the minting of NFTs on a specific contract. Each password is associated with a contract address, chain ID, and organizer ID, ensuring it can only be used for the intended NFT. Once a password is used to mint an NFT, the minterAddress and tokenId fields are populated, marking the password as consumed and linking it to the minted NFT.",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_aggregate",
+ "description": "aggregated selection of \"nftMintPassword\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_aggregate_fields",
+ "description": "aggregate fields of \"nftMintPassword\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftMintPassword_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"nftMintPassword\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftMintPassword_constraint",
+ "description": "unique or primary key constraints on table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "nftMintPassword_password_contractAddress_chainId_organizerI_key",
+ "description": "unique or primary key constraint on columns \"organizerId\", \"chainId\", \"contractAddress\", \"password\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftMintPassword_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_inc_input",
+ "description": "input type for incrementing numeric columns in table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_insert_input",
+ "description": "input type for inserting data into table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_mutation_response",
+ "description": "response of any mutation on the table \"nftMintPassword\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_on_conflict",
+ "description": "on_conflict condition type for table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftMintPassword_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftMintPassword_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_order_by",
+ "description": "Ordering options when selecting data from \"nftMintPassword\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_pk_columns_input",
+ "description": "primary key columns input for table: nftMintPassword",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftMintPassword_select_column",
+ "description": "select columns of table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_set_input",
+ "description": "input type for updating data in table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_stream_cursor_input",
+ "description": "Streaming cursor of the table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The ID of the blockchain network where the NFT contract is deployed.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the NFT contract that the password is associated with.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "The address of the user who used the password to mint an NFT. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The ID of the organizer that the NFT contract belongs to.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "The unique password that allows for the minting of an NFT. It should be a combination of letters and numbers, typically 6 characters long.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftMintPassword_update_column",
+ "description": "update columns of table \"nftMintPassword\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "minterAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "password",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The ID of the NFT that was minted using this password. If null, the password has not been used yet.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "description": "columns and relationships of \"nftStatus\"",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus_aggregate",
+ "description": "aggregated selection of \"nftStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus_aggregate_fields",
+ "description": "aggregate fields of \"nftStatus\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftStatus_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"nftStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftStatus_constraint",
+ "description": "unique or primary key constraints on table \"nftStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "nftStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "BURNED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "COMPLETED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "CONFIRMED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ERROR",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "HELD_BY_CONTRACT",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "IS_MINTING",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "IS_TRANSFERRING",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "LAZY_MINTED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"nftStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_insert_input",
+ "description": "input type for inserting data into table \"nftStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftStatus_mutation_response",
+ "description": "response of any mutation on the table \"nftStatus\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_on_conflict",
+ "description": "on_conflict condition type for table \"nftStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_order_by",
+ "description": "Ordering options when selecting data from \"nftStatus\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_pk_columns_input",
+ "description": "primary key columns input for table: nftStatus",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftStatus_select_column",
+ "description": "select columns of table \"nftStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_set_input",
+ "description": "input type for updating data in table \"nftStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"nftStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftStatus_update_column",
+ "description": "update columns of table \"nftStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "description": "The nftTransfer model is built to record and chronicle the transfer of NFTs between addresses. This model is crucial in tracing the movement of an NFT, especially when validating that an event pass has reached its intended recipient. Such a system facilitates debugging and reduces the need for excessive querying of our indexer. Entries in this table are populated through two primary avenues: either via an activity webhook responding to real-time NFT transfers or through a regular cron job as a failsafe, ensuring data integrity even if the webhook fails to capture certain events.",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_aggregate",
+ "description": "aggregated selection of \"nftTransfer\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_aggregate_bool_exp",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_aggregate_bool_exp_count",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "arguments",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "filter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "predicate",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_aggregate_fields",
+ "description": "aggregate fields of \"nftTransfer\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_aggregate_order_by",
+ "description": "order by aggregate values of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "avg",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_avg_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_max_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_min_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_sum_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_var_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_var_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_variance_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_avg_order_by",
+ "description": "order by avg() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"nftTransfer\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "blockNumber",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftTransfer_constraint",
+ "description": "unique or primary key constraints on table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "nftTransfer_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nft_transfer_unique_transfer",
+ "description": "unique or primary key constraint on columns \"transactionHash\", \"contractAddress\", \"tokenId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_inc_input",
+ "description": "input type for incrementing numeric columns in table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_insert_input",
+ "description": "input type for inserting data into table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_max_order_by",
+ "description": "order by max() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_min_order_by",
+ "description": "order by min() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_mutation_response",
+ "description": "response of any mutation on the table \"nftTransfer\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_on_conflict",
+ "description": "on_conflict condition type for table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_order_by",
+ "description": "Ordering options when selecting data from \"nftTransfer\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_pk_columns_input",
+ "description": "primary key columns input for table: nftTransfer",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "description": "select columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "blockNumber",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_set_input",
+ "description": "input type for updating data in table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_order_by",
+ "description": "order by stddev() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_pop_order_by",
+ "description": "order by stddev_pop() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stddev_samp_order_by",
+ "description": "order by stddev_samp() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stream_cursor_input",
+ "description": "Streaming cursor of the table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "References the specific stampNft associated with the NFT transfer. This field is populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_sum_order_by",
+ "description": "order by sum() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "nftTransfer_update_column",
+ "description": "update columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "blockNumber",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "fromAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "toAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "transactionHash",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_var_pop_order_by",
+ "description": "order by var_pop() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_var_samp_order_by",
+ "description": "order by var_samp() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "nftTransfer_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_variance_order_by",
+ "description": "order by variance() on columns of table \"nftTransfer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "blockNumber",
+ "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampAmount",
+ "description": "Specifies the quantity of the stamp NFT transferred. This field is only populated if the transfer involves a stamp NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order",
+ "description": "Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account",
+ "fields": [
+ {
+ "name": "account",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "accountId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPass",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pack",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packPricing",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passPricing",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "description": "columns and relationships of \"orderStatus\"",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus_aggregate",
+ "description": "aggregated selection of \"orderStatus\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus_aggregate_fields",
+ "description": "aggregate fields of \"orderStatus\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"orderStatus\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "orderStatus_constraint",
+ "description": "unique or primary key constraints on table \"orderStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "orderStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "CANCELLED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "COMPLETED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "CONFIRMED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ERROR",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "IS_MINTING",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "REFUNDED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "UNAUTHORIZED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"orderStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_insert_input",
+ "description": "input type for inserting data into table \"orderStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "orderStatus_mutation_response",
+ "description": "response of any mutation on the table \"orderStatus\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_on_conflict",
+ "description": "on_conflict condition type for table \"orderStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_order_by",
+ "description": "Ordering options when selecting data from \"orderStatus\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_pk_columns_input",
+ "description": "primary key columns input for table: orderStatus",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "orderStatus_select_column",
+ "description": "select columns of table \"orderStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_set_input",
+ "description": "input type for updating data in table \"orderStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"orderStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "orderStatus_update_column",
+ "description": "update columns of table \"orderStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_aggregate",
+ "description": "aggregated selection of \"order\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_bool_exp",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_bool_exp_count",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "arguments",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "filter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "predicate",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_aggregate_fields",
+ "description": "aggregate fields of \"order\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "order_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_aggregate_order_by",
+ "description": "order by aggregate values of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "avg",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_avg_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_max_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_min_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_sum_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_var_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_var_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_variance_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_avg_order_by",
+ "description": "order by avg() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"order\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "account",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "order_by",
+ "description": "column ordering options",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "asc",
+ "description": "in ascending order, nulls last",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "asc_nulls_first",
+ "description": "in ascending order, nulls first",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "asc_nulls_last",
+ "description": "in ascending order, nulls last",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "desc",
+ "description": "in descending order, nulls first",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "desc_nulls_first",
+ "description": "in descending order, nulls first",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "desc_nulls_last",
+ "description": "in descending order, nulls last",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "order_constraint",
+ "description": "unique or primary key constraints on table \"order\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "order_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_inc_input",
+ "description": "input type for incrementing numeric columns in table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_insert_input",
+ "description": "input type for inserting data into table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "account",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_obj_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_max_order_by",
+ "description": "order by max() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_min_order_by",
+ "description": "order by min() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_mutation_response",
+ "description": "response of any mutation on the table \"order\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_on_conflict",
+ "description": "on_conflict condition type for table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_order_by",
+ "description": "Ordering options when selecting data from \"order\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "account",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_pk_columns_input",
+ "description": "primary key columns input for table: order",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "description": "select columns of table \"order\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "accountId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_set_input",
+ "description": "input type for updating data in table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_order_by",
+ "description": "order by stddev() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_pop_order_by",
+ "description": "order by stddev_pop() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stddev_samp_order_by",
+ "description": "order by stddev_samp() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stream_cursor_input",
+ "description": "Streaming cursor of the table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "orderStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_sum_order_by",
+ "description": "order by sum() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "order_update_column",
+ "description": "update columns of table \"order\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "accountId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_var_pop_order_by",
+ "description": "order by var_pop() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_var_samp_order_by",
+ "description": "order by var_samp() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "order_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "order_variance_order_by",
+ "description": "order by variance() on columns of table \"order\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "description": "Junction table linking pack NFTs to event pass NFTs. Ensures that each event pass NFT is uniquely associated with a pack.",
+ "fields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate",
+ "description": "aggregated selection of \"packEventPassNft\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_bool_exp",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_bool_exp_count",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "arguments",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "filter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "predicate",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate_fields",
+ "description": "aggregate fields of \"packEventPassNft\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_order_by",
+ "description": "order by aggregate values of table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_max_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_min_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"packEventPassNft\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packEventPassNft_constraint",
+ "description": "unique or primary key constraints on table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packEventPassNft_eventPassNftId_key",
+ "description": "unique or primary key constraint on columns \"eventPassNftId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNft_pkey",
+ "description": "unique or primary key constraint on columns \"packNftSupplyId\", \"eventPassNftId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_insert_input",
+ "description": "input type for inserting data into table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_max_order_by",
+ "description": "order by max() on columns of table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_min_order_by",
+ "description": "order by min() on columns of table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_mutation_response",
+ "description": "response of any mutation on the table \"packEventPassNft\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_on_conflict",
+ "description": "on_conflict condition type for table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_order_by",
+ "description": "Ordering options when selecting data from \"packEventPassNft\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_pk_columns_input",
+ "description": "primary key columns input for table: packEventPassNft",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "description": "select columns of table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "eventPassNftId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_set_input",
+ "description": "input type for updating data in table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_stream_cursor_input",
+ "description": "Streaming cursor of the table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packEventPassNft_update_column",
+ "description": "update columns of table \"packEventPassNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "eventPassNftId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "description": "Manages the NFTs associated with each pack, including details like contract address, chain ID, and the contents of each pack.",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "description": "This junction table links each pack NFT contract to various event pass NFT contracts, along with the quantity of each event pass type included in the pack. It facilitates the management of event passes bundled within a specific pack.",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate",
+ "description": "aggregated selection of \"packNftContractEventPass\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_bool_exp",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_bool_exp_count",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "arguments",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "filter",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "predicate",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate_fields",
+ "description": "aggregate fields of \"packNftContractEventPass\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_order_by",
+ "description": "order by aggregate values of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "avg",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_avg_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_max_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_min_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_sum_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_var_pop_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_var_samp_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_variance_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_insert_input",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_avg_order_by",
+ "description": "order by avg() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"packNftContractEventPass\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "amount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_constraint",
+ "description": "unique or primary key constraints on table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packNftContractEventPass_pkey",
+ "description": "unique or primary key constraint on columns \"eventPassId\", \"packNftContractId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_inc_input",
+ "description": "input type for incrementing numeric columns in table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_insert_input",
+ "description": "input type for inserting data into table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_max_order_by",
+ "description": "order by max() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_min_order_by",
+ "description": "order by min() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_mutation_response",
+ "description": "response of any mutation on the table \"packNftContractEventPass\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_on_conflict",
+ "description": "on_conflict condition type for table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_order_by",
+ "description": "Ordering options when selecting data from \"packNftContractEventPass\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_pk_columns_input",
+ "description": "primary key columns input for table: packNftContractEventPass",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "description": "select columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_set_input",
+ "description": "input type for updating data in table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_order_by",
+ "description": "order by stddev() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_pop_order_by",
+ "description": "order by stddev_pop() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stddev_samp_order_by",
+ "description": "order by stddev_samp() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stream_cursor_input",
+ "description": "Streaming cursor of the table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_sum_order_by",
+ "description": "order by sum() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_update_column",
+ "description": "update columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_var_pop_order_by",
+ "description": "order by var_pop() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_var_samp_order_by",
+ "description": "order by var_samp() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_variance_order_by",
+ "description": "order by variance() on columns of table \"packNftContractEventPass\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_aggregate",
+ "description": "aggregated selection of \"packNftContract\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_aggregate_fields",
+ "description": "aggregate fields of \"packNftContract\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftContract_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"packNftContract\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Boolean_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContract_constraint",
+ "description": "unique or primary key constraints on table \"packNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packId_unique",
+ "description": "unique or primary key constraint on columns \"packId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract_contractAddress_chainId_key",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContract_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_inc_input",
+ "description": "input type for incrementing numeric columns in table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_insert_input",
+ "description": "input type for inserting data into table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_arr_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_arr_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_mutation_response",
+ "description": "response of any mutation on the table \"packNftContract\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_on_conflict",
+ "description": "on_conflict condition type for table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContract_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContract_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_order_by",
+ "description": "Ordering options when selecting data from \"packNftContract\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContracts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_aggregate_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNfts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_aggregate_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_pk_columns_input",
+ "description": "primary key columns input for table: packNftContract",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContract_select_column",
+ "description": "select columns of table \"packNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_set_input",
+ "description": "input type for updating data in table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_stream_cursor_input",
+ "description": "Streaming cursor of the table \"packNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "Blockchain network identifier where the NFT contract resides.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "Smart contract address for the NFT collection.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "Identifier for the lottery associated with the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftContract_update_column",
+ "description": "update columns of table \"packNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "isAirdrop",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lotteryId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "rewardsPerPack",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_inc_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftContract_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "rewardsPerPack",
+ "description": "Number of rewards (or items) contained within each pack.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "description": "This table represents the supply details of pack NFTs, tracking the ownership, contents, and metadata associated with each pack.",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts",
+ "description": "An array relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts_aggregate",
+ "description": "An aggregate relationship",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply_aggregate",
+ "description": "aggregated selection of \"packNftSupply\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply_aggregate_fields",
+ "description": "aggregate fields of \"packNftSupply\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftSupply_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"packNftSupply\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftSupply_constraint",
+ "description": "unique or primary key constraints on table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packNftSupply_contractAddress_chainId_packId_key",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"packId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupply_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_insert_input",
+ "description": "input type for inserting data into table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_arr_rel_insert_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packNftSupply_mutation_response",
+ "description": "response of any mutation on the table \"packNftSupply\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_on_conflict",
+ "description": "on_conflict condition type for table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftSupply_constraint",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftSupply_update_column",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_order_by",
+ "description": "Ordering options when selecting data from \"packNftSupply\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNfts_aggregate",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_aggregate_order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_pk_columns_input",
+ "description": "primary key columns input for table: packNftSupply",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftSupply_select_column",
+ "description": "select columns of table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_set_input",
+ "description": "input type for updating data in table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyEvents",
- "description": "Publish many Event documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyEventsConnection",
- "description": "Publish many Event documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyOrganizers",
- "description": "Publish many Organizer documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyOrganizersConnection",
- "description": "Publish many Organizer documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "status",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "OrganizerConnection",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyPacks",
- "description": "Publish many Pack documents",
- "args": [
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishManyPacksConnection",
- "description": "Publish many Pack documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Document localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Stages to publish documents to",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage to be published",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is true",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_stream_cursor_input",
+ "description": "Streaming cursor of the table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "PackConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "publishOrganizer",
- "description": "Publish one organizer",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "publishPack",
- "description": "Publish one pack",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The specific blockchain or network on which the pack NFT exists.",
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishAsset",
- "description": "Schedule to publish one asset",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
"type": {
- "kind": "OBJECT",
- "name": "Asset",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishContentSpace",
- "description": "Schedule to publish one contentSpace",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishEvent",
- "description": "Schedule to publish one event",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the pack NFT.",
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishEventPass",
- "description": "Schedule to publish one eventPass",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "error",
+ "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishEventPassDelayedRevealed",
- "description": "Schedule to publish one eventPassDelayedRevealed",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishOrganizer",
- "description": "Schedule to publish one organizer",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "lastNftTransferId",
+ "description": "The reference to the latest transfer record for this pack NFT.",
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "schedulePublishPack",
- "description": "Schedule to publish one pack",
- "args": [
- {
- "name": "locales",
- "description": "Optional localizations to publish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "publishBase",
- "description": "Whether to publish the base document",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "to",
- "description": "Publishing target stage",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to publish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "organizerId",
+ "description": "The identifier of the organizer associated with this pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "A unique identifier for the pack within the platform.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "The URI pointing to the metadata of the pack NFT.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packNftSupply_update_column",
+ "description": "update columns of table \"packNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums",
+ "description": "Hold the sums for the Pack Orders",
+ "fields": [
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_aggregate",
+ "description": "aggregated selection of \"packOrderSums\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Pack",
+ "name": "packOrderSums_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishAsset",
- "description": "Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
+ "kind": "OBJECT",
+ "name": "packOrderSums",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_aggregate_fields",
+ "description": "aggregate fields of \"packOrderSums\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Asset",
+ "name": "packOrderSums_avg_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishContentSpace",
- "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -87972,7 +133900,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "Locale",
+ "name": "packOrderSums_select_column",
"ofType": null
}
}
@@ -87982,1841 +133910,957 @@
"deprecationReason": null
},
{
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "ContentSpace",
+ "name": "packOrderSums_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishEvent",
- "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Event",
+ "name": "packOrderSums_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishEventPass",
- "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPass",
+ "name": "packOrderSums_stddev_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishEventPassDelayedRevealed",
- "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "name": "packOrderSums_stddev_pop_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishOrganizer",
- "description": "Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Organizer",
+ "name": "packOrderSums_stddev_samp_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduleUnpublishPack",
- "description": "Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseAt",
- "description": "Release at point in time, will create new release containing this operation",
- "type": {
- "kind": "SCALAR",
- "name": "DateTime",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "releaseId",
- "description": "Optionally attach this scheduled operation to an existing release",
- "type": {
- "kind": "SCALAR",
- "name": "String",
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"packOrderSums\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
"ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packOrderSums_constraint",
+ "description": "unique or primary key constraints on table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packOrderSums_pkey",
+ "description": "unique or primary key constraint on columns \"packId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_inc_input",
+ "description": "input type for incrementing numeric columns in table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_insert_input",
+ "description": "input type for inserting data into table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishAsset",
- "description": "Unpublish one asset from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "Asset",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishContentSpace",
- "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_mutation_response",
+ "description": "response of any mutation on the table \"packOrderSums\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "unpublishEvent",
- "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
+ "kind": "OBJECT",
+ "name": "packOrderSums",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_on_conflict",
+ "description": "on_conflict condition type for table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packOrderSums_constraint",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishEventPass",
- "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
+ "kind": "ENUM",
+ "name": "packOrderSums_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_order_by",
+ "description": "Ordering options when selecting data from \"packOrderSums\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishEventPassDelayedRevealed",
- "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_pk_columns_input",
+ "description": "primary key columns input for table: packOrderSums",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packOrderSums_select_column",
+ "description": "select columns of table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_set_input",
+ "description": "input type for updating data in table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyAssets",
- "description": "Unpublish many Asset documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_stream_cursor_input",
+ "description": "Streaming cursor of the table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyAssetsConnection",
- "description": "Find many Asset documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "packOrderSums_update_column",
+ "description": "update columns of table \"packOrderSums\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "totalReserved",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "AssetConnection",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_inc_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyContentSpaces",
- "description": "Unpublish many ContentSpace documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_set_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyContentSpacesConnection",
- "description": "Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "unpublishManyEventPasses",
- "description": "Unpublish many EventPass documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "unpublishManyEventPassesConnection",
- "description": "Find many EventPass documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "packOrderSums_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
{
- "name": "unpublishManyEventPassesDelayedRevealed",
- "description": "Unpublish many EventPassDelayedRevealed documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "totalReserved",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "description": "The passAmount table stores quantity information related to each eventPass or Pack",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
@@ -89824,241 +134868,27 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventPassesDelayedRevealedConnection",
- "description": "Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyEvents",
- "description": "Unpublish many Event documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
@@ -90066,156 +134896,15 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventsConnection",
- "description": "Find many Event documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -90223,84 +134912,39 @@
"deprecationReason": null
},
{
- "name": "unpublishManyOrganizers",
- "description": "Unpublish many Organizer documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -90308,326 +134952,98 @@
"deprecationReason": null
},
{
- "name": "unpublishManyOrganizersConnection",
- "description": "Find many Organizer documents that match criteria in specified stage and unpublish from target stages",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "OrganizerConnection",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_aggregate",
+ "description": "aggregated selection of \"passAmount\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "unpublishManyPacks",
- "description": "Unpublish many Pack documents",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in each stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_aggregate_fields",
+ "description": "aggregate fields of \"passAmount\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "passAmount_avg_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyPacksConnection",
- "description": "Find many Pack documents that match criteria in specified stage and unpublish from target stages",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "from",
- "description": "Stages to unpublish documents from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
+ "name": "columns",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Locales to unpublish",
"type": {
"kind": "LIST",
"name": null,
@@ -90636,7 +135052,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "Locale",
+ "name": "passAmount_select_column",
"ofType": null
}
}
@@ -90646,49 +135062,13 @@
"deprecationReason": null
},
{
- "name": "skip",
+ "name": "distinct",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "Stage to find matching documents in",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": "DRAFT",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
"type": {
"kind": "SCALAR",
"name": "Boolean",
"ofType": null
},
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Identifies documents in draft stage",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
@@ -90698,8 +135078,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "PackConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -90707,1039 +135087,737 @@
"deprecationReason": null
},
{
- "name": "unpublishOrganizer",
- "description": "Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passAmount_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"passAmount\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
"ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passAmount_constraint",
+ "description": "unique or primary key constraints on table \"passAmount\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "idx_passamount_eventpassid",
+ "description": "unique or primary key constraint on columns \"eventPassId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "idx_passamount_packid",
+ "description": "unique or primary key constraint on columns \"packId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_inc_input",
+ "description": "input type for incrementing numeric columns in table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "maxAmount",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_insert_input",
+ "description": "input type for inserting data into table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishPack",
- "description": "Unpublish one pack from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
- "args": [
- {
- "name": "from",
- "description": "Stages to unpublish document from",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[PUBLISHED]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Document to unpublish",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateAsset",
- "description": "Update one asset",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Asset",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateContentSpace",
- "description": "Update one contentSpace",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ContentSpace",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateEvent",
- "description": "Update one event",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateEventPass",
- "description": "Update one eventPass",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateEventPassDelayedRevealed",
- "description": "Update one eventPassDelayedRevealed",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyAssets",
- "description": "Update many assets",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyAssetsConnection",
- "description": "Update many Asset documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "AssetConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyContentSpaces",
- "description": "Update many contentSpaces",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyContentSpacesConnection",
- "description": "Update many ContentSpace documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ContentSpaceConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyEventPasses",
- "description": "Update many eventPasses",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyEventPassesConnection",
- "description": "Update many EventPass documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyEventPassesDelayedRevealed",
- "description": "Update many eventPassesDelayedRevealed",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyEventPassesDelayedRevealedConnection",
- "description": "Update many EventPassDelayedRevealed documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyEvents",
- "description": "Update many events",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_mutation_response",
+ "description": "response of any mutation on the table \"passAmount\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -91747,1431 +135825,1069 @@
"deprecationReason": null
},
{
- "name": "updateManyEventsConnection",
- "description": "Update many Event documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventUpdateManyInput",
+ "kind": "OBJECT",
+ "name": "passAmount",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_insert_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyOrganizers",
- "description": "Update many organizers",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_on_conflict",
+ "description": "on_conflict condition type for table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "ENUM",
+ "name": "passAmount_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyOrganizersConnection",
- "description": "Update many Organizer documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateManyInput",
+ "kind": "ENUM",
+ "name": "passAmount_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "OrganizerConnection",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
+ "description": "Ordering options when selecting data from \"passAmount\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyPacks",
- "description": "Update many packs",
- "args": [
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_pk_columns_input",
+ "description": "primary key columns input for table: passAmount",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "BatchPayload",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passAmount_select_column",
+ "description": "select columns of table \"passAmount\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "created_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateManyPacksConnection",
- "description": "Update many Pack documents",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "data",
- "description": "Updates to document content",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "Documents to apply update on",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackManyWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_set_input",
+ "description": "input type for updating data in table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_stream_cursor_input",
+ "description": "Streaming cursor of the table \"passAmount\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "PackConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateOrganizer",
- "description": "Update one organizer",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "Organizer",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updatePack",
- "description": "Update one pack",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updateScheduledRelease",
- "description": "Update one scheduledRelease",
- "args": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseUpdateInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_account",
- "description": "update data of the table: \"account\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "account_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_account_by_pk",
- "description": "update single row of the table: \"account\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "account",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_account_many",
- "description": "update multiples rows of table: \"account\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "account_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
{
- "name": "update_contentSpaceParameters",
- "description": "update data of the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_mutation_response",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_contentSpaceParameters_by_pk",
- "description": "update single row of the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_contentSpaceParameters_many",
- "description": "update multiples rows of table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passAmount_update_column",
+ "description": "update columns of table \"passAmount\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "update_contentSpaceStatus",
- "description": "update data of the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "maxAmountPerUser",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "timeBeforeDelete",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_inc_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_contentSpaceStatus_by_pk",
- "description": "update single row of the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_contentSpaceStatus_many",
- "description": "update multiples rows of table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "update_currency",
- "description": "update data of the table: \"currency\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "currency_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_currency_by_pk",
- "description": "update single row of the table: \"currency\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "currency",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_currency_many",
- "description": "update multiples rows of table: \"currency\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "currency_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "update_eventParameters",
- "description": "update data of the table: \"eventParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventParameters_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventParameters_by_pk",
- "description": "update single row of the table: \"eventParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventParameters",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventParameters_many",
- "description": "update multiples rows of table: \"eventParameters\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventParameters_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passAmount_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
{
- "name": "update_eventPassNft",
- "description": "update data of the table: \"eventPassNft\"",
- "args": [
- {
- "name": "_append",
- "description": "append existing jsonb value of filtered columns with new jsonb value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_append_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_at_path",
- "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_at_path_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_elem",
- "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_elem_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_key",
- "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_key_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_prepend",
- "description": "prepend existing jsonb value of filtered columns with new jsonb value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_prepend_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassNftContract",
- "description": "update data of the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "maxAmountPerUser",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassNftContractType",
- "description": "update data of the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "timeBeforeDelete",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "description": "The passPricing table stores pricing information for an eventPass or Pack.",
+ "fields": [
{
- "name": "update_eventPassNftContractType_by_pk",
- "description": "update single row of the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "amount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassNftContractType_many",
- "description": "update multiples rows of table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_mutation_response",
+ "kind": "ENUM",
+ "name": "currency_enum",
"ofType": null
}
},
@@ -93179,81 +136895,27 @@
"deprecationReason": null
},
{
- "name": "update_eventPassNftContract_by_pk",
- "description": "update single row of the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassNftContract_many",
- "description": "update multiples rows of table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
@@ -93261,300 +136923,146 @@
"deprecationReason": null
},
{
- "name": "update_eventPassNft_by_pk",
- "description": "update single row of the table: \"eventPassNft\"",
- "args": [
- {
- "name": "_append",
- "description": "append existing jsonb value of filtered columns with new jsonb value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_append_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_at_path",
- "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_at_path_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_elem",
- "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_elem_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_delete_key",
- "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_delete_key_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_prepend",
- "description": "prepend existing jsonb value of filtered columns with new jsonb value",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_prepend_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassNft_many",
- "description": "update multiples rows of table: \"eventPassNft\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_aggregate",
+ "description": "aggregated selection of \"passPricing\"",
+ "fields": [
{
- "name": "update_eventPassOrderSums",
- "description": "update data of the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassOrderSums_mutation_response",
+ "name": "passPricing_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassOrderSums_by_pk",
- "description": "update single row of the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_pk_columns_input",
+ "kind": "OBJECT",
+ "name": "passPricing",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_aggregate_fields",
+ "description": "aggregate fields of \"passPricing\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "passPricing_avg_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassOrderSums_many",
- "description": "update multiples rows of table: \"eventPassOrderSums\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "updates",
- "description": "updates to execute, in order",
+ "name": "columns",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_updates",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "passPricing_select_column",
+ "ofType": null
}
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_mutation_response",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -93562,3320 +137070,1468 @@
"deprecationReason": null
},
{
- "name": "update_eventPassType",
- "description": "update data of the table: \"eventPassType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassType_mutation_response",
+ "name": "passPricing_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassType_by_pk",
- "description": "update single row of the table: \"eventPassType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassType",
+ "name": "passPricing_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassType_many",
- "description": "update multiples rows of table: \"eventPassType\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassType_mutation_response",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "passPricing_stddev_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassValidationType",
- "description": "update data of the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassValidationType_mutation_response",
+ "name": "passPricing_stddev_pop_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassValidationType_by_pk",
- "description": "update single row of the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventPassValidationType",
+ "name": "passPricing_stddev_samp_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventPassValidationType_many",
- "description": "update multiples rows of table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "sum",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_mutation_response",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "passPricing_sum_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventStatus",
- "description": "update data of the table: \"eventStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "var_pop",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventStatus_mutation_response",
+ "name": "passPricing_var_pop_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventStatus_by_pk",
- "description": "update single row of the table: \"eventStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "var_samp",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventStatus",
+ "name": "passPricing_var_samp_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_eventStatus_many",
- "description": "update multiples rows of table: \"eventStatus\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "passPricing_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"passPricing\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventStatus_mutation_response",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_follow",
- "description": "update data of the table: \"follow\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "follow_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_follow_by_pk",
- "description": "update single row of the table: \"follow\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "follow_set_input",
+ "name": "passPricing_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "follow",
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_follow_many",
- "description": "update multiples rows of table: \"follow\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "follow_mutation_response",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kyc",
- "description": "update data of the table: \"kyc\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kyc_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "currency_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kycLevelName",
- "description": "update data of the table: \"kycLevelName\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycLevelName_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kycLevelName_by_pk",
- "description": "update single row of the table: \"kycLevelName\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycLevelName",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passPricing_constraint",
+ "description": "unique or primary key constraints on table \"passPricing\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "update_kycLevelName_many",
- "description": "update multiples rows of table: \"kycLevelName\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "passPricing_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_inc_input",
+ "description": "input type for incrementing numeric columns in table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_insert_input",
+ "description": "input type for inserting data into table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_kycStatus",
- "description": "update data of the table: \"kycStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kycStatus_by_pk",
- "description": "update single row of the table: \"kycStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kycStatus",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kycStatus_many",
- "description": "update multiples rows of table: \"kycStatus\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus_mutation_response",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "currency_enum",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kyc_by_pk",
- "description": "update single row of the table: \"kyc\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kyc",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_kyc_many",
- "description": "update multiples rows of table: \"kyc\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kyc_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_lotteryParameters",
- "description": "update data of the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_lotteryParameters_by_pk",
- "description": "update single row of the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "update_lotteryParameters_many",
- "description": "update multiples rows of table: \"lotteryParameters\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryParameters_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_lotteryStatus",
- "description": "update data of the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_lotteryStatus_by_pk",
- "description": "update single row of the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_lotteryStatus_many",
- "description": "update multiples rows of table: \"lotteryStatus\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryStatus_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_minterTemporaryWallet",
- "description": "update data of the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_minterTemporaryWallet_by_pk",
- "description": "update single row of the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "update_minterTemporaryWallet_many",
- "description": "update multiples rows of table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_nftTransfer",
- "description": "update data of the table: \"nftTransfer\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_nftTransfer_by_pk",
- "description": "update single row of the table: \"nftTransfer\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_nftTransfer_many",
- "description": "update multiples rows of table: \"nftTransfer\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "nftTransfer_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_order",
- "description": "update data of the table: \"order\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "order_mutation_response",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_orderStatus",
- "description": "update data of the table: \"orderStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "orderStatus_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_mutation_response",
+ "description": "response of any mutation on the table \"passPricing\"",
+ "fields": [
{
- "name": "update_orderStatus_by_pk",
- "description": "update single row of the table: \"orderStatus\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "orderStatus",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_orderStatus_many",
- "description": "update multiples rows of table: \"orderStatus\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_updates",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "orderStatus_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_insert_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_order_by_pk",
- "description": "update single row of the table: \"order\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
- "kind": "OBJECT",
- "name": "order",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_on_conflict",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_on_conflict",
+ "description": "on_conflict condition type for table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_order_many",
- "description": "update multiples rows of table: \"order\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "order_mutation_response",
+ "kind": "ENUM",
+ "name": "passPricing_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packEventPassNft",
- "description": "update data of the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "kind": "ENUM",
+ "name": "passPricing_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
+ "description": "Ordering options when selecting data from \"passPricing\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_packEventPassNft_by_pk",
- "description": "update single row of the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packEventPassNft_many",
- "description": "update multiples rows of table: \"packEventPassNft\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packEventPassNft_mutation_response",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftContract",
- "description": "update data of the table: \"packNftContract\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_mutation_response",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftContractEventPass",
- "description": "update data of the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_mutation_response",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftContractEventPass_by_pk",
- "description": "update single row of the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftContractEventPass_many",
- "description": "update multiples rows of table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_mutation_response",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftContract_by_pk",
- "description": "update single row of the table: \"packNftContract\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContract",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_pk_columns_input",
+ "description": "primary key columns input for table: passPricing",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_packNftContract_many",
- "description": "update multiples rows of table: \"packNftContract\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "packNftContract_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passPricing_select_column",
+ "description": "select columns of table \"passPricing\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftSupply",
- "description": "update data of the table: \"packNftSupply\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "packNftSupply_mutation_response",
- "ofType": null
- },
+ "name": "created_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftSupply_by_pk",
- "description": "update single row of the table: \"packNftSupply\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "packNftSupply",
- "ofType": null
- },
+ "name": "currency",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packNftSupply_many",
- "description": "update multiples rows of table: \"packNftSupply\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_set_input",
+ "description": "input type for updating data in table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftSupply_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packOrderSums",
- "description": "update data of the table: \"packOrderSums\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_mutation_response",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packOrderSums_by_pk",
- "description": "update single row of the table: \"packOrderSums\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums",
+ "kind": "ENUM",
+ "name": "currency_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_packOrderSums_many",
- "description": "update multiples rows of table: \"packOrderSums\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packOrderSums_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_passAmount",
- "description": "update data of the table: \"passAmount\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "passAmount_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_passAmount_by_pk",
- "description": "update single row of the table: \"passAmount\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "passAmount",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_passAmount_many",
- "description": "update multiples rows of table: \"passAmount\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "passAmount_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
{
- "name": "update_passPricing",
- "description": "update data of the table: \"passPricing\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "passPricing_mutation_response",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
{
- "name": "update_passPricing_by_pk",
- "description": "update single row of the table: \"passPricing\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
{
- "name": "update_passPricing_many",
- "description": "update multiples rows of table: \"passPricing\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_stream_cursor_input",
+ "description": "Streaming cursor of the table \"passPricing\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "passPricing_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_pendingOrder",
- "description": "update data of the table: \"pendingOrder\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder_mutation_response",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "update_pendingOrder_by_pk",
- "description": "update single row of the table: \"pendingOrder\"",
- "args": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_pendingOrder_many",
- "description": "update multiples rows of table: \"pendingOrder\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "pendingOrder_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_roleAssignment",
- "description": "update data of the table: \"roleAssignment\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currency",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roleAssignment_mutation_response",
+ "kind": "ENUM",
+ "name": "currency_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_roleAssignment_many",
- "description": "update multiples rows of table: \"roleAssignment\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_roles",
- "description": "update data of the table: \"roles\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roles_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_roles_by_pk",
- "description": "update single row of the table: \"roles\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "roles",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_roles_many",
- "description": "update multiples rows of table: \"roles\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roles_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
{
- "name": "update_stripeCheckoutSession",
- "description": "update data of the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_mutation_response",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "passPricing_update_column",
+ "description": "update columns of table \"passPricing\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "update_stripeCheckoutSessionType",
- "description": "update data of the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currency",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_inc_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_stripeCheckoutSessionType_by_pk",
- "description": "update single row of the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_stripeCheckoutSessionType_many",
- "description": "update multiples rows of table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_mutation_response",
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "update_stripeCheckoutSession_by_pk",
- "description": "update single row of the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "update_stripeCheckoutSession_many",
- "description": "update multiples rows of table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_mutation_response",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "passPricing_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "description": "Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account. Those orders are time bound and are automatically destroyed given an amount of time to preserve access to the event for other users.",
+ "fields": [
+ {
+ "name": "account",
+ "description": "An object relationship",
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_stripeCustomer",
- "description": "update data of the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "accountId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
- ],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCustomer_mutation_response",
- "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_stripeCustomer_by_pk",
- "description": "update single row of the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "stripeCustomer",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_stripeCustomer_many",
- "description": "update multiples rows of table: \"stripeCustomer\"",
+ "name": "eventPass",
+ "description": null,
"args": [
{
- "name": "updates",
- "description": "updates to execute, in order",
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -96886,147 +138542,76 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_updates",
+ "kind": "ENUM",
+ "name": "Locale",
"ofType": null
}
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "stripeCustomer_mutation_response",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update_timezone",
- "description": "update data of the table: \"timezone\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_set_input",
- "ofType": null
- },
- "defaultValue": null,
+ "defaultValue": "[en]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "stage",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_bool_exp",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
}
},
- "defaultValue": null,
+ "defaultValue": "PUBLISHED",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
"kind": "OBJECT",
- "name": "timezone_mutation_response",
+ "name": "EventPass",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_timezone_by_pk",
- "description": "update single row of the table: \"timezone\"",
- "args": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_set_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pk_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_pk_columns_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "eventPassId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassNftContract",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "timezone",
+ "name": "eventPassNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_timezone_many",
- "description": "update multiples rows of table: \"timezone\"",
- "args": [
- {
- "name": "updates",
- "description": "updates to execute, in order",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_updates",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "timezone_mutation_response",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
@@ -97034,319 +138619,145 @@
"deprecationReason": null
},
{
- "name": "upsertAsset",
- "description": "Upsert one asset",
+ "name": "pack",
+ "description": null,
"args": [
{
- "name": "upsert",
- "description": null,
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpsertInput",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
+ "defaultValue": "[en]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
+ "name": "stage",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
+ "kind": "ENUM",
+ "name": "Stage",
"ofType": null
}
},
- "defaultValue": null,
+ "defaultValue": "PUBLISHED",
"isDeprecated": false,
"deprecationReason": null
}
],
"type": {
"kind": "OBJECT",
- "name": "Asset",
+ "name": "EventPass",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertContentSpace",
- "description": "Upsert one contentSpace",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packAmount",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "ContentSpace",
+ "name": "passAmount",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertEvent",
- "description": "Upsert one event",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertEventPass",
- "description": "Upsert one eventPass",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packNftContract",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPass",
+ "name": "packNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertEventPassDelayedRevealed",
- "description": "Upsert one eventPassDelayedRevealed",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "packPricing",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "name": "passPricing",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertOrganizer",
- "description": "Upsert one organizer",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "passAmount",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Organizer",
+ "name": "passAmount",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsertPack",
- "description": "Upsert one pack",
- "args": [
- {
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackUpsertInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "passPricing",
+ "description": "An object relationship",
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Pack",
+ "name": "passPricing",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -97356,67 +138767,111 @@
},
{
"kind": "OBJECT",
- "name": "nftTransfer",
- "description": "The nftTransfer model is built to record and chronicle the transfer of NFTs between addresses. This model is crucial in tracing the movement of an NFT, especially when validating that an event pass has reached its intended recipient. Such a system facilitates debugging and reduces the need for excessive querying of our indexer. Entries in this table are populated through two primary avenues: either via an activity webhook responding to real-time NFT transfers or through a regular cron job as a failsafe, ensuring data integrity even if the webhook fails to capture certain events.",
+ "name": "pendingOrder_aggregate",
+ "description": "aggregated selection of \"pendingOrder\"",
"fields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "aggregate",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_aggregate_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "nodes",
+ "description": null,
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_aggregate_fields",
+ "description": "aggregate fields of \"pendingOrder\"",
+ "fields": [
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "avg",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_avg_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "count",
"description": null,
- "args": [],
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "pendingOrder_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "Int",
"ofType": null
}
},
@@ -97424,145 +138879,109 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "max",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "pendingOrder_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "min",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "pendingOrder_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
+ "name": "stddev",
"description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "stddev_pop",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_pop_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "stddev_samp",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_samp_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "sum",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "pendingOrder_sum_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "var_pop",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_var_pop_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "var_samp",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_var_samp_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "variance",
+ "description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_variance_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
@@ -97575,82 +138994,67 @@
},
{
"kind": "OBJECT",
- "name": "nftTransfer_aggregate",
- "description": "aggregated selection of \"nftTransfer\"",
+ "name": "pendingOrder_avg_fields",
+ "description": "aggregate avg on columns",
"fields": [
{
- "name": "aggregate",
+ "name": "quantity",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"pendingOrder\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "nodes",
+ "name": "_and",
"description": null,
- "args": [],
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "nftTransfer",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "count",
+ "name": "_not",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_bool_exp_count",
+ "name": "pendingOrder_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
+ "name": "_or",
"description": null,
"type": {
"kind": "LIST",
@@ -97659,8 +139063,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
"ofType": null
}
}
@@ -97670,11 +139074,11 @@
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "account",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -97682,11 +139086,11 @@
"deprecationReason": null
},
{
- "name": "filter",
+ "name": "accountId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -97694,218 +139098,278 @@
"deprecationReason": null
},
{
- "name": "predicate",
+ "name": "created_at",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_aggregate_fields",
- "description": "aggregate fields of \"nftTransfer\"",
- "fields": [
+ },
{
- "name": "avg",
+ "name": "eventPassId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_avg_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
+ "name": "eventPassNftContract",
"description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
+ "name": "id",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_max_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
+ "name": "packAmount",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_min_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev",
+ "name": "packId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_pop",
+ "name": "packNftContract",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passAmount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "passPricing",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "pendingOrder_constraint",
+ "description": "unique or primary key constraints on table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "idx_pendingorder_eventpassid_accountid",
+ "description": "unique or primary key constraint on columns \"eventPassId\", \"accountId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "idx_pendingorder_packid_accountid",
+ "description": "unique or primary key constraint on columns \"accountId\", \"packId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pendingOrder_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_inc_input",
+ "description": "input type for incrementing numeric columns in table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_insert_input",
+ "description": "input type for inserting data into table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "account",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_pop_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "account_obj_rel_insert_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_samp",
+ "name": "accountId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_samp_fields",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "sum",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_sum_fields",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_pop",
+ "name": "eventPassId",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_var_pop_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_samp",
+ "name": "eventPassNftContract",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_var_samp_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_obj_rel_insert_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
+ "name": "id",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer_variance_fields",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_aggregate_order_by",
- "description": "order by aggregate values of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "avg",
+ "name": "packAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_avg_order_by",
+ "name": "passAmount_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -97913,11 +139377,11 @@
"deprecationReason": null
},
{
- "name": "count",
+ "name": "packId",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -97925,11 +139389,11 @@
"deprecationReason": null
},
{
- "name": "max",
+ "name": "packNftContract",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_max_order_by",
+ "name": "packNftContract_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -97937,11 +139401,11 @@
"deprecationReason": null
},
{
- "name": "min",
+ "name": "packPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_min_order_by",
+ "name": "passPricing_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -97949,11 +139413,11 @@
"deprecationReason": null
},
{
- "name": "stddev",
+ "name": "passAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_order_by",
+ "name": "passAmount_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -97961,11 +139425,11 @@
"deprecationReason": null
},
{
- "name": "stddev_pop",
+ "name": "passPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_pop_order_by",
+ "name": "passPricing_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -97973,287 +139437,314 @@
"deprecationReason": null
},
{
- "name": "stddev_samp",
+ "name": "quantity",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_samp_order_by",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "sum",
+ "name": "accountId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_sum_order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_pop",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_var_pop_order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_samp",
+ "name": "eventPassId",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_var_samp_order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_variance_order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "data",
+ "name": "packId",
"description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_insert_input",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
+ "name": "quantity",
+ "description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_on_conflict",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "nftTransfer_avg_fields",
- "description": "aggregate avg on columns",
+ "name": "pendingOrder_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "accountId",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "created_at",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "eventPassId",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_avg_order_by",
- "description": "order by avg() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "packId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "quantity",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "description": "Boolean expression to filter rows from the table \"nftTransfer\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "pendingOrder_mutation_response",
+ "description": "response of any mutation on the table \"pendingOrder\"",
+ "fields": [
{
- "name": "_and",
- "description": null,
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_on_conflict",
+ "description": "on_conflict condition type for table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "_not",
+ "name": "constraint",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "pendingOrder_constraint",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
+ "name": "update_columns",
"description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "pendingOrder_update_column",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "blockNumber",
+ "name": "where",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "bigint_comparison_exp",
+ "name": "pendingOrder_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_order_by",
+ "description": "Ordering options when selecting data from \"pendingOrder\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "chainId",
+ "name": "account",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "account_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98261,11 +139752,11 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
+ "name": "accountId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98276,8 +139767,8 @@
"name": "created_at",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98285,11 +139776,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
+ "name": "eventPassId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98297,11 +139788,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "eventPassNftContract",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "eventPassNftContract_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98309,11 +139800,11 @@
"deprecationReason": null
},
{
- "name": "fromAddress",
+ "name": "id",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98321,11 +139812,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "packAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
+ "name": "passAmount_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98333,11 +139824,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "packId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98345,11 +139836,11 @@
"deprecationReason": null
},
{
- "name": "packAmount",
+ "name": "packNftContract",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "name": "packNftContract_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98357,11 +139848,11 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "packPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passPricing_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98369,11 +139860,11 @@
"deprecationReason": null
},
{
- "name": "toAddress",
+ "name": "passAmount",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "passAmount_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98381,11 +139872,11 @@
"deprecationReason": null
},
{
- "name": "tokenId",
+ "name": "passPricing",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "bigint_comparison_exp",
+ "name": "passPricing_order_by",
"ofType": null
},
"defaultValue": null,
@@ -98393,11 +139884,11 @@
"deprecationReason": null
},
{
- "name": "transactionHash",
+ "name": "quantity",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -98409,23 +139900,74 @@
"enumValues": null,
"possibleTypes": null
},
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_pk_columns_input",
+ "description": "primary key columns input for table: pendingOrder",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
{
"kind": "ENUM",
- "name": "nftTransfer_constraint",
- "description": "unique or primary key constraints on table \"nftTransfer\"",
+ "name": "pendingOrder_select_column",
+ "description": "select columns of table \"pendingOrder\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "nftTransfer_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
+ "name": "accountId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nft_transfer_unique_transfer",
- "description": "unique or primary key constraint on columns \"transactionHash\", \"contractAddress\", \"tokenId\"",
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
}
@@ -98434,16 +139976,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_inc_input",
- "description": "input type for incrementing numeric columns in table \"nftTransfer\"",
+ "name": "pendingOrder_set_input",
+ "description": "input type for updating data in table \"pendingOrder\"",
"fields": null,
"inputFields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "accountId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -98451,11 +139993,11 @@
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "created_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -98463,34 +140005,23 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "eventPassId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_insert_input",
- "description": "input type for inserting data into table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -98498,8 +140029,8 @@
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "packId",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -98510,35 +140041,142 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "quantity",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
{
- "name": "created_at",
+ "name": "quantity",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "quantity",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_stream_cursor_input",
+ "description": "Streaming cursor of the table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "accountId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -98546,11 +140184,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "created_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -98558,8 +140196,8 @@
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "eventPassId",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -98582,8 +140220,8 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "packId",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -98594,8 +140232,8 @@
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "quantity",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "Int",
@@ -98604,25 +140242,94 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "quantity",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Int",
"ofType": null
},
- "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "pendingOrder_update_column",
+ "description": "update columns of table \"pendingOrder\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "accountId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "quantity",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_inc_input",
"ofType": null
},
"defaultValue": null,
@@ -98630,11 +140337,11 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_set_input",
"ofType": null
},
"defaultValue": null,
@@ -98642,12 +140349,16 @@
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -98660,84 +140371,157 @@
},
{
"kind": "OBJECT",
- "name": "nftTransfer_max_fields",
- "description": "aggregate max on columns",
+ "name": "pendingOrder_var_pop_fields",
+ "description": "aggregate var_pop on columns",
"fields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "quantity",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "quantity",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "pendingOrder_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "quantity",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "description": "The publishableApiKey table stores the publishable API keys used for querying data from the server externally. It includes fields for management and security, such as an allowlist, expiration timestamp, and status.",
+ "fields": [
+ {
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
"name": "created_at",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "id",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -98748,84 +140532,191 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "status",
+ "description": "The current status of the publishable API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "type",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "updated_at",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_aggregate",
+ "description": "aggregated selection of \"publishableApiKey\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "nodes",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_aggregate_fields",
+ "description": "aggregate fields of \"publishableApiKey\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "publishableApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "max",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "OBJECT",
+ "name": "publishableApiKey_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "min",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "publishableApiKey_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -98839,28 +140730,36 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_max_order_by",
- "description": "order by max() on columns of table \"nftTransfer\"",
+ "name": "publishableApiKey_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"publishableApiKey\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -98868,23 +140767,31 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "_or",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "allowlist",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98892,11 +140799,11 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "apiKey",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98904,11 +140811,11 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98916,11 +140823,11 @@
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "expiresAt",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98931,20 +140838,8 @@
"name": "id",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98952,11 +140847,11 @@
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "name",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98964,11 +140859,11 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "organizerId",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98976,11 +140871,11 @@
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "status",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -98988,11 +140883,11 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "type",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -99000,11 +140895,11 @@
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -99017,145 +140912,167 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "nftTransfer_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ "kind": "ENUM",
+ "name": "publishableApiKey_constraint",
+ "description": "unique or primary key constraints on table \"publishableApiKey\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- },
+ "name": "publishableApiKey_apiKey_key",
+ "description": "unique or primary key constraint on columns \"apiKey\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
- "args": [],
+ "name": "publishableApiKey_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_insert_input",
+ "description": "input type for inserting data into table \"publishableApiKey\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
- "args": [],
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
"name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
- "args": [],
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
- "args": [],
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
- "args": [],
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
- "args": [],
+ "name": "status",
+ "description": "The current status of the publishable API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "type",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "updated_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -99166,218 +141083,206 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "created_at",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_min_order_by",
- "description": "order by min() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "publishableApiKey_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "nftTransfer_mutation_response",
- "description": "response of any mutation on the table \"nftTransfer\"",
+ "name": "publishableApiKey_mutation_response",
+ "description": "response of any mutation on the table \"publishableApiKey\"",
"fields": [
{
"name": "affected_rows",
@@ -99410,7 +141315,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "nftTransfer",
+ "name": "publishableApiKey",
"ofType": null
}
}
@@ -99427,47 +141332,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_on_conflict",
- "description": "on_conflict condition type for table \"nftTransfer\"",
+ "name": "publishableApiKey_on_conflict",
+ "description": "on_conflict condition type for table \"publishableApiKey\"",
"fields": null,
"inputFields": [
{
@@ -99478,7 +141344,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "nftTransfer_constraint",
+ "name": "publishableApiKey_constraint",
"ofType": null
}
},
@@ -99500,7 +141366,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "nftTransfer_update_column",
+ "name": "publishableApiKey_update_column",
"ofType": null
}
}
@@ -99515,7 +141381,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "name": "publishableApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -99529,24 +141395,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
- "description": "Ordering options when selecting data from \"nftTransfer\".",
+ "name": "publishableApiKey_order_by",
+ "description": "Ordering options when selecting data from \"publishableApiKey\".",
"fields": null,
"inputFields": [
{
- "name": "blockNumber",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "chainId",
+ "name": "allowlist",
"description": null,
"type": {
"kind": "ENUM",
@@ -99558,7 +141412,7 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
+ "name": "apiKey",
"description": null,
"type": {
"kind": "ENUM",
@@ -99582,31 +141436,7 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "fromAddress",
+ "name": "expiresAt",
"description": null,
"type": {
"kind": "ENUM",
@@ -99630,19 +141460,7 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
+ "name": "name",
"description": null,
"type": {
"kind": "ENUM",
@@ -99654,7 +141472,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -99666,7 +141484,7 @@
"deprecationReason": null
},
{
- "name": "toAddress",
+ "name": "status",
"description": null,
"type": {
"kind": "ENUM",
@@ -99678,7 +141496,7 @@
"deprecationReason": null
},
{
- "name": "tokenId",
+ "name": "type",
"description": null,
"type": {
"kind": "ENUM",
@@ -99690,7 +141508,7 @@
"deprecationReason": null
},
{
- "name": "transactionHash",
+ "name": "updated_at",
"description": null,
"type": {
"kind": "ENUM",
@@ -99708,8 +141526,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_pk_columns_input",
- "description": "primary key columns input for table: nftTransfer",
+ "name": "publishableApiKey_pk_columns_input",
+ "description": "primary key columns input for table: publishableApiKey",
"fields": null,
"inputFields": [
{
@@ -99735,111 +141553,135 @@
},
{
"kind": "ENUM",
- "name": "nftTransfer_select_column",
- "description": "select columns of table \"nftTransfer\"",
+ "name": "publishableApiKey_select_column",
+ "description": "select columns of table \"publishableApiKey\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "blockNumber",
+ "name": "allowlist",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "chainId",
+ "name": "apiKey",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
+ "name": "created_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "expiresAt",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
+ "name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "name",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fromAddress",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "status",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "type",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
+ "name": "updated_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_set_input",
+ "description": "input type for updating data in table \"publishableApiKey\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "packId",
- "description": "column name",
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "column name",
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "column name",
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "column name",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_set_input",
- "description": "input type for updating data in table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "bigint",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -99847,8 +141689,8 @@
"deprecationReason": null
},
{
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99859,8 +141701,8 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99871,11 +141713,23 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "status",
+ "description": "The current status of the publishable API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
"ofType": null
},
"defaultValue": null,
@@ -99883,20 +141737,70 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "updated_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_stream_cursor_input",
+ "description": "Streaming cursor of the table \"publishableApiKey\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the publishable API key, restricting usage to authorized sources.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99907,8 +141811,8 @@
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "apiKey",
+ "description": "The publishable API key used for identification when querying data from the server externally.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99919,11 +141823,11 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "created_at",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -99931,11 +141835,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the publishable API key, specifying the validity period after which the key becomes invalid and cannot be used.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -99943,11 +141847,11 @@
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -99955,8 +141859,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "name",
+ "description": "A user-defined name for the publishable API key, providing a human-readable identifier for the key.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99967,8 +141871,8 @@
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the publishable API key, establishing a link between the key and the organizer it belongs to.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -99979,11 +141883,11 @@
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "status",
+ "description": "The current status of the publishable API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -99991,11 +141895,23 @@
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -100008,1080 +141924,4326 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
+ "kind": "ENUM",
+ "name": "publishableApiKey_update_column",
+ "description": "update columns of table \"publishableApiKey\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
+ "name": "allowlist",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "apiKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "expiresAt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_order_by",
- "description": "order by stddev() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "query_root",
+ "description": null,
+ "fields": [
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "account",
+ "description": "fetch data from the table: \"account\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "account_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "account_aggregate",
+ "description": "fetch aggregated fields from the table: \"account\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "account_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "account_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "account_by_pk",
+ "description": "fetch data from the table: \"account\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "account",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "apiKeyStatus",
+ "description": "fetch data from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
+ "name": "apiKeyStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "apiKeyStatus_by_pk",
+ "description": "fetch data from the table: \"apiKeyStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "apiKeyType",
+ "description": "fetch data from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_pop_order_by",
- "description": "order by stddev_pop() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "apiKeyType_aggregate",
+ "description": "fetch aggregated fields from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyType_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "apiKeyType_by_pk",
+ "description": "fetch data from the table: \"apiKeyType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "The type of the API key",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "apiKeyType",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "asset",
+ "description": "Retrieve a single asset",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "Asset",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
+ "name": "assetVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "assets",
+ "description": "Retrieve multiple assets",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "AssetOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "assetsConnection",
+ "description": "Retrieve multiple assets using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "AssetOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stddev_samp_order_by",
- "description": "order by stddev_samp() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "contentSpace",
+ "description": "Retrieve a single contentSpace",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "ContentSpace",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "contentSpaceParameters",
+ "description": "fetch data from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stream_cursor_input",
- "description": "Streaming cursor of the table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "contentSpaceParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stream_cursor_value_input",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "chainId",
- "description": "Indicates the specific blockchain or network where the NFT resides. Useful in a multi-chain environment to distinguish between various chains.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Identifies the smart contract associated with the NFT. This provides a direct link to the NFTs origin and behavior on the blockchain.",
+ "name": "contentSpaceParameters_by_pk",
+ "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "contentSpaceStatus",
+ "description": "fetch data from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "Refers to the associated event ID for which the NFT was transferred. Ties the NFT transfer to a particular event in the platform.",
+ "name": "contentSpaceStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Denotes the specific Event Pass associated with the NFT. Helps in tracking the lifecycle of a particular event pass.",
+ "name": "contentSpaceStatus_by_pk",
+ "description": "fetch data from the table: \"contentSpaceStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "fromAddress",
- "description": "Denotes the source address from which the NFT was transferred. Essential to trace the sender in the NFTs movement.",
+ "name": "contentSpaceVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "contentSpaces",
+ "description": "Retrieve multiple contentSpaces",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ContentSpaceOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifies the organizer who facilitated the event linked to the NFT transfer. Aids in associating NFT movements with specific organizers.",
+ "name": "contentSpacesConnection",
+ "description": "Retrieve multiple contentSpaces using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ContentSpaceOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "currency",
+ "description": "fetch data from the table: \"currency\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Identifies the specific pack associated with the NFT. This field is only populated if the NFT is part of a pack.",
+ "name": "currency_aggregate",
+ "description": "fetch aggregated fields from the table: \"currency\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "toAddress",
- "description": "Specifies the destination address receiving the NFT. Critical for determining the current holder of the NFT.",
+ "name": "currency_by_pk",
+ "description": "fetch data from the table: \"currency\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "currency",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "entities",
+ "description": "Fetches an object given its ID",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales to query for",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "The where parameters to query components",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EntityWhereInput",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "Represents the unique hash of the transaction in which the NFT was transferred. Ensures traceability and verification on the blockchain.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
+ "name": "event",
+ "description": "Retrieve a single event",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "bigint",
+ "kind": "OBJECT",
+ "name": "Event",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "eventParameters",
+ "description": "fetch data from the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_sum_order_by",
- "description": "order by sum() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "eventParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventParameters_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "eventParameters_by_pk",
+ "description": "fetch data from the table: \"eventParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "eventPass",
+ "description": "Retrieve a single eventPass",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "EventPass",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "nftTransfer_update_column",
- "description": "update columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "blockNumber",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "fromAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "toAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenId",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "transactionHash",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
+ "name": "eventPassDelayedRevealed",
+ "description": "Retrieve a single eventPassDelayedRevealed",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_inc_input",
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "eventPassDelayedRevealedVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_set_input",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "eventPassNft",
+ "description": "fetch data from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "eventPassNftContract",
+ "description": "fetch data from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "eventPassNftContractType",
+ "description": "fetch data from the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_var_pop_order_by",
- "description": "order by var_pop() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "eventPassNftContractType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "eventPassNftContractType_by_pk",
+ "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
- {
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
+ "name": "eventPassNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "eventPassNftContract_by_pk",
+ "description": "fetch data from the table: \"eventPassNftContract\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "eventPassNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_var_samp_order_by",
- "description": "order by var_samp() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "eventPassNft_by_pk",
+ "description": "fetch data from the table: \"eventPassNft\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventPassNft",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "eventPassOrderSums",
+ "description": "fetch data from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "eventPassOrderSums_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "nftTransfer_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
- "args": [],
+ "name": "eventPassOrderSums_by_pk",
+ "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns",
+ "args": [
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
- "args": [],
+ "name": "eventPassType",
+ "description": "fetch data from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
- "args": [],
+ "name": "eventPassType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassType_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_variance_order_by",
- "description": "order by variance() on columns of table \"nftTransfer\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "blockNumber",
- "description": "The specific block on the blockchain where this transfer was recorded. Allows for pinpointing the exact point of transfer in the blockchain history.",
+ "name": "eventPassType_by_pk",
+ "description": "fetch data from the table: \"eventPassType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventPassType",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": "Specifies the number of NFTs transferred in the transaction. This field is only populated if the NFT is part of a pack.",
+ "name": "eventPassValidationType",
+ "description": "fetch data from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenId",
- "description": "The unique identifier for the NFT within its associated smart contract. Maintains a constant reference to the NFT across platforms.",
+ "name": "eventPassValidationType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order",
- "description": "Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account",
- "fields": [
+ },
{
- "name": "account",
- "description": "An object relationship",
- "args": [],
+ "name": "eventPassValidationType_by_pk",
+ "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "account",
+ "name": "eventPassValidationType",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "accountId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "name": "eventPassVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "eventPasses",
+ "description": "Retrieve multiple eventPasses",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventPassOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPass",
- "description": null,
+ "name": "eventPassesConnection",
+ "description": "Retrieve multiple eventPasses using the Relay connection interface",
"args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "locales",
"description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
@@ -101106,6 +146268,30 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventPassOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "stage",
"description": null,
@@ -101121,50 +146307,26 @@
"defaultValue": "PUBLISHED",
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
- "type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "EventPassConnection",
"ofType": null
}
},
@@ -101172,12 +146334,60 @@
"deprecationReason": null
},
{
- "name": "pack",
- "description": null,
+ "name": "eventPassesDelayedRevealed",
+ "description": "Retrieve multiple eventPassesDelayedRevealed",
"args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -101199,6 +146409,30 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventPassDelayedRevealedOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "stage",
"description": null,
@@ -101214,114 +146448,175 @@
"defaultValue": "PUBLISHED",
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
- "type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContract",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
- "args": [],
+ "name": "eventPassesDelayedRevealedConnection",
+ "description": "Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventPassDelayedRevealedOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
"ofType": null
}
},
@@ -101329,87 +146624,386 @@
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
- "args": [],
+ "name": "eventStatus",
+ "description": "fetch data from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
+ "name": "eventStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "eventStatus_aggregate",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus",
- "description": "columns and relationships of \"orderStatus\"",
- "fields": [
+ },
{
- "name": "value",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "eventStatus_by_pk",
+ "description": "fetch data from the table: \"eventStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus_aggregate",
- "description": "aggregated selection of \"orderStatus\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "eventVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "orderStatus_aggregate_fields",
+ "name": "DocumentVersion",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "events",
+ "description": "Retrieve multiple events",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -101421,7 +147015,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "orderStatus",
+ "name": "Event",
"ofType": null
}
}
@@ -101429,48 +147023,129 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus_aggregate_fields",
- "description": "aggregate fields of \"orderStatus\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "eventsConnection",
+ "description": "Retrieve multiple events using the Relay connection interface",
"args": [
{
- "name": "columns",
+ "name": "after",
"description": null,
"type": {
- "kind": "LIST",
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "orderStatus_select_column",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
}
}
},
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventOrderByInput",
+ "ofType": null
+ },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "distinct",
+ "name": "skip",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -101482,8 +147157,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "EventConnection",
"ofType": null
}
},
@@ -101491,361 +147166,86 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "orderStatus_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "orderStatus_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "description": "Boolean expression to filter rows from the table \"orderStatus\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
+ "name": "follow",
+ "description": "fetch data from the table: \"follow\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "follow_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "orderStatus_constraint",
- "description": "unique or primary key constraints on table \"orderStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "orderStatus_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "orderStatus_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "CANCELLED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "COMPLETED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "CONFIRMED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ERROR",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "IS_MINTING",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "REFUNDED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "UNAUTHORIZED",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"orderStatus_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_eq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_in",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_is_null",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_neq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_nin",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_insert_input",
- "description": "input type for inserting data into table \"orderStatus\"",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "value",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "value",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "orderStatus_mutation_response",
- "description": "response of any mutation on the table \"orderStatus\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -101857,7 +147257,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "orderStatus",
+ "name": "follow",
"ofType": null
}
}
@@ -101865,305 +147265,226 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_on_conflict",
- "description": "on_conflict condition type for table \"orderStatus\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_constraint",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
+ "name": "follow_aggregate",
+ "description": "fetch aggregated fields from the table: \"follow\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "orderStatus_update_column",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "follow_select_column",
+ "ofType": null
+ }
}
- }
- }
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_order_by",
- "description": "Ordering options when selecting data from \"orderStatus\".",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_pk_columns_input",
- "description": "primary key columns input for table: orderStatus",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "orderStatus_select_column",
- "description": "select columns of table \"orderStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_set_input",
- "description": "input type for updating data in table \"orderStatus\"",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_stream_cursor_input",
- "description": "Streaming cursor of the table \"orderStatus\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_stream_cursor_value_input",
+ "kind": "OBJECT",
+ "name": "follow_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "orderStatus_update_column",
- "description": "update columns of table \"orderStatus\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_set_input",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
+ "name": "follow_by_pk",
+ "description": "fetch data from the table: \"follow\" using primary key columns",
+ "args": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_aggregate",
- "description": "aggregated selection of \"order\"",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
+ ],
"type": {
"kind": "OBJECT",
- "name": "order_aggregate_fields",
+ "name": "follow",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "kyc",
+ "description": "fetch data from the table: \"kyc\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kyc_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -102175,7 +147496,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "order",
+ "name": "kyc",
"ofType": null
}
}
@@ -102183,131 +147504,115 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_bool_exp_count",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "order_select_column",
+ "name": "kycLevelName",
+ "description": "fetch data from the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "filter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "predicate",
- "description": null,
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_aggregate_fields",
- "description": "aggregate fields of \"order\"",
- "fields": [
- {
- "name": "avg",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_avg_fields",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
- "description": null,
+ "name": "kycLevelName_aggregate",
+ "description": "fetch aggregated fields from the table: \"kycLevelName\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -102316,7 +147621,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "order_select_column",
+ "name": "kycLevelName_select_column",
"ofType": null
}
}
@@ -102326,11 +147631,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -102342,8 +147691,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "kycLevelName_aggregate",
"ofType": null
}
},
@@ -102351,271 +147700,115 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "order_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
+ "name": "kycLevelName_by_pk",
+ "description": "fetch data from the table: \"kycLevelName\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "order_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_aggregate_order_by",
- "description": "order by aggregate values of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "avg",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_avg_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_max_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_min_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_pop_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_samp_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_sum_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_var_pop_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_var_samp_order_by",
+ "name": "kycLevelName",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_variance_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
+ "name": "kycStatus",
+ "description": "fetch data from the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -102626,1078 +147819,4271 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_insert_input",
+ "kind": "OBJECT",
+ "name": "kycStatus",
"ofType": null
}
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_avg_order_by",
- "description": "order by avg() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "description": "Boolean expression to filter rows from the table \"order\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
+ "name": "kycStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
"kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
+ "name": "kycStatus_bool_exp",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "kycStatus_aggregate",
+ "ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "account",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContract",
- "description": null,
+ "name": "kycStatus_by_pk",
+ "description": "fetch data from the table: \"kycStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "kind": "OBJECT",
+ "name": "kycStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packPricing",
- "description": null,
+ "name": "kyc_aggregate",
+ "description": "fetch aggregated fields from the table: \"kyc\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kyc_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kyc_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
- "description": null,
+ "name": "kyc_by_pk",
+ "description": "fetch data from the table: \"kyc\" using primary key columns",
+ "args": [
+ {
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "kind": "OBJECT",
+ "name": "kyc",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
- "description": null,
+ "name": "lotteryParameters",
+ "description": "fetch data from the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "lotteryParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"lotteryParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryParameters_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "lotteryParameters_by_pk",
+ "description": "fetch data from the table: \"lotteryParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_enum_comparison_exp",
+ "kind": "OBJECT",
+ "name": "lotteryParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "lotteryStatus",
+ "description": "fetch data from the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "lotteryStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"lotteryStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "lotteryStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "lotteryStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "lotteryStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "order_by",
- "description": "column ordering options",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "asc",
- "description": "in ascending order, nulls last",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "asc_nulls_first",
- "description": "in ascending order, nulls first",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "asc_nulls_last",
- "description": "in ascending order, nulls last",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "desc",
- "description": "in descending order, nulls first",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "desc_nulls_first",
- "description": "in descending order, nulls first",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "desc_nulls_last",
- "description": "in descending order, nulls last",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "order_constraint",
- "description": "unique or primary key constraints on table \"order\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "order_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_inc_input",
- "description": "input type for incrementing numeric columns in table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_insert_input",
- "description": "input type for inserting data into table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "account",
- "description": null,
+ "name": "lotteryStatus_by_pk",
+ "description": "fetch data from the table: \"lotteryStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "account_obj_rel_insert_input",
+ "kind": "OBJECT",
+ "name": "lotteryStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "accountId",
- "description": null,
+ "name": "loyaltyCard",
+ "description": "Retrieve a single loyaltyCard",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "loyaltyCardNft",
+ "description": "fetch data from the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "loyaltyCardNftContract",
+ "description": "fetch data from the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": null,
+ "name": "loyaltyCardNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "loyaltyCardNftContract_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardNftContract\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packAmount",
- "description": null,
+ "name": "loyaltyCardNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "loyaltyCardNft_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardNft\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "loyaltyCardNft",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContract",
- "description": null,
+ "name": "loyaltyCardParameters",
+ "description": "fetch data from the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packPricing",
- "description": null,
+ "name": "loyaltyCardParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
- "description": null,
+ "name": "loyaltyCardParameters_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
- "description": null,
+ "name": "loyaltyCardStatus",
+ "description": "fetch data from the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "loyaltyCardStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "loyaltyCardStatus_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
+ "kind": "OBJECT",
+ "name": "loyaltyCardStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "loyaltyCardVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "loyaltyCards",
+ "description": "Retrieve multiple loyaltyCards",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "accountId",
- "description": null,
- "args": [],
+ "name": "loyaltyCardsConnection",
+ "description": "Retrieve multiple loyaltyCards using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "minterTemporaryWallet",
+ "description": "fetch data from the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
- "args": [],
+ "name": "minterTemporaryWallet_aggregate",
+ "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "minterTemporaryWallet_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "minterTemporaryWallet_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "minterTemporaryWallet_by_pk",
+ "description": "fetch data from the table: \"minterTemporaryWallet\" using primary key columns",
+ "args": [
+ {
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "minterTemporaryWallet",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "args": [],
+ "name": "nftMintPassword",
+ "description": "fetch data from the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftMintPassword_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
- "args": [],
+ "name": "nftMintPassword_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftMintPassword\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftMintPassword_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftMintPassword_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftMintPassword_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
- "args": [],
+ "name": "nftMintPassword_by_pk",
+ "description": "fetch data from the table: \"nftMintPassword\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "nftMintPassword",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_max_order_by",
- "description": "order by max() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
+ "name": "nftStatus",
+ "description": "fetch data from the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftStatus",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "nftStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "nftStatus_by_pk",
+ "description": "fetch data from the table: \"nftStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "nftStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "nftTransfer",
+ "description": "fetch data from the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "nftTransfer_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftTransfer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "nftTransfer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftTransfer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "nftTransfer_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "nftTransfer_by_pk",
+ "description": "fetch data from the table: \"nftTransfer\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "nftTransfer",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "node",
+ "description": "Fetches an object given its ID",
+ "args": [
+ {
+ "name": "id",
+ "description": "The ID of an object",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Node` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INTERFACE",
+ "name": "Node",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "accountId",
- "description": null,
- "args": [],
+ "name": "order",
+ "description": "fetch data from the table: \"order\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
+ "name": "orderStatus",
+ "description": "fetch data from the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
- "args": [],
+ "name": "orderStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"orderStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "orderStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "orderStatus_by_pk",
+ "description": "fetch data from the table: \"orderStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "orderStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "args": [],
+ "name": "order_aggregate",
+ "description": "fetch aggregated fields from the table: \"order\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "order_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "order_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "order_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
- "args": [],
+ "name": "order_by_pk",
+ "description": "fetch data from the table: \"order\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "order",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
- "args": [],
+ "name": "organizer",
+ "description": "Retrieve a single organizer",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "Organizer",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_min_order_by",
- "description": "order by min() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
+ "name": "organizerVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "organizers",
+ "description": "Retrieve multiple organizers",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "OrganizerOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "organizersConnection",
+ "description": "Retrieve multiple organizers using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "OrganizerOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "OrganizerConnection",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "pack",
+ "description": "Retrieve a single pack",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "Pack",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "packEventPassNft",
+ "description": "fetch data from the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "packEventPassNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packEventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "packEventPassNft_by_pk",
+ "description": "fetch data from the table: \"packEventPassNft\" using primary key columns",
+ "args": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "packNftContract",
+ "description": "fetch data from the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_mutation_response",
- "description": "response of any mutation on the table \"order\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "name": "packNftContractEventPass",
+ "description": "fetch data from the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -103709,7 +152095,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "order",
+ "name": "packNftContractEventPass",
"ofType": null
}
}
@@ -103717,1150 +152103,2005 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_on_conflict",
- "description": "on_conflict condition type for table \"order\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "packNftContractEventPass_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContractEventPass_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "order_constraint",
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
+ "name": "packNftContractEventPass_by_pk",
+ "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns",
+ "args": [
+ {
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "order_update_column",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_order_by",
- "description": "Ordering options when selecting data from \"order\".",
- "fields": null,
- "inputFields": [
- {
- "name": "account",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCheckoutSessionId",
- "description": null,
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_pk_columns_input",
- "description": "primary key columns input for table: order",
- "fields": null,
- "inputFields": [
- {
- "name": "id",
- "description": null,
+ "name": "packNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "packNftContract_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "order_select_column",
- "description": "select columns of table \"order\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCheckoutSessionId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_set_input",
- "description": "input type for updating data in table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "packNftContract_by_pk",
+ "description": "fetch data from the table: \"packNftContract\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "packNftContract",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_order_by",
- "description": "order by stddev() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_pop_order_by",
- "description": "order by stddev_pop() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_stddev_samp_order_by",
- "description": "order by stddev_samp() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_stream_cursor_input",
- "description": "Streaming cursor of the table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "packNftSupply",
+ "description": "fetch data from the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftSupply_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_stream_cursor_value_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftSupply",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
+ "name": "packNftSupply_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftSupply\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftSupply_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftSupply_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
+ "name": "packNftSupply_by_pk",
+ "description": "fetch data from the table: \"packNftSupply\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "packNftSupply",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "packOrderSums",
+ "description": "fetch data from the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packOrderSums",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "packOrderSums_aggregate",
+ "description": "fetch aggregated fields from the table: \"packOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packOrderSums_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "packOrderSums_by_pk",
+ "description": "fetch data from the table: \"packOrderSums\" using primary key columns",
+ "args": [
+ {
+ "name": "packId",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "packOrderSums",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "packVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "status",
- "description": null,
+ "name": "packs",
+ "description": "Retrieve multiple packs",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "PackOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "orderStatus_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": null,
+ "name": "packsConnection",
+ "description": "Retrieve multiple packs using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "PackOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "PackWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PackConnection",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "passAmount",
+ "description": "fetch data from the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "passAmount_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passAmount",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
+ },
{
- "name": "quantity",
- "description": null,
- "args": [],
+ "name": "passAmount_aggregate",
+ "description": "fetch aggregated fields from the table: \"passAmount\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "passAmount_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passAmount_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passAmount_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_sum_order_by",
- "description": "order by sum() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "quantity",
- "description": null,
+ "name": "passAmount_by_pk",
+ "description": "fetch data from the table: \"passAmount\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "passAmount",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "order_update_column",
- "description": "update columns of table \"order\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "status",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionId",
- "description": "column name",
+ "name": "passPricing",
+ "description": "fetch data from the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "passPricing_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passPricing",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
+ "name": "passPricing_aggregate",
+ "description": "fetch aggregated fields from the table: \"passPricing\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "passPricing_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "passPricing_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "order_inc_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "passPricing_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "passPricing_by_pk",
+ "description": "fetch data from the table: \"passPricing\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "order_set_input",
+ "kind": "OBJECT",
+ "name": "passPricing",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "pendingOrder",
+ "description": "fetch data from the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "pendingOrder_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_var_pop_order_by",
- "description": "order by var_pop() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_var_samp_order_by",
- "description": "order by var_samp() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "order_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ },
{
- "name": "quantity",
- "description": null,
- "args": [],
+ "name": "pendingOrder_aggregate",
+ "description": "fetch aggregated fields from the table: \"pendingOrder\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "pendingOrder_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "pendingOrder_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "order_variance_order_by",
- "description": "order by variance() on columns of table \"order\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "quantity",
- "description": null,
+ "name": "pendingOrder_by_pk",
+ "description": "fetch data from the table: \"pendingOrder\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "pendingOrder",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft",
- "description": "Junction table linking pack NFTs to event pass NFTs. Ensures that each event pass NFT is uniquely associated with a pack.",
- "fields": [
+ },
{
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "args": [],
+ "name": "publishableApiKey",
+ "description": "fetch data from the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "publishableApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "publishableApiKey",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "args": [],
+ "name": "publishableApiKey_aggregate",
+ "description": "fetch aggregated fields from the table: \"publishableApiKey\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "publishableApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "publishableApiKey_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "publishableApiKey_aggregate",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft_aggregate",
- "description": "aggregated selection of \"packEventPassNft\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "publishableApiKey_by_pk",
+ "description": "fetch data from the table: \"publishableApiKey\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packEventPassNft_aggregate_fields",
+ "name": "publishableApiKey",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "roleAssignment",
+ "description": "fetch data from the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roleAssignment_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -104872,7 +154113,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packEventPassNft",
+ "name": "roleAssignment",
"ofType": null
}
}
@@ -104880,119 +154121,252 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_bool_exp_count",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
- "description": null,
+ "name": "roleAssignment_aggregate",
+ "description": "fetch aggregated fields from the table: \"roleAssignment\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roleAssignment_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "roleAssignment_aggregate",
+ "ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "filter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "predicate",
- "description": null,
+ "name": "roles",
+ "description": "fetch data from the table: \"roles\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roles",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft_aggregate_fields",
- "description": "aggregate fields of \"packEventPassNft\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "roles_aggregate",
+ "description": "fetch aggregated fields from the table: \"roles\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
"type": {
"kind": "LIST",
"name": null,
@@ -105000,8 +154374,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
+ "kind": "INPUT_OBJECT",
+ "name": "roles_order_by",
"ofType": null
}
}
@@ -105011,11 +154385,11 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "where",
+ "description": "filter the rows returned",
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -105027,8 +154401,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "roles_aggregate",
"ofType": null
}
},
@@ -105036,91 +154410,232 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "roles_by_pk",
+ "description": "fetch data from the table: \"roles\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packEventPassNft_max_fields",
+ "name": "roles",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "args": [],
+ "name": "scheduledOperation",
+ "description": "Retrieve a single scheduledOperation",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packEventPassNft_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_order_by",
- "description": "order by aggregate values of table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_max_order_by",
+ "name": "ScheduledOperation",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_min_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
+ "name": "scheduledOperations",
+ "description": "Retrieve multiple scheduledOperations",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -105131,334 +154646,510 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_insert_input",
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
"ofType": null
}
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "description": "Boolean expression to filter rows from the table \"packEventPassNft\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
+ "name": "scheduledOperationsConnection",
+ "description": "Retrieve multiple scheduledOperations using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledOperationOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "ScheduledOperationConnection",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
- "description": null,
+ "name": "scheduledRelease",
+ "description": "Retrieve a single scheduledRelease",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "scheduledReleases",
+ "description": "Retrieve multiple scheduledReleases",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledReleaseOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packEventPassNft_constraint",
- "description": "unique or primary key constraints on table \"packEventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "packEventPassNft_eventPassNftId_key",
- "description": "unique or primary key constraint on columns \"eventPassNftId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packEventPassNft_pkey",
- "description": "unique or primary key constraint on columns \"packNftSupplyId\", \"eventPassNftId\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_insert_input",
- "description": "input type for inserting data into table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_max_order_by",
- "description": "order by max() on columns of table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_min_order_by",
- "description": "order by min() on columns of table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packEventPassNft_mutation_response",
- "description": "response of any mutation on the table \"packEventPassNft\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "scheduledReleasesConnection",
+ "description": "Retrieve multiple scheduledReleases using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ScheduledReleaseOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledReleaseWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "ScheduledReleaseConnection",
"ofType": null
}
},
@@ -105466,9 +155157,86 @@
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ "name": "secretApiKey",
+ "description": "fetch data from the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "secretApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -105480,7 +155248,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packEventPassNft",
+ "name": "secretApiKey",
"ofType": null
}
}
@@ -105488,395 +155256,763 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_on_conflict",
- "description": "on_conflict condition type for table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "secretApiKey_aggregate",
+ "description": "fetch aggregated fields from the table: \"secretApiKey\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "secretApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_constraint",
+ "kind": "OBJECT",
+ "name": "secretApiKey_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
+ "name": "secretApiKey_by_pk",
+ "description": "fetch data from the table: \"secretApiKey\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_update_column",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
- "description": "Ordering options when selecting data from \"packEventPassNft\".",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": null,
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "secretApiKey",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_pk_columns_input",
- "description": "primary key columns input for table: packEventPassNft",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
+ "name": "shopifyCampaignParameters",
+ "description": "fetch data from the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
+ "name": "shopifyCampaignParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "description": "select columns of table \"packEventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "eventPassNftId",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_set_input",
- "description": "input type for updating data in table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
+ "name": "shopifyCampaignParameters_by_pk",
+ "description": "fetch data from the table: \"shopifyCampaignParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_stream_cursor_input",
- "description": "Streaming cursor of the table \"packEventPassNft\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "shopifyCampaignStatus",
+ "description": "fetch data from the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_stream_cursor_value_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
+ "name": "shopifyCampaignStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCampaignStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packEventPassNft_update_column",
- "description": "update columns of table \"packEventPassNft\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "eventPassNftId",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "shopifyCampaignStatus_by_pk",
+ "description": "fetch data from the table: \"shopifyCampaignStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_set_input",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
+ "name": "shopifyCustomer",
+ "description": "fetch data from the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCustomer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract",
- "description": "Manages the NFTs associated with each pack, including details like contract address, chain ID, and the contents of each pack.",
- "fields": [
- {
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCustomer",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "shopifyCustomer_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCustomer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCustomer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCustomer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "shopifyCustomer_aggregate",
"ofType": null
}
},
@@ -105884,8 +156020,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts",
- "description": "An array relationship",
+ "name": "shopifyDomain",
+ "description": "fetch data from the table: \"shopifyDomain\"",
"args": [
{
"name": "distinct_on",
@@ -105898,7 +156034,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "name": "shopifyDomain_select_column",
"ofType": null
}
}
@@ -105942,7 +156078,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
+ "name": "shopifyDomain_order_by",
"ofType": null
}
}
@@ -105956,7 +156092,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -105975,7 +156111,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "name": "shopifyDomain",
"ofType": null
}
}
@@ -105985,8 +156121,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts_aggregate",
- "description": "An aggregate relationship",
+ "name": "shopifyDomain_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyDomain\"",
"args": [
{
"name": "distinct_on",
@@ -105999,7 +156135,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "name": "shopifyDomain_select_column",
"ofType": null
}
}
@@ -106043,7 +156179,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
+ "name": "shopifyDomain_order_by",
"ofType": null
}
}
@@ -106057,7 +156193,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -106070,7 +156206,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate",
+ "name": "shopifyDomain_aggregate",
"ofType": null
}
},
@@ -106078,8 +156214,37 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts",
- "description": "An array relationship",
+ "name": "shopifyDomain_by_pk",
+ "description": "fetch data from the table: \"shopifyDomain\" using primary key columns",
+ "args": [
+ {
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "shopifyDomain",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNft",
+ "description": "fetch data from the table: \"stampNft\"",
"args": [
{
"name": "distinct_on",
@@ -106092,7 +156257,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "stampNft_select_column",
"ofType": null
}
}
@@ -106136,7 +156301,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "stampNft_order_by",
"ofType": null
}
}
@@ -106150,7 +156315,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "stampNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -106169,7 +156334,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "stampNft",
"ofType": null
}
}
@@ -106179,8 +156344,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts_aggregate",
- "description": "An aggregate relationship",
+ "name": "stampNftContract",
+ "description": "fetch data from the table: \"stampNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -106193,7 +156358,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "stampNftContract_select_column",
"ofType": null
}
}
@@ -106237,7 +156402,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "stampNftContract_order_by",
"ofType": null
}
}
@@ -106251,7 +156416,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "stampNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -106263,40 +156428,210 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "args": [],
+ "name": "stampNftContractType",
+ "description": "fetch data from the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
- "args": [],
+ "name": "stampNftContractType_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "OBJECT",
+ "name": "stampNftContractType_aggregate",
"ofType": null
}
},
@@ -106304,31 +156639,121 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "stampNftContractType_by_pk",
+ "description": "fetch data from the table: \"stampNftContractType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
- "args": [],
+ "name": "stampNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "stampNftContract_aggregate",
"ofType": null
}
},
@@ -106336,74 +156761,238 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "stampNftContract_by_pk",
+ "description": "fetch data from the table: \"stampNftContract\" using primary key columns",
+ "args": [
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
+ "name": "stampNftSupply",
+ "description": "fetch data from the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftSupply_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "name": "stampNftSupply_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftSupply\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftSupply_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
- "description": "This junction table links each pack NFT contract to various event pass NFT contracts, along with the quantity of each event pass type included in the pack. It facilitates the management of event passes bundled within a specific pack.",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "stampNftSupply_aggregate",
"ofType": null
}
},
@@ -106411,64 +157000,237 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "stampNftSupply_by_pk",
+ "description": "fetch data from the table: \"stampNftSupply\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "args": [],
+ "name": "stampNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "stampNft_aggregate",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate",
- "description": "aggregated selection of \"packNftContractEventPass\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "stampNft_by_pk",
+ "description": "fetch data from the table: \"stampNft\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate_fields",
+ "name": "stampNft",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "stripeCheckoutSession",
+ "description": "fetch data from the table: \"stripeCheckoutSession\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -106480,7 +157242,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "name": "stripeCheckoutSession",
"ofType": null
}
}
@@ -106488,131 +157250,237 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_bool_exp_count",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
+ },
{
- "name": "arguments",
- "description": null,
+ "name": "stripeCheckoutSessionType",
+ "description": "fetch data from the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCheckoutSessionType_aggregate",
+ "description": "fetch aggregated fields from the table: \"stripeCheckoutSessionType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "filter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "predicate",
- "description": null,
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate_fields",
- "description": "aggregate fields of \"packNftContractEventPass\"",
- "fields": [
+ },
{
- "name": "avg",
- "description": null,
- "args": [],
+ "name": "stripeCheckoutSessionType_by_pk",
+ "description": "fetch data from the table: \"stripeCheckoutSessionType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packNftContractEventPass_avg_fields",
+ "name": "stripeCheckoutSessionType",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
- "description": null,
+ "name": "stripeCheckoutSession_aggregate",
+ "description": "fetch aggregated fields from the table: \"stripeCheckoutSession\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -106621,7 +157489,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "name": "stripeCheckoutSession_select_column",
"ofType": null
}
}
@@ -106631,11 +157499,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -106647,8 +157559,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_aggregate",
"ofType": null
}
},
@@ -106656,271 +157568,115 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
+ "name": "stripeCheckoutSession_by_pk",
+ "description": "fetch data from the table: \"stripeCheckoutSession\" using primary key columns",
+ "args": [
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "packNftContractEventPass_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_order_by",
- "description": "order by aggregate values of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "avg",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_avg_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_max_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_min_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_pop_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_samp_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_sum_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_var_pop_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_var_samp_order_by",
+ "name": "stripeCheckoutSession",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_variance_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
+ "name": "stripeCustomer",
+ "description": "fetch data from the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCustomer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -106931,469 +157687,103 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_insert_input",
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
"ofType": null
}
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_avg_order_by",
- "description": "order by avg() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "description": "Boolean expression to filter rows from the table \"packNftContractEventPass\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "stripeCustomer_aggregate",
+ "description": "fetch aggregated fields from the table: \"stripeCustomer\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCustomer_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "amount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packNftContractEventPass_constraint",
- "description": "unique or primary key constraints on table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "packNftContractEventPass_pkey",
- "description": "unique or primary key constraint on columns \"eventPassId\", \"packNftContractId\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_inc_input",
- "description": "input type for incrementing numeric columns in table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_insert_input",
- "description": "input type for inserting data into table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_max_order_by",
- "description": "order by max() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_min_order_by",
- "description": "order by min() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_mutation_response",
- "description": "response of any mutation on the table \"packNftContractEventPass\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "stripeCustomer_aggregate",
"ofType": null
}
},
@@ -107401,60 +157791,115 @@
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
+ "name": "stripeCustomer_by_pk",
+ "description": "fetch data from the table: \"stripeCustomer\" using primary key columns",
+ "args": [
+ {
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_on_conflict",
- "description": "on_conflict condition type for table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
+ ],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftContractEventPass_constraint",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
+ "ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "timezone",
+ "description": "fetch data from the table: \"timezone\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "timezone_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -107465,260 +157910,494 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packNftContractEventPass_update_column",
+ "kind": "OBJECT",
+ "name": "timezone",
"ofType": null
}
}
}
},
- "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
- "description": "Ordering options when selecting data from \"packNftContractEventPass\".",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": null,
+ "name": "timezone_aggregate",
+ "description": "fetch aggregated fields from the table: \"timezone\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "timezone_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timezone_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "timezone_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "timezone_by_pk",
+ "description": "fetch data from the table: \"timezone\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "timezone",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractId",
- "description": null,
+ "name": "user",
+ "description": "Retrieve a single user",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "User",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_pk_columns_input",
- "description": "primary key columns input for table: packNftContractEventPass",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "name": "users",
+ "description": "Retrieve multiple users",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "UserOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "name": "usersConnection",
+ "description": "Retrieve multiple users using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "UserOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "OBJECT",
+ "name": "UserConnection",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
- "description": "select columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "amount",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_set_input",
- "description": "input type for updating data in table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_order_by",
- "description": "order by stddev() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
}
@@ -107728,300 +158407,204 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_pop_order_by",
- "description": "order by stddev_pop() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "packNftContractEventPass_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
+ "name": "roleAssignment",
+ "description": "Table to assign roles to accounts, allowing a many-to-many relationship. Each account can have multiple roles and each role can be assigned to multiple accounts. This is part of the RBAC system integration.",
"fields": [
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "accountId",
+ "description": null,
"args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stddev_samp_order_by",
- "description": "order by stddev_samp() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stream_cursor_input",
- "description": "Streaming cursor of the table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stream_cursor_value_input",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
+ "name": "eventId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "id",
+ "description": null,
"args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_sum_order_by",
- "description": "order by sum() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packNftContractEventPass_update_column",
- "description": "update columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "amount",
- "description": "column name",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "column name",
+ "name": "invitedById",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
+ "name": "inviter",
+ "description": "An object relationship",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_inc_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_set_input",
+ "kind": "OBJECT",
+ "name": "Organizer",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "organizerId",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
+ },
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "role",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_enum",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -108033,41 +158616,42 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_var_pop_order_by",
- "description": "order by var_pop() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
+ "kind": "OBJECT",
+ "name": "roleAssignment_aggregate",
+ "description": "aggregated selection of \"roleAssignment\"",
+ "fields": [
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "aggregate",
+ "description": null,
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "roleAssignment_aggregate_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
+ },
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "nodes",
+ "description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roleAssignment",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -108080,16 +158664,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_var_samp_order_by",
- "description": "order by var_samp() on columns of table \"packNftContractEventPass\"",
+ "name": "roleAssignment_aggregate_bool_exp",
+ "description": null,
"fields": null,
"inputFields": [
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "count",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_aggregate_bool_exp_count",
"ofType": null
},
"defaultValue": null,
@@ -108102,115 +158686,81 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "packNftContractEventPass_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_aggregate_bool_exp_count",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
- "args": [],
+ "name": "arguments",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roleAssignment_select_column",
+ "ofType": null
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_variance_order_by",
- "description": "order by variance() on columns of table \"packNftContractEventPass\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "amount",
- "description": "The quantity of this specific event pass NFT included in the pack. Indicates how many of this type of event pass are bundled in the associated pack NFT contract.",
+ "name": "distinct",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_aggregate",
- "description": "aggregated selection of \"packNftContract\"",
- "fields": [
+ },
{
- "name": "aggregate",
+ "name": "filter",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_aggregate_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
+ "name": "predicate",
"description": null,
- "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftContract",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "packNftContract_aggregate_fields",
- "description": "aggregate fields of \"packNftContract\"",
+ "name": "roleAssignment_aggregate_fields",
+ "description": "aggregate fields of \"roleAssignment\"",
"fields": [
- {
- "name": "avg",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract_avg_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "count",
"description": null,
@@ -108226,7 +158776,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContract_select_column",
+ "name": "roleAssignment_select_column",
"ofType": null
}
}
@@ -108266,7 +158816,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "packNftContract_max_fields",
+ "name": "roleAssignment_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -108278,129 +158828,116 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "packNftContract_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_pop_fields",
+ "name": "roleAssignment_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_aggregate_order_by",
+ "description": "order by aggregate values of table \"roleAssignment\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "stddev_samp",
+ "name": "count",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_samp_fields",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "sum",
+ "name": "max",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_sum_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_max_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_pop",
+ "name": "min",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_var_pop_fields",
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_min_order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_arr_rel_insert_input",
+ "description": "input type for inserting array relation for remote table \"roleAssignment\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "var_samp",
+ "name": "data",
"description": null,
- "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packNftContract_var_samp_fields",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_insert_input",
+ "ofType": null
+ }
+ }
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
+ "name": "on_conflict",
+ "description": "upsert condition",
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_on_conflict",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "description": "Boolean expression to filter rows from the table \"packNftContract\". All fields are combined with a logical 'AND'.",
+ "name": "roleAssignment_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"roleAssignment\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -108414,7 +158951,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
}
}
@@ -108428,7 +158965,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -108446,7 +158983,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
}
}
@@ -108456,23 +158993,11 @@
"deprecationReason": null
},
{
- "name": "chainId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
+ "name": "accountId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -108492,47 +159017,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContracts_aggregate",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNfts_aggregate",
+ "name": "eventId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_bool_exp",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -108552,11 +159041,11 @@
"deprecationReason": null
},
{
- "name": "isAirdrop",
+ "name": "invitedById",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -108564,11 +159053,11 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "inviter",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "account_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -108588,35 +159077,11 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "rewardsPerPack",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "role",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "name": "roles_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -108630,27 +159095,15 @@
},
{
"kind": "ENUM",
- "name": "packNftContract_constraint",
- "description": "unique or primary key constraints on table \"packNftContract\"",
+ "name": "roleAssignment_constraint",
+ "description": "unique or primary key constraints on table \"roleAssignment\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "packId_unique",
- "description": "unique or primary key constraint on columns \"packId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContract_contractAddress_chainId_key",
- "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContract_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
+ "name": "unique_role_assignment",
+ "description": "unique or primary key constraint on columns \"organizerId\", \"accountId\", \"role\", \"eventId\"",
"isDeprecated": false,
"deprecationReason": null
}
@@ -108659,39 +159112,28 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_inc_input",
- "description": "input type for incrementing numeric columns in table \"packNftContract\"",
+ "name": "roleAssignment_insert_input",
+ "description": "input type for inserting data into table \"roleAssignment\"",
"fields": null,
"inputFields": [
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
+ "name": "accountId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_insert_input",
- "description": "input type for inserting data into table \"packNftContract\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
+ "name": "created_at",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -108699,8 +159141,8 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
+ "name": "eventId",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -108711,11 +159153,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -108723,11 +159165,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContracts",
+ "name": "invitedById",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_arr_rel_insert_input",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -108735,11 +159177,11 @@
"deprecationReason": null
},
{
- "name": "eventPassNfts",
+ "name": "inviter",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_arr_rel_insert_input",
+ "name": "account_obj_rel_insert_input",
"ofType": null
},
"defaultValue": null,
@@ -108747,11 +159189,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
+ "name": "organizerId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -108759,324 +159201,358 @@
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "name": "role",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "ENUM",
+ "name": "roles_enum",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "roleAssignment_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "accountId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
+ "name": "eventId",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
+ "name": "invitedById",
+ "description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "organizerId",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
+ "inputFields": null,
+ "interfaces": [],
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "packNftContract_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_max_order_by",
+ "description": "order by max() on columns of table \"roleAssignment\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
- "args": [],
+ "name": "accountId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
- "args": [],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "eventId",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "args": [],
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
- "args": [],
+ "name": "invitedById",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
- "args": [],
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "roleAssignment_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "name": "accountId",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
+ "name": "created_at",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "eventId",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
+ "name": "id",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
+ "name": "invitedById",
+ "description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "organizerId",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_min_order_by",
+ "description": "order by min() on columns of table \"roleAssignment\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "args": [],
+ "name": "accountId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
- "args": [],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
- "args": [],
+ "name": "eventId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
- "args": [],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
+ "name": "invitedById",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "organizerId",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "packNftContract_mutation_response",
- "description": "response of any mutation on the table \"packNftContract\"",
+ "name": "roleAssignment_mutation_response",
+ "description": "response of any mutation on the table \"roleAssignment\"",
"fields": [
{
"name": "affected_rows",
@@ -109109,7 +159585,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContract",
+ "name": "roleAssignment",
"ofType": null
}
}
@@ -109126,47 +159602,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"packNftContract\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_on_conflict",
- "description": "on_conflict condition type for table \"packNftContract\"",
+ "name": "roleAssignment_on_conflict",
+ "description": "on_conflict condition type for table \"roleAssignment\"",
"fields": null,
"inputFields": [
{
@@ -109177,7 +159614,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContract_constraint",
+ "name": "roleAssignment_constraint",
"ofType": null
}
},
@@ -109198,94 +159635,46 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "packNftContract_update_column",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
- "description": "Ordering options when selecting data from \"packNftContract\".",
- "fields": null,
- "inputFields": [
- {
- "name": "chainId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "ENUM",
+ "name": "roleAssignment_update_column",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContracts_aggregate",
+ "name": "where",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_aggregate_order_by",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_order_by",
+ "description": "Ordering options when selecting data from \"roleAssignment\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventPassNfts_aggregate",
+ "name": "accountId",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_aggregate_order_by",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
"defaultValue": null,
@@ -109293,7 +159682,7 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "created_at",
"description": null,
"type": {
"kind": "ENUM",
@@ -109305,7 +159694,7 @@
"deprecationReason": null
},
{
- "name": "isAirdrop",
+ "name": "eventId",
"description": null,
"type": {
"kind": "ENUM",
@@ -109317,7 +159706,7 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "id",
"description": null,
"type": {
"kind": "ENUM",
@@ -109329,7 +159718,7 @@
"deprecationReason": null
},
{
- "name": "organizerId",
+ "name": "invitedById",
"description": null,
"type": {
"kind": "ENUM",
@@ -109341,11 +159730,11 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "inviter",
"description": null,
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
"ofType": null
},
"defaultValue": null,
@@ -109353,7 +159742,7 @@
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -109365,7 +159754,7 @@
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "role",
"description": null,
"type": {
"kind": "ENUM",
@@ -109381,49 +159770,16 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_pk_columns_input",
- "description": "primary key columns input for table: packNftContract",
- "fields": null,
- "inputFields": [
- {
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "ENUM",
- "name": "packNftContract_select_column",
- "description": "select columns of table \"packNftContract\"",
+ "name": "roleAssignment_select_column",
+ "description": "select columns of table \"roleAssignment\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
+ "name": "accountId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109435,19 +159791,19 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "eventId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
+ "name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "invitedById",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109459,19 +159815,7 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "rewardsPerPack",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "role",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109481,28 +159825,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_set_input",
- "description": "input type for updating data in table \"packNftContract\"",
+ "name": "roleAssignment_set_input",
+ "description": "input type for updating data in table \"roleAssignment\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
+ "name": "accountId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109522,11 +159854,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
+ "name": "eventId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -109534,11 +159866,11 @@
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109546,11 +159878,11 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
+ "name": "invitedById",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109559,19 +159891,7 @@
},
{
"name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -109582,23 +159902,11 @@
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "role",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "roles_enum",
"ofType": null
},
"defaultValue": null,
@@ -109610,79 +159918,10 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_stream_cursor_input",
- "description": "Streaming cursor of the table \"packNftContract\"",
+ "name": "roleAssignment_stream_cursor_input",
+ "description": "Streaming cursor of the table \"roleAssignment\"",
"fields": null,
"inputFields": [
{
@@ -109693,7 +159932,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_stream_cursor_value_input",
+ "name": "roleAssignment_stream_cursor_value_input",
"ofType": null
}
},
@@ -109720,28 +159959,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_stream_cursor_value_input",
+ "name": "roleAssignment_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "Blockchain network identifier where the NFT contract resides.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "Smart contract address for the NFT collection.",
+ "name": "accountId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109761,11 +159988,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
+ "name": "eventId",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -109773,11 +160000,11 @@
"deprecationReason": null
},
{
- "name": "isAirdrop",
- "description": "Indicates whether the pack is distributed through an airdrop. True for airdrops, False otherwise.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109785,11 +160012,11 @@
"deprecationReason": null
},
{
- "name": "lotteryId",
- "description": "Identifier for the lottery associated with the pack.",
+ "name": "invitedById",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -109798,19 +160025,7 @@
},
{
"name": "organizerId",
- "description": "Identifier for the organizer responsible for the pack.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "Unique identifier for each pack, ensuring no duplicates in the system.",
+ "description": null,
"type": {
"kind": "SCALAR",
"name": "String",
@@ -109821,23 +160036,11 @@
"deprecationReason": null
},
{
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "role",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "roles_enum",
"ofType": null
},
"defaultValue": null,
@@ -109849,45 +160052,16 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "packNftContract_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "ENUM",
- "name": "packNftContract_update_column",
- "description": "update columns of table \"packNftContract\"",
+ "name": "roleAssignment_update_column",
+ "description": "update columns of table \"roleAssignment\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
+ "name": "accountId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109899,19 +160073,19 @@
"deprecationReason": null
},
{
- "name": "id",
+ "name": "eventId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isAirdrop",
+ "name": "id",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryId",
+ "name": "invitedById",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109923,19 +160097,7 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "rewardsPerPack",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "role",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -109945,28 +160107,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftContract_updates",
+ "name": "roleAssignment_updates",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "_set",
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_set_input",
+ "name": "roleAssignment_set_input",
"ofType": null
},
"defaultValue": null,
@@ -109981,7 +160131,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
}
},
@@ -109996,407 +160146,12 @@
},
{
"kind": "OBJECT",
- "name": "packNftContract_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftContract_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
- {
- "name": "rewardsPerPack",
- "description": "Number of rewards (or items) contained within each pack.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packNftSupply",
- "description": "This table represents the supply details of pack NFTs, tracking the ownership, contents, and metadata associated with each pack.",
+ "name": "roles",
+ "description": "Stores user roles defining access levels and permissions within the Offline platform.",
"fields": [
{
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": "Indicates whether the pack NFT has been delivered to the owner.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packEventPassNfts",
- "description": "An array relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packEventPassNfts_aggregate",
- "description": "An aggregate relationship",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packEventPassNft_aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -110409,34 +160164,6 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -110446,8 +160173,8 @@
},
{
"kind": "OBJECT",
- "name": "packNftSupply_aggregate",
- "description": "aggregated selection of \"packNftSupply\"",
+ "name": "roles_aggregate",
+ "description": "aggregated selection of \"roles\"",
"fields": [
{
"name": "aggregate",
@@ -110455,7 +160182,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "packNftSupply_aggregate_fields",
+ "name": "roles_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -110476,7 +160203,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftSupply",
+ "name": "roles",
"ofType": null
}
}
@@ -110493,8 +160220,8 @@
},
{
"kind": "OBJECT",
- "name": "packNftSupply_aggregate_fields",
- "description": "aggregate fields of \"packNftSupply\"",
+ "name": "roles_aggregate_fields",
+ "description": "aggregate fields of \"roles\"",
"fields": [
{
"name": "count",
@@ -110511,7 +160238,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftSupply_select_column",
+ "name": "roles_select_column",
"ofType": null
}
}
@@ -110551,226 +160278,62 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "packNftSupply_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftSupply_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "description": "Boolean expression to filter rows from the table \"packNftSupply\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "chainId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Boolean_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "roles_max_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNfts",
+ "name": "min",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "kind": "OBJECT",
+ "name": "roles_min_fields",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"roles\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "packEventPassNfts_aggregate",
+ "name": "_and",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "_not",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "name": "roles_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -110778,23 +160341,31 @@
"deprecationReason": null
},
{
- "name": "tokenUri",
+ "name": "_or",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "value",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -110808,21 +160379,15 @@
},
{
"kind": "ENUM",
- "name": "packNftSupply_constraint",
- "description": "unique or primary key constraints on table \"packNftSupply\"",
+ "name": "roles_constraint",
+ "description": "unique or primary key constraints on table \"roles\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "packNftSupply_contractAddress_chainId_packId_key",
- "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"packId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupply_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
+ "name": "roles_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
"isDeprecated": false,
"deprecationReason": null
}
@@ -110830,113 +160395,82 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_insert_input",
- "description": "input type for inserting data into table \"packNftSupply\"",
+ "kind": "ENUM",
+ "name": "roles_enum",
+ "description": null,
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_admin",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_auditor",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "organizer_content_manager",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_finance_manager",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_guest",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
+ "name": "organizer_human_resources",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": "Indicates whether the pack NFT has been delivered to the owner.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_operations_manager",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "organizer_super_admin",
+ "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
+ "name": "organizer_validator",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"roles_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "roles_enum",
"ofType": null
},
"defaultValue": null,
@@ -110944,23 +160478,31 @@
"deprecationReason": null
},
{
- "name": "packEventPassNfts",
+ "name": "_in",
"description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_arr_rel_insert_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
+ "name": "_is_null",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -110968,11 +160510,11 @@
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
+ "name": "_neq",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "roles_enum",
"ofType": null
},
"defaultValue": null,
@@ -110980,12 +160522,20 @@
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "_nin",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -110997,121 +160547,36 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "packNftSupply_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "INPUT_OBJECT",
+ "name": "roles_insert_input",
+ "description": "input type for inserting data into table \"roles\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
- "args": [],
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "roles_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"args": [],
"type": {
"kind": "SCALAR",
@@ -111120,18 +160585,6 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -111141,120 +160594,12 @@
},
{
"kind": "OBJECT",
- "name": "packNftSupply_min_fields",
+ "name": "roles_min_fields",
"description": "aggregate min on columns",
"fields": [
{
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"args": [],
"type": {
"kind": "SCALAR",
@@ -111263,18 +160608,6 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -111284,8 +160617,8 @@
},
{
"kind": "OBJECT",
- "name": "packNftSupply_mutation_response",
- "description": "response of any mutation on the table \"packNftSupply\"",
+ "name": "roles_mutation_response",
+ "description": "response of any mutation on the table \"roles\"",
"fields": [
{
"name": "affected_rows",
@@ -111318,7 +160651,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftSupply",
+ "name": "roles",
"ofType": null
}
}
@@ -111335,8 +160668,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_on_conflict",
- "description": "on_conflict condition type for table \"packNftSupply\"",
+ "name": "roles_on_conflict",
+ "description": "on_conflict condition type for table \"roles\"",
"fields": null,
"inputFields": [
{
@@ -111347,7 +160680,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftSupply_constraint",
+ "name": "roles_constraint",
"ofType": null
}
},
@@ -111369,7 +160702,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftSupply_update_column",
+ "name": "roles_update_column",
"ofType": null
}
}
@@ -111384,7 +160717,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
+ "name": "roles_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -111398,12 +160731,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_order_by",
- "description": "Ordering options when selecting data from \"packNftSupply\".",
+ "name": "roles_order_by",
+ "description": "Ordering options when selecting data from \"roles\".",
"fields": null,
"inputFields": [
{
- "name": "chainId",
+ "name": "value",
"description": null,
"type": {
"kind": "ENUM",
@@ -111413,73 +160746,170 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_pk_columns_input",
+ "description": "primary key columns input for table: roles",
+ "fields": null,
+ "inputFields": [
{
- "name": "contractAddress",
- "description": null,
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "roles_select_column",
+ "description": "select columns of table \"roles\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "created_at",
- "description": null,
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_set_input",
+ "description": "input type for updating data in table \"roles\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_stream_cursor_input",
+ "description": "Streaming cursor of the table \"roles\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "currentOwnerAddress",
- "description": null,
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_stream_cursor_value_input",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": null,
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
"kind": "ENUM",
- "name": "order_by",
+ "name": "cursor_ordering",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "roles_update_column",
+ "description": "update columns of table \"roles\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "isDelivered",
- "description": null,
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "INPUT_OBJECT",
+ "name": "roles_set_input",
"ofType": null
},
"defaultValue": null,
@@ -111487,91 +160917,119 @@
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": null,
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "secretApiKey",
+ "description": "The secretApiKey table stores the secret API keys used for querying sensitive data and performing mutations. It includes additional fields for security and management, such as hashed origin secret, encrypted integrity secret, expiration timestamp, and status.",
+ "fields": [
+ {
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNfts_aggregate",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_aggregate_order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": null,
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
+ "args": [],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_pk_columns_input",
- "description": "primary key columns input for table: packNftSupply",
- "fields": null,
- "inputFields": [
+ },
{
"name": "id",
"description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -111581,110 +161039,306 @@
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packNftSupply_select_column",
- "description": "select columns of table \"packNftSupply\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
+ },
{
- "name": "chainId",
- "description": "column name",
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "column name",
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": "column name",
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "column name",
+ "name": "status",
+ "description": "The current status of the secret API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "error",
- "description": "column name",
+ "name": "type",
+ "description": "The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": "column name",
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "secretApiKey_aggregate",
+ "description": "aggregated selection of \"secretApiKey\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_aggregate_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": "column name",
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "secretApiKey",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "secretApiKey_aggregate_fields",
+ "description": "aggregate fields of \"secretApiKey\"",
+ "fields": [
+ {
+ "name": "count",
+ "description": null,
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "secretApiKey_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "column name",
+ "name": "max",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_max_fields",
+ "ofType": null
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "column name",
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "secretApiKey_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"secretApiKey\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": "column name",
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "secretApiKey_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "column name",
+ "name": "allowlist",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_set_input",
- "description": "input type for updating data in table \"packNftSupply\"",
- "fields": null,
- "inputFields": [
- {
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
+ "name": "apiKey",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111692,11 +161346,11 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111704,11 +161358,11 @@
"deprecationReason": null
},
{
- "name": "created_at",
+ "name": "encryptedIntegritySecret",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111716,11 +161370,11 @@
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
+ "name": "expiresAt",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111728,11 +161382,11 @@
"deprecationReason": null
},
{
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "name": "hashedOriginSecret",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111743,8 +161397,8 @@
"name": "id",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111752,11 +161406,11 @@
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": "Indicates whether the pack NFT has been delivered to the owner.",
+ "name": "name",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "Boolean",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111764,11 +161418,11 @@
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
+ "name": "organizerId",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111776,11 +161430,11 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
+ "name": "originSecretSalt",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111788,11 +161442,11 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
+ "name": "status",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111800,11 +161454,11 @@
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
+ "name": "type",
+ "description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111815,8 +161469,8 @@
"name": "updated_at",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -111829,53 +161483,37 @@
"possibleTypes": null
},
{
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_stream_cursor_input",
- "description": "Streaming cursor of the table \"packNftSupply\"",
+ "kind": "ENUM",
+ "name": "secretApiKey_constraint",
+ "description": "unique or primary key constraints on table \"secretApiKey\"",
"fields": null,
- "inputFields": [
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_stream_cursor_value_input",
- "ofType": null
- }
- },
- "defaultValue": null,
+ "name": "secretApiKey_apiKey_key",
+ "description": "unique or primary key constraint on columns \"apiKey\"",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "secretApiKey_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
+ "name": "secretApiKey_insert_input",
+ "description": "input type for inserting data into table \"secretApiKey\"",
"fields": null,
"inputFields": [
{
- "name": "chainId",
- "description": "The specific blockchain or network on which the pack NFT exists.",
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -111886,8 +161524,8 @@
"deprecationReason": null
},
{
- "name": "contractAddress",
- "description": "The address of the smart contract representing the pack NFT. Essential for blockchain interactions.",
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -111910,8 +161548,8 @@
"deprecationReason": null
},
{
- "name": "currentOwnerAddress",
- "description": "The blockchain address of the current owner of the pack NFT.",
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -111922,11 +161560,11 @@
"deprecationReason": null
},
{
- "name": "error",
- "description": "Any error messages related to this pack NFT, particularly during transactions or metadata retrieval.",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -111934,11 +161572,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -111946,11 +161584,11 @@
"deprecationReason": null
},
{
- "name": "isDelivered",
- "description": "Indicates whether the pack NFT has been delivered to the owner.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
@@ -111958,11 +161596,11 @@
"deprecationReason": null
},
{
- "name": "lastNftTransferId",
- "description": "The reference to the latest transfer record for this pack NFT.",
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -111971,7 +161609,7 @@
},
{
"name": "organizerId",
- "description": "The identifier of the organizer associated with this pack NFT.",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -111982,8 +161620,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": "A unique identifier for the pack within the platform.",
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -111994,11 +161632,11 @@
"deprecationReason": null
},
{
- "name": "tokenUri",
- "description": "The URI pointing to the metadata of the pack NFT.",
+ "name": "status",
+ "description": "The current status of the secret API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -112006,138 +161644,28 @@
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
+ "name": "type",
+ "description": "The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.",
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packNftSupply_update_column",
- "description": "update columns of table \"packNftSupply\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "chainId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "contractAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currentOwnerAddress",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "error",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "isDelivered",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "lastNftTransferId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "tokenUri",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
},
{
"name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_set_input",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows which have to be updated",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -112146,263 +161674,136 @@
},
{
"kind": "OBJECT",
- "name": "packOrderSums",
- "description": "Hold the sums for the Pack Orders",
- "fields": [
- {
- "name": "packId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_aggregate",
- "description": "aggregated selection of \"packOrderSums\"",
+ "name": "secretApiKey_max_fields",
+ "description": "aggregate max on columns",
"fields": [
{
- "name": "aggregate",
- "description": null,
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_aggregate_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packOrderSums",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_aggregate_fields",
- "description": "aggregate fields of \"packOrderSums\"",
- "fields": [
- {
- "name": "avg",
- "description": null,
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_avg_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "count",
- "description": null,
- "args": [
- {
- "name": "columns",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
+ "name": "created_at",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_max_fields",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_min_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev",
- "description": null,
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_fields",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_pop",
- "description": null,
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_pop_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stddev_samp",
+ "name": "id",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_samp_fields",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "sum",
- "description": null,
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_sum_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_pop",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_var_pop_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "var_samp",
- "description": null,
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_var_samp_fields",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "variance",
+ "name": "updated_at",
"description": null,
"args": [],
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums_variance_fields",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
@@ -112416,197 +161817,96 @@
},
{
"kind": "OBJECT",
- "name": "packOrderSums_avg_fields",
- "description": "aggregate avg on columns",
+ "name": "secretApiKey_min_fields",
+ "description": "aggregate min on columns",
"fields": [
{
- "name": "totalReserved",
- "description": null,
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "description": "Boolean expression to filter rows from the table \"packOrderSums\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "_not",
- "description": null,
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "created_at",
"description": null,
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
+ "args": [],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "packOrderSums_constraint",
- "description": "unique or primary key constraints on table \"packOrderSums\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "packOrderSums_pkey",
- "description": "unique or primary key constraint on columns \"packId\"",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_inc_input",
- "description": "input type for incrementing numeric columns in table \"packOrderSums\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "totalReserved",
- "description": null,
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_insert_input",
- "description": "input type for inserting data into table \"packOrderSums\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "packId",
- "description": null,
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
+ "args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "id",
"description": null,
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_max_fields",
- "description": "aggregate max on columns",
- "fields": [
+ },
{
- "name": "packId",
- "description": null,
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -112617,31 +161917,20 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_min_fields",
- "description": "aggregate min on columns",
- "fields": [
+ },
{
- "name": "packId",
- "description": null,
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -112652,12 +161941,12 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "updated_at",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
@@ -112671,8 +161960,8 @@
},
{
"kind": "OBJECT",
- "name": "packOrderSums_mutation_response",
- "description": "response of any mutation on the table \"packOrderSums\"",
+ "name": "secretApiKey_mutation_response",
+ "description": "response of any mutation on the table \"secretApiKey\"",
"fields": [
{
"name": "affected_rows",
@@ -112705,7 +161994,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packOrderSums",
+ "name": "secretApiKey",
"ofType": null
}
}
@@ -112722,8 +162011,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_on_conflict",
- "description": "on_conflict condition type for table \"packOrderSums\"",
+ "name": "secretApiKey_on_conflict",
+ "description": "on_conflict condition type for table \"secretApiKey\"",
"fields": null,
"inputFields": [
{
@@ -112734,7 +162023,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packOrderSums_constraint",
+ "name": "secretApiKey_constraint",
"ofType": null
}
},
@@ -112756,7 +162045,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packOrderSums_update_column",
+ "name": "secretApiKey_update_column",
"ofType": null
}
}
@@ -112771,7 +162060,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "name": "secretApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -112785,12 +162074,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_order_by",
- "description": "Ordering options when selecting data from \"packOrderSums\".",
+ "name": "secretApiKey_order_by",
+ "description": "Ordering options when selecting data from \"secretApiKey\".",
"fields": null,
"inputFields": [
{
- "name": "packId",
+ "name": "allowlist",
"description": null,
"type": {
"kind": "ENUM",
@@ -112802,7 +162091,139 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "apiKey",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "encryptedIntegritySecret",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "expiresAt",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "hashedOriginSecret",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "originSecretSalt",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": null,
"type": {
"kind": "ENUM",
@@ -112820,19 +162241,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_pk_columns_input",
- "description": "primary key columns input for table: packOrderSums",
+ "name": "secretApiKey_pk_columns_input",
+ "description": "primary key columns input for table: secretApiKey",
"fields": null,
"inputFields": [
{
- "name": "packId",
+ "name": "id",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -112847,20 +162268,86 @@
},
{
"kind": "ENUM",
- "name": "packOrderSums_select_column",
- "description": "select columns of table \"packOrderSums\"",
+ "name": "secretApiKey_select_column",
+ "description": "select columns of table \"secretApiKey\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "packId",
+ "name": "allowlist",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "apiKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "encryptedIntegritySecret",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "expiresAt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "hashedOriginSecret",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "originSecretSalt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -112870,13 +162357,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_set_input",
- "description": "input type for updating data in table \"packOrderSums\"",
+ "name": "secretApiKey_set_input",
+ "description": "input type for updating data in table \"secretApiKey\"",
"fields": null,
"inputFields": [
{
- "name": "packId",
- "description": null,
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -112887,95 +162374,158 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
- "description": null,
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "created_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "The current status of the secret API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.",
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_stream_cursor_input",
- "description": "Streaming cursor of the table \"packOrderSums\"",
+ "name": "secretApiKey_stream_cursor_input",
+ "description": "Streaming cursor of the table \"secretApiKey\"",
"fields": null,
"inputFields": [
{
@@ -112986,7 +162536,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_stream_cursor_value_input",
+ "name": "secretApiKey_stream_cursor_value_input",
"ofType": null
}
},
@@ -113013,13 +162563,49 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_stream_cursor_value_input",
+ "name": "secretApiKey_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "packId",
+ "name": "allowlist",
+ "description": "A comma-separated list of allowed domains or IP addresses that are permitted to use the secret API key, restricting usage to authorized sources.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "apiKey",
+ "description": "The secret API key used for authentication and identification when querying sensitive data and performing mutations.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
"description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "encryptedIntegritySecret",
+ "description": "The encrypted secret used for verifying the integrity of the request data. The integrity secret is encrypted using a secure encryption algorithm and a salt before storing it in the database.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -113030,61 +162616,200 @@
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "expiresAt",
+ "description": "The expiration timestamp for the secret API key, specifying the validity period after which the key becomes invalid and cannot be used.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "hashedOriginSecret",
+ "description": "The hashed secret used for verifying the origin of the request. The origin secret is hashed using a secure hashing algorithm and a unique salt before storing it in the database.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
+ },
{
- "name": "totalReserved",
+ "name": "name",
+ "description": "A user-defined name for the secret API key, providing a human-readable identifier for the key.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "The unique identifier of the organizer associated with the secret API key, establishing a link between the key and the organizer it belongs to.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "originSecretSalt",
+ "description": "The unique salt value used during the hashing process for the origin secret. It enhances security by making it more difficult to crack the hashed origin secret.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "The current status of the secret API key, referencing the apiKeyStatus table. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "The type of the secret API key, referencing the apiKeyType table. It determines how the secret is verified and what scope/routes of query are accessible.",
+ "type": {
+ "kind": "ENUM",
+ "name": "apiKeyType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "ENUM",
- "name": "packOrderSums_update_column",
- "description": "update columns of table \"packOrderSums\"",
+ "name": "secretApiKey_update_column",
+ "description": "update columns of table \"secretApiKey\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "packId",
+ "name": "allowlist",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "totalReserved",
+ "name": "apiKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "encryptedIntegritySecret",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "expiresAt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "hashedOriginSecret",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "name",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "originSecretSalt",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -113094,28 +162819,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_updates",
+ "name": "secretApiKey_updates",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "_set",
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_set_input",
+ "name": "secretApiKey_set_input",
"ofType": null
},
"defaultValue": null,
@@ -113130,7 +162843,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "name": "secretApiKey_bool_exp",
"ofType": null
}
},
@@ -113145,88 +162858,31 @@
},
{
"kind": "OBJECT",
- "name": "packOrderSums_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
- {
- "name": "totalReserved",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "packOrderSums_variance_fields",
- "description": "aggregate variance on columns",
+ "name": "shopifyCampaignParameters",
+ "description": "This table stores parameters specific to Shopify campaigns, including gate identifiers and links to campaign data in the CRM. It supports context resolution in offline unlock iframes and enables tailored content display.",
"fields": [
{
- "name": "totalReserved",
- "description": null,
+ "name": "created_at",
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passAmount",
- "description": "The passAmount table stores quantity information related to each eventPass or Pack",
- "fields": [
+ },
{
- "name": "created_at",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "timestamptz",
+ "name": "String",
"ofType": null
}
},
@@ -113234,27 +162890,15 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -113262,15 +162906,15 @@
"deprecationReason": null
},
{
- "name": "maxAmount",
- "description": null,
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
@@ -113278,60 +162922,28 @@
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "status",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "timeBeforeDelete",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -113341,8 +162953,8 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_aggregate",
- "description": "aggregated selection of \"passAmount\"",
+ "name": "shopifyCampaignParameters_aggregate",
+ "description": "aggregated selection of \"shopifyCampaignParameters\"",
"fields": [
{
"name": "aggregate",
@@ -113350,7 +162962,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passAmount_aggregate_fields",
+ "name": "shopifyCampaignParameters_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -113371,7 +162983,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passAmount",
+ "name": "shopifyCampaignParameters",
"ofType": null
}
}
@@ -113388,21 +163000,9 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_aggregate_fields",
- "description": "aggregate fields of \"passAmount\"",
+ "name": "shopifyCampaignParameters_aggregate_fields",
+ "description": "aggregate fields of \"shopifyCampaignParameters\"",
"fields": [
- {
- "name": "avg",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_avg_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "count",
"description": null,
@@ -113418,7 +163018,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passAmount_select_column",
+ "name": "shopifyCampaignParameters_select_column",
"ofType": null
}
}
@@ -113458,7 +163058,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passAmount_max_fields",
+ "name": "shopifyCampaignParameters_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -113470,138 +163070,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passAmount_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passAmount_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "maxAmount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timeBeforeDelete",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
+ "name": "shopifyCampaignParameters_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -113615,8 +163084,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "description": "Boolean expression to filter rows from the table \"passAmount\". All fields are combined with a logical 'AND'.",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"shopifyCampaignParameters\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -113630,7 +163099,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
}
}
@@ -113644,7 +163113,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -113662,7 +163131,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
}
}
@@ -113684,7 +163153,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "gateId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -113696,35 +163165,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -113732,7 +163177,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "shopifyCampaignTemplateId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -113744,11 +163189,11 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "status",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "name": "shopifyCampaignStatus_enum_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -113774,89 +163219,30 @@
},
{
"kind": "ENUM",
- "name": "passAmount_constraint",
- "description": "unique or primary key constraints on table \"passAmount\"",
+ "name": "shopifyCampaignParameters_constraint",
+ "description": "unique or primary key constraints on table \"shopifyCampaignParameters\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "idx_passamount_eventpassid",
- "description": "unique or primary key constraint on columns \"eventPassId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "idx_passamount_packid",
- "description": "unique or primary key constraint on columns \"packId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_inc_input",
- "description": "input type for incrementing numeric columns in table \"passAmount\"",
- "fields": null,
- "inputFields": [
- {
- "name": "maxAmount",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timeBeforeDelete",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "shopifyCampaignParameters_pkey",
+ "description": "unique or primary key constraint on columns \"gateId\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_insert_input",
- "description": "input type for inserting data into table \"passAmount\"",
+ "name": "shopifyCampaignParameters_insert_input",
+ "description": "input type for inserting data into table \"shopifyCampaignParameters\"",
"fields": null,
"inputFields": [
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -113867,8 +163253,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -113879,35 +163265,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -113915,8 +163277,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -113927,11 +163289,11 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "status",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -113940,7 +163302,7 @@
},
{
"name": "updated_at",
- "description": null,
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -113957,12 +163319,12 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_max_fields",
+ "name": "shopifyCampaignParameters_max_fields",
"description": "aggregate max on columns",
"fields": [
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -113973,8 +163335,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -113985,44 +163347,8 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114033,12 +163359,12 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
- "description": null,
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -114046,7 +163372,7 @@
},
{
"name": "updated_at",
- "description": null,
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114064,12 +163390,12 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_min_fields",
+ "name": "shopifyCampaignParameters_min_fields",
"description": "aggregate min on columns",
"fields": [
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114080,8 +163406,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114092,44 +163418,8 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114140,12 +163430,12 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
- "description": null,
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -114153,7 +163443,7 @@
},
{
"name": "updated_at",
- "description": null,
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -114171,8 +163461,8 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_mutation_response",
- "description": "response of any mutation on the table \"passAmount\"",
+ "name": "shopifyCampaignParameters_mutation_response",
+ "description": "response of any mutation on the table \"shopifyCampaignParameters\"",
"fields": [
{
"name": "affected_rows",
@@ -114205,7 +163495,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passAmount",
+ "name": "shopifyCampaignParameters",
"ofType": null
}
}
@@ -114222,47 +163512,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"passAmount\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_on_conflict",
- "description": "on_conflict condition type for table \"passAmount\"",
+ "name": "shopifyCampaignParameters_on_conflict",
+ "description": "on_conflict condition type for table \"shopifyCampaignParameters\"",
"fields": null,
"inputFields": [
{
@@ -114273,7 +163524,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passAmount_constraint",
+ "name": "shopifyCampaignParameters_constraint",
"ofType": null
}
},
@@ -114295,7 +163546,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passAmount_update_column",
+ "name": "shopifyCampaignParameters_update_column",
"ofType": null
}
}
@@ -114310,7 +163561,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -114324,8 +163575,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "description": "Ordering options when selecting data from \"passAmount\".",
+ "name": "shopifyCampaignParameters_order_by",
+ "description": "Ordering options when selecting data from \"shopifyCampaignParameters\".",
"fields": null,
"inputFields": [
{
@@ -114341,31 +163592,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
+ "name": "gateId",
"description": null,
"type": {
"kind": "ENUM",
@@ -114377,7 +163604,7 @@
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -114389,7 +163616,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "shopifyCampaignTemplateId",
"description": null,
"type": {
"kind": "ENUM",
@@ -114401,7 +163628,7 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "status",
"description": null,
"type": {
"kind": "ENUM",
@@ -114431,19 +163658,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_pk_columns_input",
- "description": "primary key columns input for table: passAmount",
+ "name": "shopifyCampaignParameters_pk_columns_input",
+ "description": "primary key columns input for table: shopifyCampaignParameters",
"fields": null,
"inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -114458,8 +163685,8 @@
},
{
"kind": "ENUM",
- "name": "passAmount_select_column",
- "description": "select columns of table \"passAmount\"",
+ "name": "shopifyCampaignParameters_select_column",
+ "description": "select columns of table \"shopifyCampaignParameters\"",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -114471,37 +163698,25 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
+ "name": "gateId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "shopifyCampaignTemplateId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "status",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -114517,13 +163732,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_set_input",
- "description": "input type for updating data in table \"passAmount\"",
+ "name": "shopifyCampaignParameters_set_input",
+ "description": "input type for updating data in table \"shopifyCampaignParameters\"",
"fields": null,
"inputFields": [
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -114534,8 +163749,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -114546,11 +163761,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -114558,11 +163773,11 @@
"deprecationReason": null
},
{
- "name": "maxAmount",
- "description": null,
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -114570,11 +163785,85 @@
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "status",
"description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_stream_cursor_input",
+ "description": "Streaming cursor of the table \"shopifyCampaignParameters\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -114582,8 +163871,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -114594,11 +163883,11 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer responsible for the campaign.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -114606,8 +163895,32 @@
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "shopifyCampaignTemplateId",
+ "description": "Foreign key linking to the shopifyCampaignTemplate model in the CRM.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
"description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp indicating the last update time for the record, set automatically on creation and updated via trigger on modification.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -114623,89 +163936,155 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "passAmount_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
+ "kind": "ENUM",
+ "name": "shopifyCampaignParameters_update_column",
+ "description": "update columns of table \"shopifyCampaignParameters\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "maxAmount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
+ "name": "created_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
+ "name": "gateId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "shopifyCampaignTemplateId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
- "description": null,
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "passAmount_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
+ "name": "shopifyCampaignStatus",
+ "description": "columns and relationships of \"shopifyCampaignStatus\"",
"fields": [
{
- "name": "maxAmount",
+ "name": "value",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_aggregate",
+ "description": "aggregated selection of \"shopifyCampaignStatus\"",
+ "fields": [
{
- "name": "maxAmountPerUser",
+ "name": "aggregate",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "nodes",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -114718,40 +164097,77 @@
},
{
"kind": "OBJECT",
- "name": "passAmount_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
+ "name": "shopifyCampaignStatus_aggregate_fields",
+ "description": "aggregate fields of \"shopifyCampaignStatus\"",
"fields": [
{
- "name": "maxAmount",
+ "name": "count",
"description": null,
- "args": [],
+ "args": [
+ {
+ "name": "columns",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "distinct",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "max",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "min",
"description": null,
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -114765,20 +164181,24 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_stream_cursor_input",
- "description": "Streaming cursor of the table \"passAmount\"",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"shopifyCampaignStatus\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_stream_cursor_value_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -114786,70 +164206,106 @@
"deprecationReason": null
},
{
- "name": "ordering",
- "description": "cursor ordering",
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "created_at",
+ "name": "_or",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "value",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_constraint",
+ "description": "unique or primary key constraints on table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "id",
+ "name": "shopifyCampaignStatus_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "DRAFT",
"description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "maxAmount",
+ "name": "PUBLISHED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"shopifyCampaignStatus_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -114857,23 +164313,31 @@
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
+ "name": "_in",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "_is_null",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -114881,11 +164345,11 @@
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
+ "name": "_neq",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
"ofType": null
},
"defaultValue": null,
@@ -114893,12 +164357,20 @@
"deprecationReason": null
},
{
- "name": "updated_at",
+ "name": "_nin",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_enum",
+ "ofType": null
+ }
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -114910,41 +164382,63 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "passAmount_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_insert_input",
+ "description": "input type for inserting data into table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "maxAmount",
+ "name": "value",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
{
- "name": "maxAmountPerUser",
+ "name": "value",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
{
- "name": "timeBeforeDelete",
+ "name": "value",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -114957,105 +164451,109 @@
"possibleTypes": null
},
{
- "kind": "ENUM",
- "name": "passAmount_update_column",
- "description": "update columns of table \"passAmount\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmount",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "maxAmountPerUser",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus_mutation_response",
+ "description": "response of any mutation on the table \"shopifyCampaignStatus\"",
+ "fields": [
{
- "name": "timeBeforeDelete",
- "description": "column name",
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignStatus",
+ "ofType": null
+ }
+ }
+ }
+ },
"isDeprecated": false,
"deprecationReason": null
}
],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "passAmount_updates",
- "description": null,
+ "name": "shopifyCampaignStatus_on_conflict",
+ "description": "on_conflict condition type for table \"shopifyCampaignStatus\"",
"fields": null,
"inputFields": [
{
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
+ "name": "constraint",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_inc_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_constraint",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "update_columns",
+ "description": null,
"type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_set_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_update_column",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "where",
- "description": "filter the rows which have to be updated",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -115067,161 +164565,228 @@
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "passAmount_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_order_by",
+ "description": "Ordering options when selecting data from \"shopifyCampaignStatus\".",
+ "fields": null,
+ "inputFields": [
{
- "name": "maxAmount",
+ "name": "value",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_pk_columns_input",
+ "description": "primary key columns input for table: shopifyCampaignStatus",
+ "fields": null,
+ "inputFields": [
{
- "name": "maxAmountPerUser",
+ "name": "value",
"description": null,
- "args": [],
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_select_column",
+ "description": "select columns of table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "timeBeforeDelete",
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_set_input",
+ "description": "input type for updating data in table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "passAmount_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_stream_cursor_input",
+ "description": "Streaming cursor of the table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "maxAmount",
- "description": null,
- "args": [],
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_stream_cursor_value_input",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "timeBeforeDelete",
+ "name": "value",
"description": null,
- "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "passAmount_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ "kind": "ENUM",
+ "name": "shopifyCampaignStatus_update_column",
+ "description": "update columns of table \"shopifyCampaignStatus\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
{
- "name": "maxAmount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
+ "name": "value",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
{
- "name": "maxAmountPerUser",
- "description": null,
- "args": [],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "SCALAR",
- "name": "Float",
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timeBeforeDelete",
- "description": null,
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignStatus_bool_exp",
+ "ofType": null
+ }
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
- "name": "passPricing",
- "description": "The passPricing table stores pricing information for an eventPass or Pack.",
+ "name": "shopifyCustomer",
+ "description": "This table stores the link between the offline accounts and Shopify customer IDs. It allows organizers to manage customer data seamlessly across platforms without needing to handle sensitive personal information directly.",
"fields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
@@ -115230,51 +164795,35 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "currency_enum",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "eventPassId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -115289,13 +164838,17 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"args": [],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
@@ -115305,13 +164858,9 @@
"description": null,
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
@@ -115324,8 +164873,8 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_aggregate",
- "description": "aggregated selection of \"passPricing\"",
+ "name": "shopifyCustomer_aggregate",
+ "description": "aggregated selection of \"shopifyCustomer\"",
"fields": [
{
"name": "aggregate",
@@ -115333,7 +164882,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passPricing_aggregate_fields",
+ "name": "shopifyCustomer_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -115354,7 +164903,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passPricing",
+ "name": "shopifyCustomer",
"ofType": null
}
}
@@ -115371,21 +164920,9 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_aggregate_fields",
- "description": "aggregate fields of \"passPricing\"",
+ "name": "shopifyCustomer_aggregate_fields",
+ "description": "aggregate fields of \"shopifyCustomer\"",
"fields": [
- {
- "name": "avg",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_avg_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "count",
"description": null,
@@ -115401,7 +164938,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passPricing_select_column",
+ "name": "shopifyCustomer_select_column",
"ofType": null
}
}
@@ -115441,7 +164978,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passPricing_max_fields",
+ "name": "shopifyCustomer_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -115453,114 +164990,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "passPricing_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passPricing_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
+ "name": "shopifyCustomer_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -115574,8 +165004,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "description": "Boolean expression to filter rows from the table \"passPricing\". All fields are combined with a logical 'AND'.",
+ "name": "shopifyCustomer_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"shopifyCustomer\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -115589,7 +165019,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
}
}
@@ -115603,7 +165033,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -115621,7 +165051,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
}
}
@@ -115631,11 +165061,11 @@
"deprecationReason": null
},
{
- "name": "amount",
+ "name": "address",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
+ "name": "String_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -115655,19 +165085,7 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_enum_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
+ "name": "customerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -115691,7 +165109,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -115721,56 +165139,33 @@
},
{
"kind": "ENUM",
- "name": "passPricing_constraint",
- "description": "unique or primary key constraints on table \"passPricing\"",
+ "name": "shopifyCustomer_constraint",
+ "description": "unique or primary key constraints on table \"shopifyCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "passPricing_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_inc_input",
- "description": "input type for incrementing numeric columns in table \"passPricing\"",
- "fields": null,
- "inputFields": [
- {
- "name": "amount",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "shopifyCustomer_address_organizerId_customerId_key",
+ "description": "unique or primary key constraint on columns \"customerId\", \"address\", \"organizerId\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_insert_input",
- "description": "input type for inserting data into table \"passPricing\"",
+ "name": "shopifyCustomer_insert_input",
+ "description": "input type for inserting data into table \"shopifyCustomer\"",
"fields": null,
"inputFields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -115779,7 +165174,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -115790,20 +165185,8 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -115815,7 +165198,7 @@
},
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -115826,8 +165209,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -115856,16 +165239,16 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_max_fields",
+ "name": "shopifyCustomer_max_fields",
"description": "aggregate max on columns",
"fields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -115873,7 +165256,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115884,8 +165267,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115897,7 +165280,7 @@
},
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115908,8 +165291,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115939,16 +165322,16 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_min_fields",
+ "name": "shopifyCustomer_min_fields",
"description": "aggregate min on columns",
"fields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -115956,7 +165339,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115967,8 +165350,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115980,7 +165363,7 @@
},
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -115991,8 +165374,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -116022,8 +165405,8 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_mutation_response",
- "description": "response of any mutation on the table \"passPricing\"",
+ "name": "shopifyCustomer_mutation_response",
+ "description": "response of any mutation on the table \"shopifyCustomer\"",
"fields": [
{
"name": "affected_rows",
@@ -116056,7 +165439,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passPricing",
+ "name": "shopifyCustomer",
"ofType": null
}
}
@@ -116073,47 +165456,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"passPricing\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_on_conflict",
- "description": "on_conflict condition type for table \"passPricing\"",
+ "name": "shopifyCustomer_on_conflict",
+ "description": "on_conflict condition type for table \"shopifyCustomer\"",
"fields": null,
"inputFields": [
{
@@ -116124,7 +165468,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passPricing_constraint",
+ "name": "shopifyCustomer_constraint",
"ofType": null
}
},
@@ -116146,7 +165490,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passPricing_update_column",
+ "name": "shopifyCustomer_update_column",
"ofType": null
}
}
@@ -116161,7 +165505,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -116175,12 +165519,12 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "description": "Ordering options when selecting data from \"passPricing\".",
+ "name": "shopifyCustomer_order_by",
+ "description": "Ordering options when selecting data from \"shopifyCustomer\".",
"fields": null,
"inputFields": [
{
- "name": "amount",
+ "name": "address",
"description": null,
"type": {
"kind": "ENUM",
@@ -116204,19 +165548,7 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
+ "name": "customerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -116240,51 +165572,24 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "ENUM",
"name": "order_by",
"ofType": null
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_pk_columns_input",
- "description": "primary key columns input for table: passPricing",
- "fields": null,
- "inputFields": [
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
- "name": "id",
+ "name": "updated_at",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -116297,14 +165602,14 @@
},
{
"kind": "ENUM",
- "name": "passPricing_select_column",
- "description": "select columns of table \"passPricing\"",
+ "name": "shopifyCustomer_select_column",
+ "description": "select columns of table \"shopifyCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "amount",
+ "name": "address",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116316,13 +165621,7 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
+ "name": "customerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116334,7 +165633,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116350,16 +165649,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_set_input",
- "description": "input type for updating data in table \"passPricing\"",
+ "name": "shopifyCustomer_set_input",
+ "description": "input type for updating data in table \"shopifyCustomer\"",
"fields": null,
"inputFields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -116368,7 +165667,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -116379,20 +165678,8 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -116404,7 +165691,7 @@
},
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -116415,8 +165702,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -116443,79 +165730,10 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "passPricing_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passPricing_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passPricing_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_stream_cursor_input",
- "description": "Streaming cursor of the table \"passPricing\"",
+ "name": "shopifyCustomer_stream_cursor_input",
+ "description": "Streaming cursor of the table \"shopifyCustomer\"",
"fields": null,
"inputFields": [
{
@@ -116526,7 +165744,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_stream_cursor_value_input",
+ "name": "shopifyCustomer_stream_cursor_value_input",
"ofType": null
}
},
@@ -116553,16 +165771,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_stream_cursor_value_input",
+ "name": "shopifyCustomer_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
{
- "name": "amount",
- "description": null,
+ "name": "address",
+ "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.",
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"defaultValue": null,
@@ -116571,7 +165789,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -116582,20 +165800,8 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "currency_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
+ "name": "customerId",
+ "description": "The unique identifier for the customer as stored in Shopify. This links the internal account to the Shopify customer record, facilitating integrated data management across systems.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -116607,7 +165813,7 @@
},
{
"name": "id",
- "description": null,
+ "description": "Unique identifier for each entry, generated automatically as a UUID.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -116618,8 +165824,8 @@
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -116646,39 +165852,16 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "passPricing_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "ENUM",
- "name": "passPricing_update_column",
- "description": "update columns of table \"passPricing\"",
+ "name": "shopifyCustomer_update_column",
+ "description": "update columns of table \"shopifyCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "amount",
+ "name": "address",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116690,13 +165873,7 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
+ "name": "customerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116708,7 +165885,7 @@
"deprecationReason": null
},
{
- "name": "packId",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -116724,28 +165901,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "passPricing_updates",
+ "name": "shopifyCustomer_updates",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "_set",
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_set_input",
+ "name": "shopifyCustomer_set_input",
"ofType": null
},
"defaultValue": null,
@@ -116760,7 +165925,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
}
},
@@ -116775,209 +165940,31 @@
},
{
"kind": "OBJECT",
- "name": "passPricing_var_pop_fields",
- "description": "aggregate var_pop on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passPricing_var_samp_fields",
- "description": "aggregate var_samp on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "passPricing_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
- {
- "name": "amount",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "pendingOrder",
- "description": "Order a quantity of Event Pass or Pack (linked to Hygraph model EventPass or Pack) and associated to an Account. Those orders are time bound and are automatically destroyed given an amount of time to preserve access to the event for other users.",
+ "name": "shopifyDomain",
+ "description": "This table is used to link and authenticate queries from Shopify to an organizer in our system. It stores the unique Shopify domains associated with each organizer, allowing for efficient lookup and validation of incoming requests.",
"fields": [
- {
- "name": "account",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "account",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPass",
- "description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -116985,140 +165972,15 @@
"deprecationReason": null
},
{
- "name": "pack",
- "description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContract",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "packNftContract",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": "An object relationship",
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
}
},
@@ -117133,8 +165995,8 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_aggregate",
- "description": "aggregated selection of \"pendingOrder\"",
+ "name": "shopifyDomain_aggregate",
+ "description": "aggregated selection of \"shopifyDomain\"",
"fields": [
{
"name": "aggregate",
@@ -117142,7 +166004,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "pendingOrder_aggregate_fields",
+ "name": "shopifyDomain_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -117163,7 +166025,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "pendingOrder",
+ "name": "shopifyDomain",
"ofType": null
}
}
@@ -117180,21 +166042,9 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_aggregate_fields",
- "description": "aggregate fields of \"pendingOrder\"",
+ "name": "shopifyDomain_aggregate_fields",
+ "description": "aggregate fields of \"shopifyDomain\"",
"fields": [
- {
- "name": "avg",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_avg_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "count",
"description": null,
@@ -117210,7 +166060,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "pendingOrder_select_column",
+ "name": "shopifyDomain_select_column",
"ofType": null
}
}
@@ -117250,7 +166100,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "pendingOrder_max_fields",
+ "name": "shopifyDomain_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -117262,114 +166112,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "pendingOrder_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stddev_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "sum",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_sum_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_pop",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_var_pop_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "var_samp",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_var_samp_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "variance",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "pendingOrder_variance_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "pendingOrder_avg_fields",
- "description": "aggregate avg on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
+ "name": "shopifyDomain_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -117383,8 +166126,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
- "description": "Boolean expression to filter rows from the table \"pendingOrder\". All fields are combined with a logical 'AND'.",
+ "name": "shopifyDomain_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"shopifyDomain\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -117398,7 +166141,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
}
}
@@ -117412,7 +166155,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -117430,7 +166173,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
}
}
@@ -117439,30 +166182,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "account",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
"description": null,
@@ -117476,7 +166195,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
+ "name": "domain",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -117488,43 +166207,7 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -117534,66 +166217,6 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "packNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -117602,89 +166225,30 @@
},
{
"kind": "ENUM",
- "name": "pendingOrder_constraint",
- "description": "unique or primary key constraints on table \"pendingOrder\"",
+ "name": "shopifyDomain_constraint",
+ "description": "unique or primary key constraints on table \"shopifyDomain\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "idx_pendingorder_eventpassid_accountid",
- "description": "unique or primary key constraint on columns \"eventPassId\", \"accountId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "idx_pendingorder_packid_accountid",
- "description": "unique or primary key constraint on columns \"accountId\", \"packId\"",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "pendingOrder_pkey",
- "description": "unique or primary key constraint on columns \"id\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_inc_input",
- "description": "input type for incrementing numeric columns in table \"pendingOrder\"",
- "fields": null,
- "inputFields": [
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
+ "name": "shopifyDomain_pkey",
+ "description": "unique or primary key constraint on columns \"domain\"",
"isDeprecated": false,
"deprecationReason": null
}
],
- "interfaces": null,
- "enumValues": null,
"possibleTypes": null
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_insert_input",
- "description": "input type for inserting data into table \"pendingOrder\"",
+ "name": "shopifyDomain_insert_input",
+ "description": "input type for inserting data into table \"shopifyDomain\"",
"fields": null,
"inputFields": [
- {
- "name": "account",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -117695,8 +166259,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -117707,44 +166271,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -117753,66 +166281,6 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "packNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
@@ -117821,24 +166289,12 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_max_fields",
+ "name": "shopifyDomain_max_fields",
"description": "aggregate max on columns",
"fields": [
- {
- "name": "accountId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -117849,8 +166305,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -117861,20 +166317,8 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -117883,18 +166327,6 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
}
],
"inputFields": null,
@@ -117904,60 +166336,24 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_min_fields",
+ "name": "shopifyDomain_min_fields",
"description": "aggregate min on columns",
"fields": [
- {
- "name": "accountId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassId",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packId",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -117968,12 +166364,12 @@
"deprecationReason": null
},
{
- "name": "quantity",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
@@ -117987,8 +166383,8 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_mutation_response",
- "description": "response of any mutation on the table \"pendingOrder\"",
+ "name": "shopifyDomain_mutation_response",
+ "description": "response of any mutation on the table \"shopifyDomain\"",
"fields": [
{
"name": "affected_rows",
@@ -118021,7 +166417,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "pendingOrder",
+ "name": "shopifyDomain",
"ofType": null
}
}
@@ -118038,8 +166434,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_on_conflict",
- "description": "on_conflict condition type for table \"pendingOrder\"",
+ "name": "shopifyDomain_on_conflict",
+ "description": "on_conflict condition type for table \"shopifyDomain\"",
"fields": null,
"inputFields": [
{
@@ -118050,7 +166446,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "pendingOrder_constraint",
+ "name": "shopifyDomain_constraint",
"ofType": null
}
},
@@ -118072,7 +166468,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "pendingOrder_update_column",
+ "name": "shopifyDomain_update_column",
"ofType": null
}
}
@@ -118087,7 +166483,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -118101,34 +166497,10 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_order_by",
- "description": "Ordering options when selecting data from \"pendingOrder\".",
+ "name": "shopifyDomain_order_by",
+ "description": "Ordering options when selecting data from \"shopifyDomain\".",
"fields": null,
"inputFields": [
- {
- "name": "account",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
"description": null,
@@ -118142,55 +166514,7 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
+ "name": "domain",
"description": null,
"type": {
"kind": "ENUM",
@@ -118202,55 +166526,7 @@
"deprecationReason": null
},
{
- "name": "packNftContract",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passAmount",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "quantity",
+ "name": "organizerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -118268,19 +166544,19 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_pk_columns_input",
- "description": "primary key columns input for table: pendingOrder",
+ "name": "shopifyDomain_pk_columns_input",
+ "description": "primary key columns input for table: shopifyDomain",
"fields": null,
"inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -118295,18 +166571,12 @@
},
{
"kind": "ENUM",
- "name": "pendingOrder_select_column",
- "description": "select columns of table \"pendingOrder\"",
+ "name": "shopifyDomain_select_column",
+ "description": "select columns of table \"shopifyDomain\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
"description": "column name",
@@ -118314,25 +166584,13 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
+ "name": "domain",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -118342,25 +166600,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_set_input",
- "description": "input type for updating data in table \"pendingOrder\"",
+ "name": "shopifyDomain_set_input",
+ "description": "input type for updating data in table \"shopifyDomain\"",
"fields": null,
"inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -118371,8 +166617,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -118383,20 +166629,8 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -118405,97 +166639,16 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_fields",
- "description": "aggregate stddev on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_pop_fields",
- "description": "aggregate stddev_pop on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "pendingOrder_stddev_samp_fields",
- "description": "aggregate stddev_samp on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_stream_cursor_input",
- "description": "Streaming cursor of the table \"pendingOrder\"",
+ "name": "shopifyDomain_stream_cursor_input",
+ "description": "Streaming cursor of the table \"shopifyDomain\"",
"fields": null,
"inputFields": [
{
@@ -118506,7 +166659,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_stream_cursor_value_input",
+ "name": "shopifyDomain_stream_cursor_value_input",
"ofType": null
}
},
@@ -118533,25 +166686,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_stream_cursor_value_input",
+ "name": "shopifyDomain_stream_cursor_value_input",
"description": "Initial value of the column from where the streaming should start",
"fields": null,
"inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp indicating when the record was initially created, set automatically by the system.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -118562,8 +166703,8 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -118574,20 +166715,8 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
- "description": null,
+ "name": "organizerId",
+ "description": "The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -118596,61 +166725,20 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "quantity",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "OBJECT",
- "name": "pendingOrder_sum_fields",
- "description": "aggregate sum on columns",
- "fields": [
- {
- "name": "quantity",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "ENUM",
- "name": "pendingOrder_update_column",
- "description": "update columns of table \"pendingOrder\"",
+ "name": "shopifyDomain_update_column",
+ "description": "update columns of table \"shopifyDomain\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "created_at",
"description": "column name",
@@ -118658,25 +166746,13 @@
"deprecationReason": null
},
{
- "name": "eventPassId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packId",
+ "name": "domain",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "quantity",
+ "name": "organizerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -118686,28 +166762,16 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_updates",
+ "name": "shopifyDomain_updates",
"description": null,
"fields": null,
"inputFields": [
- {
- "name": "_inc",
- "description": "increments the numeric columns with given value of the filtered values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_inc_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "_set",
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_set_input",
+ "name": "shopifyDomain_set_input",
"ofType": null
},
"defaultValue": null,
@@ -118722,7 +166786,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
}
},
@@ -118737,20 +166801,145 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_var_pop_fields",
- "description": "aggregate var_pop on columns",
+ "name": "stampNft",
+ "description": "Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata.",
"fields": [
{
- "name": "quantity",
+ "name": "chainId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
"description": null,
"args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "args": [
+ {
+ "name": "path",
+ "description": "JSON select path",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
+ "args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"inputFields": null,
@@ -118760,243 +166949,75 @@
},
{
"kind": "OBJECT",
- "name": "pendingOrder_var_samp_fields",
- "description": "aggregate var_samp on columns",
+ "name": "stampNftContract",
+ "description": "Represents stamp NFT contracts used for marketing purposes. Each contract is associated with a type indicating the nature of the campaign, like a purchase completion event.",
"fields": [
{
- "name": "quantity",
+ "name": "activityWebhookId",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "pendingOrder_variance_fields",
- "description": "aggregate variance on columns",
- "fields": [
+ },
{
- "name": "quantity",
+ "name": "activityWebhookSigningKey",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
- "name": "Float",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "query_root",
- "description": null,
- "fields": [
+ },
{
- "name": "account",
- "description": "fetch data from the table: \"account\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "account_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "account",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "account_aggregate",
- "description": "fetch aggregated fields from the table: \"account\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "account_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "account_aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -119004,89 +167025,44 @@
"deprecationReason": null
},
{
- "name": "account_by_pk",
- "description": "fetch data from the table: \"account\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "account",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "asset",
- "description": "Retrieve a single asset",
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
"args": [
{
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
+ "name": "path",
+ "description": "JSON select path",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -119094,171 +167070,119 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "assetVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "DocumentVersion",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "assets",
- "description": "Retrieve multiple assets",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "AssetOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "type",
+ "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "description": "Defines contract types for the stampNftContract, representing various marketing campaigns or actions.",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_aggregate",
+ "description": "aggregated selection of \"stampNftContractType\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -119270,7 +167194,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "Asset",
+ "name": "stampNftContractType",
"ofType": null
}
}
@@ -119278,129 +167202,48 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_aggregate_fields",
+ "description": "aggregate fields of \"stampNftContractType\"",
+ "fields": [
{
- "name": "assetsConnection",
- "description": "Retrieve multiple assets using the Relay connection interface",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
+ "name": "columns",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Asset` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "stampNftContractType_select_column",
+ "ofType": null
}
}
},
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "AssetOrderByInput",
- "ofType": null
- },
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "skip",
+ "name": "distinct",
"description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "AssetWhereInput",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -119412,8 +167255,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "AssetConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -119421,155 +167264,325 @@
"deprecationReason": null
},
{
- "name": "contentSpace",
- "description": "Retrieve a single contentSpace",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "ContentSpace",
+ "name": "stampNftContractType_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceParameters",
- "description": "fetch data from the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stampNftContractType\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
+ "name": "stampNftContractType_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContractType_constraint",
+ "description": "unique or primary key constraints on table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stampNftContractType_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "SHOPIFY_PURCHASE_COMPLETED",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"stampNftContractType_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_is_null",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_insert_input",
+ "description": "input type for inserting data into table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_mutation_response",
+ "description": "response of any mutation on the table \"stampNftContractType\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -119581,7 +167594,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "name": "stampNftContractType",
"ofType": null
}
}
@@ -119589,210 +167602,305 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_on_conflict",
+ "description": "on_conflict condition type for table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "contentSpaceParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters_aggregate",
+ "kind": "ENUM",
+ "name": "stampNftContractType_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceParameters_by_pk",
- "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "ENUM",
+ "name": "stampNftContractType_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_order_by",
+ "description": "Ordering options when selecting data from \"stampNftContractType\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_pk_columns_input",
+ "description": "primary key columns input for table: stampNftContractType",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContractType_select_column",
+ "description": "select columns of table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_set_input",
+ "description": "input type for updating data in table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceStatus",
- "description": "fetch data from the table: \"contentSpaceStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContractType_update_column",
+ "description": "update columns of table \"stampNftContractType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContract_aggregate",
+ "description": "aggregated selection of \"stampNftContract\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContract_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -119804,7 +167912,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "name": "stampNftContract",
"ofType": null
}
}
@@ -119812,14 +167920,25 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContract_aggregate_fields",
+ "description": "aggregate fields of \"stampNftContract\"",
+ "fields": [
{
- "name": "contentSpaceStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -119828,7 +167947,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
+ "name": "stampNftContract_select_column",
"ofType": null
}
}
@@ -119838,55 +167957,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -119898,8 +167973,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "contentSpaceStatus_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -119907,347 +167982,749 @@
"deprecationReason": null
},
{
- "name": "contentSpaceStatus_by_pk",
- "description": "fetch data from the table: \"contentSpaceStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "name": "stampNftContract_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "DocumentVersion",
+ "name": "stampNftContract_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_append_input",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
{
- "name": "contentSpaces",
- "description": "Retrieve multiple contentSpaces",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ContentSpaceOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stampNftContract\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
+ "name": "stampNftContract_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpacesConnection",
- "description": "Retrieve multiple contentSpaces using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContract_constraint",
+ "description": "unique or primary key constraints on table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stampNftContract_activityWebhookSigningKey_key",
+ "description": "unique or primary key constraint on columns \"activityWebhookSigningKey\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftContract_pkey",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_at_path_input",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ContentSpace` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ContentSpaceOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_elem_input",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_key_input",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_insert_input",
+ "description": "input type for inserting data into table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.",
+ "type": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContract_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContract_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "activityWebhookSigningKey",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftContract_mutation_response",
+ "description": "response of any mutation on the table \"stampNftContract\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -120255,86 +168732,9 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": "fetch data from the table: \"currency\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -120346,7 +168746,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "currency",
+ "name": "stampNftContract",
"ofType": null
}
}
@@ -120354,1936 +168754,878 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_on_conflict",
+ "description": "on_conflict condition type for table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "currency_aggregate",
- "description": "fetch aggregated fields from the table: \"currency\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "currency_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "currency_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "currency_aggregate",
+ "kind": "ENUM",
+ "name": "stampNftContract_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currency_by_pk",
- "description": "fetch data from the table: \"currency\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
+ "name": "update_columns",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "ENUM",
+ "name": "stampNftContract_update_column",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": "[]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "currency",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_order_by",
+ "description": "Ordering options when selecting data from \"stampNftContract\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "entities",
- "description": "Fetches an object given its ID",
- "args": [
- {
- "name": "where",
- "description": "The where parameters to query components",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EntityWhereInput",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "activityWebhookSigningKey",
+ "description": null,
"type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INTERFACE",
- "name": "Entity",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "event",
- "description": "Retrieve a single event",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "campaignId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "Event",
+ "kind": "ENUM",
+ "name": "order_by",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters",
- "description": "fetch data from the table: \"eventParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_pk_columns_input",
+ "description": "primary key columns input for table: stampNftContract",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventParameters",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"eventParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventParameters_aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_prepend_input",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContract_select_column",
+ "description": "select columns of table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters_by_pk",
- "description": "fetch data from the table: \"eventParameters\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_set_input",
+ "description": "input type for updating data in table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventParameters",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPass",
- "description": "Retrieve a single eventPass",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "activityWebhookSigningKey",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassDelayedRevealed",
- "description": "Retrieve a single eventPassDelayedRevealed",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.",
+ "type": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_stream_cursor_value_input",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "activityWebhookId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassDelayedRevealedVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "activityWebhookSigningKey",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "DocumentVersion",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNft",
- "description": "fetch data from the table: \"eventPassNft\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "campaignId",
+ "description": "A unique identifier for the marketing campaign associated with this contract. For instance, a Shopify campaign ID.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": "fetch data from the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContractType",
- "description": "fetch data from the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContractType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContractType_by_pk",
- "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "Type name for event pass NFT contract.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNftContract\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "metadata",
+ "description": "Structured metadata associated with the contract, stored in a JSONB format for flexibility.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract_by_pk",
- "description": "fetch data from the table: \"eventPassNftContract\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "organizerId",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNft_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNft\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "type",
+ "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft_aggregate",
- "ofType": null
- }
+ "kind": "ENUM",
+ "name": "stampNftContractType_enum",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNft_by_pk",
- "description": "fetch data from the table: \"eventPassNft\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "eventPassNft",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftContract_update_column",
+ "description": "update columns of table \"stampNftContract\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "activityWebhookId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassOrderSums",
- "description": "fetch data from the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "activityWebhookSigningKey",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "campaignId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_append_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassOrderSums_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums_aggregate",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_at_path_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassOrderSums_by_pk",
- "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns",
- "args": [
- {
- "name": "eventPassId",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
"type": {
- "kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_elem_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassType",
- "description": "fetch data from the table: \"eventPassType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassType",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_delete_key_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassType_aggregate",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_prepend_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassType_by_pk",
- "description": "fetch data from the table: \"eventPassType\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "Type name for event pass.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "OBJECT",
- "name": "eventPassType",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_set_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassValidationType",
- "description": "fetch data from the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassValidationType",
- "ofType": null
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContract_bool_exp",
+ "ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "description": "Tracks the current ownership and quantities of each token under a stampNftContract. Each row associates a token (identified by tokenId and contractAddress) with an owner and the quantity they hold.",
+ "fields": [
{
- "name": "eventPassValidationType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassValidationType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassValidationType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventPassValidationType_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -122291,347 +169633,31 @@
"deprecationReason": null
},
{
- "name": "eventPassValidationType_by_pk",
- "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "Type name for event pass validation.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassValidationType",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "DocumentVersion",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPasses",
- "description": "Retrieve multiple eventPasses",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventPassOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassesConnection",
- "description": "Retrieve multiple eventPasses using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPass` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventPassOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventPassConnection",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -122639,289 +169665,59 @@
"deprecationReason": null
},
{
- "name": "eventPassesDelayedRevealed",
- "description": "Retrieve multiple eventPassesDelayedRevealed",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventPassDelayedRevealedOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "eventPassesDelayedRevealedConnection",
- "description": "Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventPassDelayedRevealedOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
@@ -122929,86 +169725,88 @@
"deprecationReason": null
},
{
- "name": "eventStatus",
- "description": "fetch data from the table: \"eventStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_aggregate",
+ "description": "aggregated selection of \"stampNftSupply\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -123020,7 +169818,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventStatus",
+ "name": "stampNftSupply",
"ofType": null
}
}
@@ -123028,14 +169826,37 @@
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_aggregate_fields",
+ "description": "aggregate fields of \"stampNftSupply\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_avg_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "eventStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"eventStatus\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -123044,7 +169865,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventStatus_select_column",
+ "name": "stampNftSupply_select_column",
"ofType": null
}
}
@@ -123054,55 +169875,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -123114,8 +169891,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventStatus_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -123123,192 +169900,837 @@
"deprecationReason": null
},
{
- "name": "eventStatus_by_pk",
- "description": "fetch data from the table: \"eventStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "eventStatus",
+ "name": "stampNftSupply_max_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stampNftSupply\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "amount",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "Int_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "nftStatus_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftSupply_constraint",
+ "description": "unique or primary key constraints on table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stampNftSupply_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftSupply_tokenId_contractAddress_chainId_currentOwner_key",
+ "description": "unique or primary key constraint on columns \"currentOwnerAddress\", \"chainId\", \"contractAddress\", \"tokenId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_inc_input",
+ "description": "input type for incrementing numeric columns in table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_insert_input",
+ "description": "input type for inserting data into table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "DocumentVersion",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "events",
- "description": "Retrieve multiple events",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_mutation_response",
+ "description": "response of any mutation on the table \"stampNftSupply\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -123320,7 +170742,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "Event",
+ "name": "stampNftSupply",
"ofType": null
}
}
@@ -123328,229 +170750,38 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_on_conflict",
+ "description": "on_conflict condition type for table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "eventsConnection",
- "description": "Retrieve multiple events using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "EventConnection",
+ "kind": "ENUM",
+ "name": "stampNftSupply_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "follow",
- "description": "fetch data from the table: \"follow\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "update_columns",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -123561,2115 +170792,1050 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "follow",
+ "kind": "ENUM",
+ "name": "stampNftSupply_update_column",
"ofType": null
}
}
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "follow_aggregate",
- "description": "fetch aggregated fields from the table: \"follow\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "follow_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_order_by",
+ "description": "Ordering options when selecting data from \"stampNftSupply\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_pk_columns_input",
+ "description": "primary key columns input for table: stampNftSupply",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "follow_aggregate",
+ "kind": "SCALAR",
+ "name": "uuid",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftSupply_select_column",
+ "description": "select columns of table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "follow_by_pk",
- "description": "fetch data from the table: \"follow\" using primary key columns",
- "args": [
- {
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_set_input",
+ "description": "input type for updating data in table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
"type": {
- "kind": "OBJECT",
- "name": "follow",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc",
- "description": "fetch data from the table: \"kyc\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kyc_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kyc",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycLevelName",
- "description": "fetch data from the table: \"kycLevelName\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
{
- "name": "kycLevelName_aggregate",
- "description": "fetch aggregated fields from the table: \"kycLevelName\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycLevelName_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycLevelName_by_pk",
- "description": "fetch data from the table: \"kycLevelName\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "kycLevelName",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
{
- "name": "kycStatus",
- "description": "fetch data from the table: \"kycStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"kycStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "kycStatus_aggregate",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycStatus_by_pk",
- "description": "fetch data from the table: \"kycStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "kycStatus",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc_aggregate",
- "description": "fetch aggregated fields from the table: \"kyc\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kyc_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kyc_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc_by_pk",
- "description": "fetch data from the table: \"kyc\" using primary key columns",
- "args": [
- {
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "kyc",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters",
- "description": "fetch data from the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"lotteryParameters\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryParameters_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "currentOwnerAddress",
+ "description": "The blockchain address of the current owner of the token.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryParameters_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters_by_pk",
- "description": "fetch data from the table: \"lotteryParameters\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "error",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryParameters",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryStatus",
- "description": "fetch data from the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryStatus",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"lotteryStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "lotteryStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "lastNftTransferId",
+ "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "lotteryStatus_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryStatus_by_pk",
- "description": "fetch data from the table: \"lotteryStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "status",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "lotteryStatus",
+ "kind": "ENUM",
+ "name": "nftStatus_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet",
- "description": "fetch data from the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet_aggregate",
- "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet_by_pk",
- "description": "fetch data from the table: \"minterTemporaryWallet\" using primary key columns",
- "args": [
- {
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNftSupply_update_column",
+ "description": "update columns of table \"stampNftSupply\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "amount",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "nftTransfer",
- "description": "fetch data from the table: \"nftTransfer\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "currentOwnerAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "error",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "lastNftTransferId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "status",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "nftTransfer",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_inc_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftTransfer_aggregate",
- "description": "fetch aggregated fields from the table: \"nftTransfer\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "nftTransfer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "nftTransfer_aggregate",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftSupply_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "nftTransfer_by_pk",
- "description": "fetch data from the table: \"nftTransfer\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "nftTransfer",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "node",
- "description": "Fetches an object given its ID",
- "args": [
- {
- "name": "id",
- "description": "The ID of an object",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Node` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "INTERFACE",
- "name": "Node",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "order",
- "description": "fetch data from the table: \"order\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "order_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "order",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orderStatus",
- "description": "fetch data from the table: \"orderStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "orderStatus",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNftSupply_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "amount",
+ "description": "The quantity of the token held by the current owner.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orderStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"orderStatus\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "orderStatus_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_aggregate",
+ "description": "aggregated selection of \"stampNft\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_aggregate_fields",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orderStatus_by_pk",
- "description": "fetch data from the table: \"orderStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
+ "name": "nodes",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "stampNft",
"ofType": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_aggregate_fields",
+ "description": "aggregate fields of \"stampNft\"",
+ "fields": [
+ {
+ "name": "avg",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "orderStatus",
+ "name": "stampNft_avg_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_aggregate",
- "description": "fetch aggregated fields from the table: \"order\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -125678,7 +171844,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "order_select_column",
+ "name": "stampNft_select_column",
"ofType": null
}
}
@@ -125688,55 +171854,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "order_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -125748,8 +171870,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "order_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -125757,811 +171879,769 @@
"deprecationReason": null
},
{
- "name": "order_by_pk",
- "description": "fetch data from the table: \"order\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "order",
+ "name": "stampNft_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizer",
- "description": "Retrieve a single organizer",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "Organizer",
+ "name": "stampNft_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizerVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stddev",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "DocumentVersion",
+ "name": "stampNft_stddev_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizers",
- "description": "Retrieve multiple organizers",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "OrganizerOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
+ "name": "stddev_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_stddev_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stddev_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_stddev_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "sum",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_sum_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_pop",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_var_pop_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "var_samp",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_var_samp_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "variance",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNft_variance_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_append_input",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_avg_fields",
+ "description": "aggregate avg on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stampNft\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
+ "name": "stampNft_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizersConnection",
- "description": "Retrieve multiple organizers using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "uuid_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "jsonb_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "bigint_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNft_constraint",
+ "description": "unique or primary key constraints on table \"stampNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stampNft_contractAddress_tokenId_chainId_key",
+ "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"tokenId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNft_pkey",
+ "description": "unique or primary key constraint on columns \"id\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_at_path_input",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "OrganizerOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_elem_input",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_key_input",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_inc_input",
+ "description": "input type for incrementing numeric columns in table \"stampNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_insert_input",
+ "description": "input type for inserting data into table \"stampNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "OrganizerConnection",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pack",
- "description": "Retrieve a single pack",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": null,
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "Pack",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNft",
- "description": "fetch data from the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNft_aggregate",
- "description": "fetch aggregated fields from the table: \"packEventPassNft\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packEventPassNft_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
+ "args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packEventPassNft_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNft_by_pk",
- "description": "fetch data from the table: \"packEventPassNft\" using primary key columns",
- "args": [
- {
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContract",
- "description": "fetch data from the table: \"packNftContract\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_mutation_response",
+ "description": "response of any mutation on the table \"stampNft\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -126573,7 +172653,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContract",
+ "name": "stampNft",
"ofType": null
}
}
@@ -126581,88 +172661,38 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_on_conflict",
+ "description": "on_conflict condition type for table \"stampNft\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "packNftContractEventPass",
- "description": "fetch data from the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "constraint",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNft_constraint",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update_columns",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -126673,1675 +172703,865 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "ENUM",
+ "name": "stampNft_update_column",
"ofType": null
}
}
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractEventPass_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_order_by",
+ "description": "Ordering options when selecting data from \"stampNft\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_pk_columns_input",
+ "description": "primary key columns input for table: stampNft",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_prepend_input",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNft_select_column",
+ "description": "select columns of table \"stampNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_set_input",
+ "description": "input type for updating data in table \"stampNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "chainId",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_stddev_fields",
+ "description": "aggregate stddev on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_stddev_pop_fields",
+ "description": "aggregate stddev_pop on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_stddev_samp_fields",
+ "description": "aggregate stddev_samp on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stampNft\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractEventPass_by_pk",
- "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns",
- "args": [
- {
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "ordering",
+ "description": "cursor ordering",
"type": {
- "kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "kind": "ENUM",
+ "name": "cursor_ordering",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "packNftContract_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftContract\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftContract_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "chainId",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftContract_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContract_by_pk",
- "description": "fetch data from the table: \"packNftContract\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packNftContract",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupply",
- "description": "fetch data from the table: \"packNftSupply\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftSupply_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftSupply",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupply_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftSupply\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packNftSupply_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "id",
+ "description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packNftSupply_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupply_by_pk",
- "description": "fetch data from the table: \"packNftSupply\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "metadata",
+ "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.",
"type": {
- "kind": "OBJECT",
- "name": "packNftSupply",
+ "kind": "SCALAR",
+ "name": "jsonb",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packOrderSums",
- "description": "fetch data from the table: \"packOrderSums\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packOrderSums",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packOrderSums_aggregate",
- "description": "fetch aggregated fields from the table: \"packOrderSums\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "packOrderSums_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenUri",
+ "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "packOrderSums_aggregate",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packOrderSums_by_pk",
- "description": "fetch data from the table: \"packOrderSums\" using primary key columns",
- "args": [
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "packOrderSums",
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_sum_fields",
+ "description": "aggregate sum on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "bigint",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stampNft_update_column",
+ "description": "update columns of table \"stampNft\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "chainId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
},
{
- "name": "packVersion",
- "description": "Retrieve document version",
- "args": [
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "VersionWhereInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "contractAddress",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "metadata",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "tokenUri",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_append",
+ "description": "append existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "OBJECT",
- "name": "DocumentVersion",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_append_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packs",
- "description": "Retrieve multiple packs",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "PackOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_at_path",
+ "description": "delete the field or element with specified path (for JSON arrays, negative integers count from the end)",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_at_path_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packsConnection",
- "description": "Retrieve multiple packs using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Pack` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "PackOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "PackWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_elem",
+ "description": "delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "PackConnection",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_elem_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount",
- "description": "fetch data from the table: \"passAmount\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "passAmount_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_delete_key",
+ "description": "delete key/value pair or string element. key/value pairs are matched based on their key value",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "passAmount",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_delete_key_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount_aggregate",
- "description": "fetch aggregated fields from the table: \"passAmount\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "passAmount_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_inc",
+ "description": "increments the numeric columns with given value of the filtered values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "passAmount_aggregate",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_inc_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount_by_pk",
- "description": "fetch data from the table: \"passAmount\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_prepend",
+ "description": "prepend existing jsonb value of filtered columns with new jsonb value",
"type": {
- "kind": "OBJECT",
- "name": "passAmount",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_prepend_input",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing",
- "description": "fetch data from the table: \"passPricing\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "passPricing_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- }
- }
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_set_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing_aggregate",
- "description": "fetch aggregated fields from the table: \"passPricing\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "passPricing_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "passPricing_aggregate",
+ "kind": "INPUT_OBJECT",
+ "name": "stampNft_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_var_pop_fields",
+ "description": "aggregate var_pop on columns",
+ "fields": [
{
- "name": "passPricing_by_pk",
- "description": "fetch data from the table: \"passPricing\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "passPricing",
+ "kind": "SCALAR",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_var_samp_fields",
+ "description": "aggregate var_samp on columns",
+ "fields": [
{
- "name": "pendingOrder",
- "description": "fetch data from the table: \"pendingOrder\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "pendingOrder_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stampNft_variance_fields",
+ "description": "aggregate variance on columns",
+ "fields": [
+ {
+ "name": "tokenId",
+ "description": "The unique identifier of the token within its contract.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession",
+ "description": "Table to store Stripe Checkout Sessions for tracking user checkout processes. Sessions are deleted once they are successful or expired.",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "pendingOrder",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pendingOrder_aggregate",
- "description": "fetch aggregated fields from the table: \"pendingOrder\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "pendingOrder_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "pendingOrder_aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -128349,309 +173569,107 @@
"deprecationReason": null
},
{
- "name": "pendingOrder_by_pk",
- "description": "fetch data from the table: \"pendingOrder\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "args": [],
"type": {
- "kind": "OBJECT",
- "name": "pendingOrder",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roleAssignment",
- "description": "fetch data from the table: \"roleAssignment\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roleAssignment_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "type",
+ "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment",
- "ofType": null
- }
- }
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roleAssignment_aggregate",
- "description": "fetch aggregated fields from the table: \"roleAssignment\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roleAssignment_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment_aggregate",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "description": "Types of Stripe Checkout Sessions.",
+ "fields": [
{
- "name": "roles",
- "description": "fetch data from the table: \"roles\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roles_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "value",
+ "description": "Type value.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_aggregate",
+ "description": "aggregated selection of \"stripeCheckoutSessionType\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -128663,7 +173681,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "stripeCheckoutSessionType",
"ofType": null
}
}
@@ -128671,14 +173689,25 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_aggregate_fields",
+ "description": "aggregate fields of \"stripeCheckoutSessionType\"",
+ "fields": [
{
- "name": "roles_aggregate",
- "description": "fetch aggregated fields from the table: \"roles\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -128687,7 +173716,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roles_select_column",
+ "name": "stripeCheckoutSessionType_select_column",
"ofType": null
}
}
@@ -128697,55 +173726,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -128757,8 +173742,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "roles_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -128766,833 +173751,376 @@
"deprecationReason": null
},
{
- "name": "roles_by_pk",
- "description": "fetch data from the table: \"roles\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "stripeCheckoutSessionType_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledOperation",
- "description": "Retrieve a single scheduledOperation",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "min",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "ScheduledOperation",
+ "name": "stripeCheckoutSessionType_min_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stripeCheckoutSessionType\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
{
- "name": "scheduledOperations",
- "description": "Retrieve multiple scheduledOperations",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ScheduledOperationOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_and",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
}
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledOperationsConnection",
- "description": "Retrieve multiple scheduledOperations using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledOperation` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ScheduledOperationOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
+ "name": "_not",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
- "name": "ScheduledOperationWhereInput",
+ "name": "stripeCheckoutSessionType_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "value",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_constraint",
+ "description": "unique or primary key constraints on table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stripeCheckoutSessionType_pkey",
+ "description": "unique or primary key constraint on columns \"value\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "event_pass_order",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_enum_comparison_exp",
+ "description": "Boolean expression to compare columns of type \"stripeCheckoutSessionType_enum\". All fields are combined with logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_eq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_in",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ScheduledOperationConnection",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledRelease",
- "description": "Retrieve a single scheduledRelease",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "_is_null",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_neq",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledReleases",
- "description": "Retrieve multiple scheduledReleases",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
+ "name": "_nin",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "ENUM",
- "name": "ScheduledReleaseOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
+ "name": "stripeCheckoutSessionType_enum",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_insert_input",
+ "description": "input type for inserting data into table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType_mutation_response",
+ "description": "response of any mutation on the table \"stripeCheckoutSessionType\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "scheduledReleasesConnection",
- "description": "Retrieve multiple scheduledReleases using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `ScheduledRelease` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ScheduledReleaseOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ScheduledReleaseWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSessionType",
+ "ofType": null
+ }
+ }
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_on_conflict",
+ "description": "on_conflict condition type for table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "ScheduledReleaseConnection",
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSession",
- "description": "fetch data from the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "update_columns",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -129603,97 +174131,263 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_update_column",
"ofType": null
}
}
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionType",
- "description": "fetch data from the table: \"stripeCheckoutSessionType\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_order_by",
+ "description": "Ordering options when selecting data from \"stripeCheckoutSessionType\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_pk_columns_input",
+ "description": "primary key columns input for table: stripeCheckoutSessionType",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_select_column",
+ "description": "select columns of table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_set_input",
+ "description": "input type for updating data in table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_stream_cursor_value_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "value",
+ "description": "Type value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_update_column",
+ "description": "update columns of table \"stripeCheckoutSessionType\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "value",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_set_input",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows which have to be updated",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_bool_exp",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_aggregate",
+ "description": "aggregated selection of \"stripeCheckoutSession\"",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_aggregate_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nodes",
+ "description": null,
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -129705,7 +174399,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "name": "stripeCheckoutSession",
"ofType": null
}
}
@@ -129713,14 +174407,25 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_aggregate_fields",
+ "description": "aggregate fields of \"stripeCheckoutSession\"",
+ "fields": [
{
- "name": "stripeCheckoutSessionType_aggregate",
- "description": "fetch aggregated fields from the table: \"stripeCheckoutSessionType\"",
+ "name": "count",
+ "description": null,
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "columns",
+ "description": null,
"type": {
"kind": "LIST",
"name": null,
@@ -129729,7 +174434,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "stripeCheckoutSessionType_select_column",
+ "name": "stripeCheckoutSession_select_column",
"ofType": null
}
}
@@ -129739,55 +174444,11 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "distinct",
+ "description": null,
"type": {
"kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
+ "name": "Boolean",
"ofType": null
},
"defaultValue": null,
@@ -129799,8 +174460,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_aggregate",
+ "kind": "SCALAR",
+ "name": "Int",
"ofType": null
}
},
@@ -129808,237 +174469,389 @@
"deprecationReason": null
},
{
- "name": "stripeCheckoutSessionType_by_pk",
- "description": "fetch data from the table: \"stripeCheckoutSessionType\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "max",
+ "description": null,
+ "args": [],
"type": {
"kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "name": "stripeCheckoutSession_max_fields",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSession_aggregate",
- "description": "fetch aggregated fields from the table: \"stripeCheckoutSession\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
+ "name": "min",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_min_fields",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stripeCheckoutSession\". All fields are combined with a logical 'AND'.",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_and",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
"kind": "INPUT_OBJECT",
"name": "stripeCheckoutSession_bool_exp",
"ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ }
}
- ],
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_not",
+ "description": null,
"type": {
- "kind": "NON_NULL",
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_or",
+ "description": null,
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_aggregate",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ }
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCheckoutSession_by_pk",
- "description": "fetch data from the table: \"stripeCheckoutSession\" using primary key columns",
- "args": [
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "created_at",
+ "description": null,
"type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomer",
- "description": "fetch data from the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCustomer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
+ "name": "stripeCustomerId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "String_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSessionType_enum_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "timestamptz_comparison_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_constraint",
+ "description": "unique or primary key constraints on table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "stripeCheckoutSession_pkey",
+ "description": "unique or primary key constraint on columns \"stripeSessionId\"",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_insert_input",
+ "description": "input type for inserting data into table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "type": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_max_fields",
+ "description": "aggregate max on columns",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_min_fields",
+ "description": "aggregate min on columns",
+ "fields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCheckoutSession_mutation_response",
+ "description": "response of any mutation on the table \"stripeCheckoutSession\"",
+ "fields": [
+ {
+ "name": "affected_rows",
+ "description": "number of rows affected by the mutation",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
- ],
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "returning",
+ "description": "data from the rows affected by the mutation",
+ "args": [],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -130050,7 +174863,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCustomer",
+ "name": "stripeCheckoutSession",
"ofType": null
}
}
@@ -130058,210 +174871,38 @@
},
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_on_conflict",
+ "description": "on_conflict condition type for table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": [
{
- "name": "stripeCustomer_aggregate",
- "description": "fetch aggregated fields from the table: \"stripeCustomer\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCustomer_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "constraint",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "stripeCustomer_aggregate",
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_constraint",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomer_by_pk",
- "description": "fetch data from the table: \"stripeCustomer\" using primary key columns",
- "args": [
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCustomer",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "timezone",
- "description": "fetch data from the table: \"timezone\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "timezone_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "update_columns",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -130272,575 +174913,442 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "timezone",
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_update_column",
"ofType": null
}
}
}
},
+ "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone_aggregate",
- "description": "fetch aggregated fields from the table: \"timezone\"",
- "args": [
- {
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "timezone_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timezone_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_order_by",
+ "description": "Ordering options when selecting data from \"stripeCheckoutSession\".",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCustomerId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "order_by",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_pk_columns_input",
+ "description": "primary key columns input for table: stripeCheckoutSession",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "timezone_aggregate",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_select_column",
+ "description": "select columns of table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "created_at",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "timezone_by_pk",
- "description": "fetch data from the table: \"timezone\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stripeCustomerId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_set_input",
+ "description": "input type for updating data in table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
"type": {
- "kind": "OBJECT",
- "name": "timezone",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "user",
- "description": "Retrieve a single user",
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereUniqueInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
"type": {
- "kind": "OBJECT",
- "name": "User",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "users",
- "description": "Retrieve multiple users",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "UserOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "User",
- "ofType": null
- }
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "usersConnection",
- "description": "Retrieve multiple users using the Relay connection interface",
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `User` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "UserOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "UserWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "name": "type",
+ "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "type": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "initial_value",
+ "description": "Stream column input with initial value",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "UserConnection",
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_stream_cursor_value_input",
"ofType": null
}
},
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "ordering",
+ "description": "cursor ordering",
+ "type": {
+ "kind": "ENUM",
+ "name": "cursor_ordering",
+ "ofType": null
+ },
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
}
],
- "inputFields": null,
- "interfaces": [],
+ "interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
- "kind": "OBJECT",
- "name": "roleAssignment",
- "description": "Table to assign roles to accounts, allowing a many-to-many relationship. Each account can have multiple roles and each role can be assigned to multiple accounts. This is part of the RBAC system integration.",
- "fields": [
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeCustomerId",
+ "description": "Stripe Customer ID referencing to the stripeCustomer table.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stripeSessionId",
+ "description": "Unique identifier for the Stripe Checkout Session.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "type",
+ "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "type": {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSessionType_enum",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "timestamptz",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "stripeCheckoutSession_update_column",
+ "description": "update columns of table \"stripeCheckoutSession\"",
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "created_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
- "name": "accountId",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
+ "name": "stripeCustomerId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": null,
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- }
- },
+ "name": "stripeSessionId",
+ "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
- "args": [],
+ "name": "type",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updated_at",
+ "description": "column name",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_updates",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "_set",
+ "description": "sets the columns of the filtered rows to the given values",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_set_input",
+ "ofType": null
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
+ "name": "where",
+ "description": "filter the rows which have to be updated",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCheckoutSession_bool_exp",
"ofType": null
}
},
+ "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "stripeCustomer",
+ "description": "Table to store Stripe Customer IDs for tracking user payment processes.",
+ "fields": [
{
- "name": "invitedById",
- "description": null,
+ "name": "accountId",
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -130855,15 +175363,15 @@
"deprecationReason": null
},
{
- "name": "inviter",
- "description": "An object relationship",
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "account",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
@@ -130871,77 +175379,8 @@
"deprecationReason": null
},
{
- "name": "organizer",
- "description": null,
- "args": [
- {
- "name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "defaultValue": "PUBLISHED",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "OrganizerWhereUniqueInput_remote_rel_roleAssignmentorganizer",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"args": [],
"type": {
"kind": "NON_NULL",
@@ -130956,15 +175395,15 @@
"deprecationReason": null
},
{
- "name": "role",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"args": [],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "roles_enum",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
}
},
@@ -130979,8 +175418,8 @@
},
{
"kind": "OBJECT",
- "name": "roleAssignment_aggregate",
- "description": "aggregated selection of \"roleAssignment\"",
+ "name": "stripeCustomer_aggregate",
+ "description": "aggregated selection of \"stripeCustomer\"",
"fields": [
{
"name": "aggregate",
@@ -130988,7 +175427,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "roleAssignment_aggregate_fields",
+ "name": "stripeCustomer_aggregate_fields",
"ofType": null
},
"isDeprecated": false,
@@ -131009,7 +175448,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roleAssignment",
+ "name": "stripeCustomer",
"ofType": null
}
}
@@ -131024,104 +175463,10 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_bool_exp",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_bool_exp_count",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_bool_exp_count",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "arguments",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roleAssignment_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "distinct",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "filter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "predicate",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "Int_comparison_exp",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "roleAssignment_aggregate_fields",
- "description": "aggregate fields of \"roleAssignment\"",
+ "name": "stripeCustomer_aggregate_fields",
+ "description": "aggregate fields of \"stripeCustomer\"",
"fields": [
{
"name": "count",
@@ -131138,7 +175483,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roleAssignment_select_column",
+ "name": "stripeCustomer_select_column",
"ofType": null
}
}
@@ -131178,7 +175523,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "roleAssignment_max_fields",
+ "name": "stripeCustomer_max_fields",
"ofType": null
},
"isDeprecated": false,
@@ -131190,7 +175535,7 @@
"args": [],
"type": {
"kind": "OBJECT",
- "name": "roleAssignment_min_fields",
+ "name": "stripeCustomer_min_fields",
"ofType": null
},
"isDeprecated": false,
@@ -131204,102 +175549,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_aggregate_order_by",
- "description": "order by aggregate values of table \"roleAssignment\"",
- "fields": null,
- "inputFields": [
- {
- "name": "count",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_max_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_min_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_arr_rel_insert_input",
- "description": "input type for inserting array relation for remote table \"roleAssignment\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_insert_input",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "description": "Boolean expression to filter rows from the table \"roleAssignment\". All fields are combined with a logical 'AND'.",
+ "name": "stripeCustomer_bool_exp",
+ "description": "Boolean expression to filter rows from the table \"stripeCustomer\". All fields are combined with a logical 'AND'.",
"fields": null,
"inputFields": [
{
@@ -131313,7 +175564,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
}
}
@@ -131327,7 +175578,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -131345,7 +175596,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
}
}
@@ -131379,55 +175630,7 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "inviter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
+ "name": "stripeCustomerId",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
@@ -131439,11 +175642,11 @@
"deprecationReason": null
},
{
- "name": "role",
+ "name": "updated_at",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "roles_enum_comparison_exp",
+ "name": "timestamptz_comparison_exp",
"ofType": null
},
"defaultValue": null,
@@ -131457,15 +175660,15 @@
},
{
"kind": "ENUM",
- "name": "roleAssignment_constraint",
- "description": "unique or primary key constraints on table \"roleAssignment\"",
+ "name": "stripeCustomer_constraint",
+ "description": "unique or primary key constraints on table \"stripeCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": [
{
- "name": "unique_role_assignment",
- "description": "unique or primary key constraint on columns \"organizerId\", \"accountId\", \"role\", \"eventId\"",
+ "name": "stripeCustomer_pkey",
+ "description": "unique or primary key constraint on columns \"stripeCustomerId\"",
"isDeprecated": false,
"deprecationReason": null
}
@@ -131474,13 +175677,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_insert_input",
- "description": "input type for inserting data into table \"roleAssignment\"",
+ "name": "stripeCustomer_insert_input",
+ "description": "input type for inserting data into table \"stripeCustomer\"",
"fields": null,
"inputFields": [
{
"name": "accountId",
- "description": null,
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -131492,7 +175695,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp automatically set when the row is created.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -131503,8 +175706,8 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -131515,59 +175718,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "inviter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_obj_rel_insert_input",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "role",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "roles_enum",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -131581,12 +175736,12 @@
},
{
"kind": "OBJECT",
- "name": "roleAssignment_max_fields",
+ "name": "stripeCustomer_max_fields",
"description": "aggregate max on columns",
"fields": [
{
"name": "accountId",
- "description": null,
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131598,7 +175753,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp automatically set when the row is created.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131609,8 +175764,8 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131621,36 +175776,12 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
@@ -131662,97 +175793,14 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_max_order_by",
- "description": "order by max() on columns of table \"roleAssignment\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "roleAssignment_min_fields",
+ "name": "stripeCustomer_min_fields",
"description": "aggregate min on columns",
"fields": [
{
"name": "accountId",
- "description": null,
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131764,7 +175812,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp automatically set when the row is created.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131775,8 +175823,8 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"args": [],
"type": {
"kind": "SCALAR",
@@ -131787,36 +175835,12 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"args": [],
"type": {
"kind": "SCALAR",
- "name": "String",
+ "name": "timestamptz",
"ofType": null
},
"isDeprecated": false,
@@ -131828,93 +175852,10 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_min_order_by",
- "description": "order by min() on columns of table \"roleAssignment\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
{
"kind": "OBJECT",
- "name": "roleAssignment_mutation_response",
- "description": "response of any mutation on the table \"roleAssignment\"",
+ "name": "stripeCustomer_mutation_response",
+ "description": "response of any mutation on the table \"stripeCustomer\"",
"fields": [
{
"name": "affected_rows",
@@ -131947,7 +175888,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roleAssignment",
+ "name": "stripeCustomer",
"ofType": null
}
}
@@ -131964,8 +175905,47 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_on_conflict",
- "description": "on_conflict condition type for table \"roleAssignment\"",
+ "name": "stripeCustomer_obj_rel_insert_input",
+ "description": "input type for inserting object relation for remote table \"stripeCustomer\"",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_insert_input",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "on_conflict",
+ "description": "upsert condition",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_on_conflict",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_on_conflict",
+ "description": "on_conflict condition type for table \"stripeCustomer\"",
"fields": null,
"inputFields": [
{
@@ -131976,7 +175956,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roleAssignment_constraint",
+ "name": "stripeCustomer_constraint",
"ofType": null
}
},
@@ -131998,7 +175978,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roleAssignment_update_column",
+ "name": "stripeCustomer_update_column",
"ofType": null
}
}
@@ -132013,7 +175993,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -132027,8 +176007,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
- "description": "Ordering options when selecting data from \"roleAssignment\".",
+ "name": "stripeCustomer_order_by",
+ "description": "Ordering options when selecting data from \"stripeCustomer\".",
"fields": null,
"inputFields": [
{
@@ -132056,31 +176036,7 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
+ "name": "stripeCustomerId",
"description": null,
"type": {
"kind": "ENUM",
@@ -132092,19 +176048,7 @@
"deprecationReason": null
},
{
- "name": "inviter",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "account_order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
+ "name": "updated_at",
"description": null,
"type": {
"kind": "ENUM",
@@ -132114,14 +176058,29 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_pk_columns_input",
+ "description": "primary key columns input for table: stripeCustomer",
+ "fields": null,
+ "inputFields": [
{
- "name": "role",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
@@ -132134,8 +176093,8 @@
},
{
"kind": "ENUM",
- "name": "roleAssignment_select_column",
- "description": "select columns of table \"roleAssignment\"",
+ "name": "stripeCustomer_select_column",
+ "description": "select columns of table \"stripeCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -132153,31 +176112,13 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
+ "name": "stripeCustomerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "role",
+ "name": "updated_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -132187,13 +176128,13 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_set_input",
- "description": "input type for updating data in table \"roleAssignment\"",
+ "name": "stripeCustomer_set_input",
+ "description": "input type for updating data in table \"stripeCustomer\"",
"fields": null,
"inputFields": [
{
"name": "accountId",
- "description": null,
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -132205,7 +176146,7 @@
},
{
"name": "created_at",
- "description": null,
+ "description": "Timestamp automatically set when the row is created.",
"type": {
"kind": "SCALAR",
"name": "timestamptz",
@@ -132216,8 +176157,8 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -132228,47 +176169,11 @@
"deprecationReason": null
},
{
- "name": "id",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"type": {
"kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "role",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "roles_enum",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -132282,8 +176187,8 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_stream_cursor_input",
- "description": "Streaming cursor of the table \"roleAssignment\"",
+ "name": "stripeCustomer_stream_cursor_input",
+ "description": "Streaming cursor of the table \"stripeCustomer\"",
"fields": null,
"inputFields": [
{
@@ -132294,7 +176199,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_stream_cursor_value_input",
+ "name": "stripeCustomer_stream_cursor_value_input",
"ofType": null
}
},
@@ -132319,51 +176224,15 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventId",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "stripeCustomer_stream_cursor_value_input",
+ "description": "Initial value of the column from where the streaming should start",
+ "fields": null,
+ "inputFields": [
{
- "name": "id",
- "description": null,
+ "name": "accountId",
+ "description": "UUID referencing to the account ID in the existing accounts table.",
"type": {
"kind": "SCALAR",
"name": "uuid",
@@ -132374,11 +176243,11 @@
"deprecationReason": null
},
{
- "name": "invitedById",
- "description": null,
+ "name": "created_at",
+ "description": "Timestamp automatically set when the row is created.",
"type": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -132386,8 +176255,8 @@
"deprecationReason": null
},
{
- "name": "organizerId",
- "description": null,
+ "name": "stripeCustomerId",
+ "description": "Unique identifier for the Stripe Customer.",
"type": {
"kind": "SCALAR",
"name": "String",
@@ -132398,11 +176267,11 @@
"deprecationReason": null
},
{
- "name": "role",
- "description": null,
+ "name": "updated_at",
+ "description": "Timestamp automatically updated whenever the row changes.",
"type": {
- "kind": "ENUM",
- "name": "roles_enum",
+ "kind": "SCALAR",
+ "name": "timestamptz",
"ofType": null
},
"defaultValue": null,
@@ -132416,8 +176285,8 @@
},
{
"kind": "ENUM",
- "name": "roleAssignment_update_column",
- "description": "update columns of table \"roleAssignment\"",
+ "name": "stripeCustomer_update_column",
+ "description": "update columns of table \"stripeCustomer\"",
"fields": null,
"inputFields": null,
"interfaces": null,
@@ -132435,31 +176304,13 @@
"deprecationReason": null
},
{
- "name": "eventId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "invitedById",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizerId",
+ "name": "stripeCustomerId",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "role",
+ "name": "updated_at",
"description": "column name",
"isDeprecated": false,
"deprecationReason": null
@@ -132469,7 +176320,7 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_updates",
+ "name": "stripeCustomer_updates",
"description": null,
"fields": null,
"inputFields": [
@@ -132478,7 +176329,7 @@
"description": "sets the columns of the filtered rows to the given values",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_set_input",
+ "name": "stripeCustomer_set_input",
"ofType": null
},
"defaultValue": null,
@@ -132493,7 +176344,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stripeCustomer_bool_exp",
"ofType": null
}
},
@@ -132508,52 +176359,90 @@
},
{
"kind": "OBJECT",
- "name": "roles",
- "description": "Stores user roles defining access levels and permissions within the Offline platform.",
+ "name": "subscription_root",
+ "description": null,
"fields": [
{
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "account",
+ "description": "fetch data from the table: \"account\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "account_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "roles_aggregate",
- "description": "aggregated selection of \"roles\"",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "roles_aggregate_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "nodes",
- "description": null,
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -132565,7 +176454,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "account",
"ofType": null
}
}
@@ -132573,25 +176462,14 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "roles_aggregate_fields",
- "description": "aggregate fields of \"roles\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "account_aggregate",
+ "description": "fetch aggregated fields from the table: \"account\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -132600,7 +176478,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roles_select_column",
+ "name": "account_select_column",
"ofType": null
}
}
@@ -132610,11 +176488,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -132626,8 +176548,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "account_aggregate",
"ofType": null
}
},
@@ -132635,363 +176557,591 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "account_by_pk",
+ "description": "fetch data from the table: \"account\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "roles_max_fields",
+ "name": "account",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "roles_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "description": "Boolean expression to filter rows from the table \"roles\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
+ "name": "account_stream",
+ "description": "fetch data from the table in a streaming manner: \"account\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "account_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "account",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "apiKeyStatus",
+ "description": "fetch data from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "value",
- "description": null,
+ "name": "apiKeyStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus_aggregate",
+ "ofType": null
+ }
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "roles_constraint",
- "description": "unique or primary key constraints on table \"roles\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "roles_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "roles_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "organizer_admin",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_auditor",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_content_manager",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_finance_manager",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_guest",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_human_resources",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_operations_manager",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "organizer_super_admin",
- "description": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "organizer_validator",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"roles_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_eq",
- "description": null,
+ "name": "apiKeyStatus_by_pk",
+ "description": "fetch data from the table: \"apiKeyStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "roles_enum",
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_in",
- "description": null,
+ "name": "apiKeyStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"apiKeyStatus\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "roles_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyStatus",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_is_null",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_neq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "roles_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_nin",
- "description": null,
+ "name": "apiKeyType",
+ "description": "fetch data from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "roles_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_insert_input",
- "description": "input type for inserting data into table \"roles\"",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "roles_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "roles_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "roles_mutation_response",
- "description": "response of any mutation on the table \"roles\"",
- "fields": [
+ },
{
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
+ "name": "apiKeyType_aggregate",
+ "description": "fetch aggregated fields from the table: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "apiKeyType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "apiKeyType_aggregate",
"ofType": null
}
},
@@ -132999,60 +177149,188 @@
"deprecationReason": null
},
{
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
+ "name": "apiKeyType_by_pk",
+ "description": "fetch data from the table: \"apiKeyType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "The type of the API key",
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "roles",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_on_conflict",
- "description": "on_conflict condition type for table \"roles\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "apiKeyType_stream",
+ "description": "fetch data from the table in a streaming manner: \"apiKeyType\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "apiKeyType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "roles_constraint",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "apiKeyType",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "contentSpaceParameters",
+ "description": "fetch data from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -133063,257 +177341,399 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "roles_update_column",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
"ofType": null
}
}
}
},
- "defaultValue": "[]",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_order_by",
- "description": "Ordering options when selecting data from \"roles\".",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_pk_columns_input",
- "description": "primary key columns input for table: roles",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "name": "contentSpaceParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "roles_select_column",
- "description": "select columns of table \"roles\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_set_input",
- "description": "input type for updating data in table \"roles\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "name": "contentSpaceParameters_by_pk",
+ "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_stream_cursor_input",
- "description": "Streaming cursor of the table \"roles\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "contentSpaceParameters_stream",
+ "description": "fetch data from the table in a streaming manner: \"contentSpaceParameters\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_stream_cursor_value_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceParameters",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "roles_update_column",
- "description": "update columns of table \"roles\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "roles_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roles_set_input",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "contentSpaceStatus",
+ "description": "fetch data from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession",
- "description": "Table to store Stripe Checkout Sessions for tracking user checkout processes. Sessions are deleted once they are successful or expired.",
- "fields": [
+ },
{
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
+ "name": "contentSpaceStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "contentSpaceStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus_aggregate",
"ofType": null
}
},
@@ -133321,123 +177741,383 @@
"deprecationReason": null
},
{
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "name": "contentSpaceStatus_by_pk",
+ "description": "fetch data from the table: \"contentSpaceStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "args": [],
+ "name": "contentSpaceStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"contentSpaceStatus\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "contentSpaceStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "contentSpaceStatus",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
- "args": [],
+ "name": "currency",
+ "description": "fetch data from the table: \"currency\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "currency",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "name": "currency_aggregate",
+ "description": "fetch aggregated fields from the table: \"currency\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "currency_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
- "description": "Types of Stripe Checkout Sessions.",
- "fields": [
- {
- "name": "value",
- "description": "Type value.",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "currency_aggregate",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_aggregate",
- "description": "aggregated selection of \"stripeCheckoutSessionType\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "currency_by_pk",
+ "description": "fetch data from the table: \"currency\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "stripeCheckoutSessionType_aggregate_fields",
+ "name": "currency",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "currency_stream",
+ "description": "fetch data from the table in a streaming manner: \"currency\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "currency_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -133449,7 +178129,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "name": "currency",
"ofType": null
}
}
@@ -133457,25 +178137,14 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_aggregate_fields",
- "description": "aggregate fields of \"stripeCheckoutSessionType\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "eventParameters",
+ "description": "fetch data from the table: \"eventParameters\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -133484,7 +178153,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "stripeCheckoutSessionType_select_column",
+ "name": "eventParameters_select_column",
"ofType": null
}
}
@@ -133494,11 +178163,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -133510,334 +178223,197 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "description": "Boolean expression to filter rows from the table \"stripeCheckoutSessionType\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventParameters",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
+ "name": "eventParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
"kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
+ "name": "eventParameters_bool_exp",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_constraint",
- "description": "unique or primary key constraints on table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "stripeCheckoutSessionType_pkey",
- "description": "unique or primary key constraint on columns \"value\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "description": null,
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "event_pass_order",
- "description": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_enum_comparison_exp",
- "description": "Boolean expression to compare columns of type \"stripeCheckoutSessionType_enum\". All fields are combined with logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_eq",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_in",
- "description": null,
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "eventParameters_aggregate",
+ "ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_is_null",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_neq",
- "description": null,
+ "name": "eventParameters_by_pk",
+ "description": "fetch data from the table: \"eventParameters\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
+ "kind": "OBJECT",
+ "name": "eventParameters",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_nin",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
+ "name": "eventParameters_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventParameters\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventParameters_bool_exp",
"ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_insert_input",
- "description": "input type for inserting data into table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "value",
- "description": "Type value.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "value",
- "description": "Type value.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSessionType_mutation_response",
- "description": "response of any mutation on the table \"stripeCheckoutSessionType\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -133849,7 +178425,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCheckoutSessionType",
+ "name": "eventParameters",
"ofType": null
}
}
@@ -133857,38 +178433,88 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_on_conflict",
- "description": "on_conflict condition type for table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_constraint",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
+ "name": "eventPassNft",
+ "description": "fetch data from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -133899,263 +178525,198 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_update_column",
+ "kind": "OBJECT",
+ "name": "eventPassNft",
"ofType": null
}
}
}
},
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_order_by",
- "description": "Ordering options when selecting data from \"stripeCheckoutSessionType\".",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_pk_columns_input",
- "description": "primary key columns input for table: stripeCheckoutSessionType",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_select_column",
- "description": "select columns of table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_set_input",
- "description": "input type for updating data in table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_stream_cursor_input",
- "description": "Streaming cursor of the table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_stream_cursor_value_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "value",
- "description": "Type value.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_update_column",
- "description": "update columns of table \"stripeCheckoutSessionType\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "value",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_set_input",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "eventPassNftContract",
+ "description": "fetch data from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_aggregate",
- "description": "aggregated selection of \"stripeCheckoutSession\"",
- "fields": [
- {
- "name": "aggregate",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_aggregate_fields",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "eventPassNftContractType",
+ "description": "fetch data from the table: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContractType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -134167,7 +178728,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "name": "eventPassNftContractType",
"ofType": null
}
}
@@ -134175,25 +178736,14 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_aggregate_fields",
- "description": "aggregate fields of \"stripeCheckoutSession\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "eventPassNftContractType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -134202,7 +178752,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "stripeCheckoutSession_select_column",
+ "name": "eventPassNftContractType_select_column",
"ofType": null
}
}
@@ -134212,11 +178762,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -134228,8 +178822,8 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType_aggregate",
"ofType": null
}
},
@@ -134237,389 +178831,578 @@
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
+ "name": "eventPassNftContractType_by_pk",
+ "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "stripeCheckoutSession_max_fields",
+ "name": "eventPassNftContractType",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "description": "Boolean expression to filter rows from the table \"stripeCheckoutSession\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
+ "name": "eventPassNftContractType_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassNftContractType\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContractType_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
"kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
+ "name": "eventPassNftContractType_bool_exp",
"ofType": null
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_not",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "_or",
- "description": null,
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContractType",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSessionType_enum_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_constraint",
- "description": "unique or primary key constraints on table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "stripeCheckoutSession_pkey",
- "description": "unique or primary key constraint on columns \"stripeSessionId\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_insert_input",
- "description": "input type for inserting data into table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": [
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
- "type": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
+ "name": "eventPassNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNftContract_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "args": [],
+ "name": "eventPassNftContract_by_pk",
+ "description": "fetch data from the table: \"eventPassNftContract\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "args": [],
+ "name": "eventPassNftContract_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassNftContract\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNftContract_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNftContract",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
+ "name": "eventPassNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassNft_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft_aggregate",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "args": [],
+ "name": "eventPassNft_by_pk",
+ "description": "fetch data from the table: \"eventPassNft\" using primary key columns",
+ "args": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "eventPassNft",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "args": [],
+ "name": "eventPassNft_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassNft\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassNft",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCheckoutSession_mutation_response",
- "description": "response of any mutation on the table \"stripeCheckoutSession\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "name": "eventPassOrderSums",
+ "description": "fetch data from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -134631,7 +179414,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCheckoutSession",
+ "name": "eventPassOrderSums",
"ofType": null
}
}
@@ -134639,572 +179422,1070 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_on_conflict",
- "description": "on_conflict condition type for table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": [
+ },
{
- "name": "constraint",
- "description": null,
+ "name": "eventPassOrderSums_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassOrderSums_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_constraint",
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "update_columns",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
+ "name": "eventPassOrderSums_by_pk",
+ "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns",
+ "args": [
+ {
+ "name": "eventPassId",
+ "description": null,
+ "type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_update_column",
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
- }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_order_by",
- "description": "Ordering options when selecting data from \"stripeCheckoutSession\".",
- "fields": null,
- "inputFields": [
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": null,
+ ],
"type": {
- "kind": "ENUM",
- "name": "order_by",
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_pk_columns_input",
- "description": "primary key columns input for table: stripeCheckoutSession",
- "fields": null,
- "inputFields": [
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
+ "name": "eventPassOrderSums_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassOrderSums\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassOrderSums_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassOrderSums",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_select_column",
- "description": "select columns of table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_set_input",
- "description": "input type for updating data in table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": [
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "name": "eventPassType",
+ "description": "fetch data from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_stream_cursor_input",
- "description": "Streaming cursor of the table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "eventPassType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_stream_cursor_value_input",
+ "kind": "OBJECT",
+ "name": "eventPassType_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Stripe Customer ID referencing to the stripeCustomer table.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": "Unique identifier for the Stripe Checkout Session.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "type",
- "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.",
+ "name": "eventPassType_by_pk",
+ "description": "fetch data from the table: \"eventPassType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "ENUM",
- "name": "stripeCheckoutSessionType_enum",
+ "kind": "OBJECT",
+ "name": "eventPassType",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
+ "name": "eventPassType_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassType\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassType",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCheckoutSession_update_column",
- "description": "update columns of table \"stripeCheckoutSession\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeSessionId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "type",
- "description": "column name",
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
+ "name": "eventPassValidationType",
+ "description": "fetch data from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_set_input",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ }
+ }
+ }
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "eventPassValidationType_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventPassValidationType_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCheckoutSession_bool_exp",
+ "kind": "OBJECT",
+ "name": "eventPassValidationType_aggregate",
"ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer",
- "description": "Table to store Stripe Customer IDs for tracking user payment processes.",
- "fields": [
+ },
{
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "name": "eventPassValidationType_by_pk",
+ "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for event pass validation.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
+ "name": "eventPassValidationType_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventPassValidationType\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventPassValidationType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventPassValidationType",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "args": [],
+ "name": "eventStatus",
+ "description": "fetch data from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "eventStatus",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
+ "name": "eventStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"eventStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "eventStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "timestamptz",
+ "kind": "OBJECT",
+ "name": "eventStatus_aggregate",
"ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer_aggregate",
- "description": "aggregated selection of \"stripeCustomer\"",
- "fields": [
+ },
{
- "name": "aggregate",
- "description": null,
- "args": [],
+ "name": "eventStatus_by_pk",
+ "description": "fetch data from the table: \"eventStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "OBJECT",
- "name": "stripeCustomer_aggregate_fields",
+ "name": "eventStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nodes",
- "description": null,
- "args": [],
+ "name": "eventStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"eventStatus\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "eventStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -135216,7 +180497,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCustomer",
+ "name": "eventStatus",
"ofType": null
}
}
@@ -135224,25 +180505,14 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer_aggregate_fields",
- "description": "aggregate fields of \"stripeCustomer\"",
- "fields": [
+ },
{
- "name": "count",
- "description": null,
+ "name": "follow",
+ "description": "fetch data from the table: \"follow\"",
"args": [
{
- "name": "columns",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
"kind": "LIST",
"name": null,
@@ -135251,7 +180521,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "stripeCustomer_select_column",
+ "name": "follow_select_column",
"ofType": null
}
}
@@ -135261,11 +180531,55 @@
"deprecationReason": null
},
{
- "name": "distinct",
- "description": null,
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
"kind": "SCALAR",
- "name": "Boolean",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -135277,374 +180591,314 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "follow",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "max",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCustomer_max_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "min",
- "description": null,
- "args": [],
- "type": {
- "kind": "OBJECT",
- "name": "stripeCustomer_min_fields",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "description": "Boolean expression to filter rows from the table \"stripeCustomer\". All fields are combined with a logical 'AND'.",
- "fields": null,
- "inputFields": [
- {
- "name": "_and",
- "description": null,
+ "name": "follow_aggregate",
+ "description": "fetch aggregated fields from the table: \"follow\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "follow_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- }
+ "kind": "OBJECT",
+ "name": "follow_aggregate",
+ "ofType": null
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_not",
- "description": null,
+ "name": "follow_by_pk",
+ "description": "fetch data from the table: \"follow\" using primary key columns",
+ "args": [
+ {
+ "name": "accountId",
+ "description": "References the unique identifier of the account that is following an organizer.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizerSlug",
+ "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
+ "kind": "OBJECT",
+ "name": "follow",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "_or",
- "description": null,
+ "name": "follow_stream",
+ "description": "fetch data from the table in a streaming manner: \"follow\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "follow_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "follow",
+ "ofType": null
+ }
}
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "uuid_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "String_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "timestamptz_comparison_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCustomer_constraint",
- "description": "unique or primary key constraints on table \"stripeCustomer\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "stripeCustomer_pkey",
- "description": "unique or primary key constraint on columns \"stripeCustomerId\"",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_insert_input",
- "description": "input type for inserting data into table \"stripeCustomer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer_max_fields",
- "description": "aggregate max on columns",
- "fields": [
- {
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer_min_fields",
- "description": "aggregate min on columns",
- "fields": [
- {
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "stripeCustomer_mutation_response",
- "description": "response of any mutation on the table \"stripeCustomer\"",
- "fields": [
- {
- "name": "affected_rows",
- "description": "number of rows affected by the mutation",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "name": "kyc",
+ "description": "fetch data from the table: \"kyc\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kyc_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kyc_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "returning",
- "description": "data from the rows affected by the mutation",
- "args": [],
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -135656,7 +180910,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "stripeCustomer",
+ "name": "kyc",
"ofType": null
}
}
@@ -135664,77 +180918,88 @@
},
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_obj_rel_insert_input",
- "description": "input type for inserting object relation for remote table \"stripeCustomer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_insert_input",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
},
{
- "name": "on_conflict",
- "description": "upsert condition",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_on_conflict",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_on_conflict",
- "description": "on_conflict condition type for table \"stripeCustomer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "constraint",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "stripeCustomer_constraint",
- "ofType": null
+ "name": "kycLevelName",
+ "description": "fetch data from the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update_columns",
- "description": null,
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -135745,394 +181010,315 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "ENUM",
- "name": "stripeCustomer_update_column",
+ "kind": "OBJECT",
+ "name": "kycLevelName",
"ofType": null
}
}
}
},
- "defaultValue": "[]",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_order_by",
- "description": "Ordering options when selecting data from \"stripeCustomer\".",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "order_by",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_pk_columns_input",
- "description": "primary key columns input for table: stripeCustomer",
- "fields": null,
- "inputFields": [
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
+ "name": "kycLevelName_aggregate",
+ "description": "fetch aggregated fields from the table: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycLevelName_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "kycLevelName_aggregate",
"ofType": null
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCustomer_select_column",
- "description": "select columns of table \"stripeCustomer\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_set_input",
- "description": "input type for updating data in table \"stripeCustomer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
+ "name": "kycLevelName_by_pk",
+ "description": "fetch data from the table: \"kycLevelName\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "kycLevelName",
"ofType": null
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_stream_cursor_input",
- "description": "Streaming cursor of the table \"stripeCustomer\"",
- "fields": null,
- "inputFields": [
- {
- "name": "initial_value",
- "description": "Stream column input with initial value",
+ "name": "kycLevelName_stream",
+ "description": "fetch data from the table in a streaming manner: \"kycLevelName\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycLevelName_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_stream_cursor_value_input",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycLevelName",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "ordering",
- "description": "cursor ordering",
- "type": {
- "kind": "ENUM",
- "name": "cursor_ordering",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_stream_cursor_value_input",
- "description": "Initial value of the column from where the streaming should start",
- "fields": null,
- "inputFields": [
- {
- "name": "accountId",
- "description": "UUID referencing to the account ID in the existing accounts table.",
- "type": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "Timestamp automatically set when the row is created.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "Unique identifier for the Stripe Customer.",
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "Timestamp automatically updated whenever the row changes.",
- "type": {
- "kind": "SCALAR",
- "name": "timestamptz",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "ENUM",
- "name": "stripeCustomer_update_column",
- "description": "update columns of table \"stripeCustomer\"",
- "fields": null,
- "inputFields": null,
- "interfaces": null,
- "enumValues": [
- {
- "name": "accountId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "created_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stripeCustomerId",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "updated_at",
- "description": "column name",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_updates",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "_set",
- "description": "sets the columns of the filtered rows to the given values",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_set_input",
- "ofType": null
- },
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows which have to be updated",
+ "name": "kycStatus",
+ "description": "fetch data from the table: \"kycStatus\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "kycStatus_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "INPUT_OBJECT",
- "name": "stripeCustomer_bool_exp",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "ofType": null
+ }
+ }
}
},
- "defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "OBJECT",
- "name": "subscription_root",
- "description": null,
- "fields": [
+ },
{
- "name": "account",
- "description": "fetch data from the table: \"account\"",
+ "name": "kycStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"kycStatus\"",
"args": [
{
"name": "distinct_on",
@@ -136145,7 +181331,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "account_select_column",
+ "name": "kycStatus_select_column",
"ofType": null
}
}
@@ -136189,7 +181375,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "account_order_by",
+ "name": "kycStatus_order_by",
"ofType": null
}
}
@@ -136203,7 +181389,101 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
+ "name": "kycStatus_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "kycStatus_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "kycStatus_by_pk",
+ "description": "fetch data from the table: \"kycStatus\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "kycStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "kycStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"kycStatus\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "kycStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136222,7 +181502,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "account",
+ "name": "kycStatus",
"ofType": null
}
}
@@ -136232,8 +181512,8 @@
"deprecationReason": null
},
{
- "name": "account_aggregate",
- "description": "fetch aggregated fields from the table: \"account\"",
+ "name": "kyc_aggregate",
+ "description": "fetch aggregated fields from the table: \"kyc\"",
"args": [
{
"name": "distinct_on",
@@ -136246,7 +181526,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "account_select_column",
+ "name": "kyc_select_column",
"ofType": null
}
}
@@ -136290,7 +181570,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "account_order_by",
+ "name": "kyc_order_by",
"ofType": null
}
}
@@ -136304,7 +181584,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
+ "name": "kyc_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136317,7 +181597,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "account_aggregate",
+ "name": "kyc_aggregate",
"ofType": null
}
},
@@ -136325,12 +181605,12 @@
"deprecationReason": null
},
{
- "name": "account_by_pk",
- "description": "fetch data from the table: \"account\" using primary key columns",
+ "name": "kyc_by_pk",
+ "description": "fetch data from the table: \"kyc\" using primary key columns",
"args": [
{
- "name": "id",
- "description": null,
+ "name": "externalUserId",
+ "description": "UUID referencing the user ID in the existing accounts table.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -136347,15 +181627,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "account",
+ "name": "kyc",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "account_stream",
- "description": "fetch data from the table in a streaming manner: \"account\"",
+ "name": "kyc_stream",
+ "description": "fetch data from the table in a streaming manner: \"kyc\"",
"args": [
{
"name": "batch_size",
@@ -136384,7 +181664,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "account_stream_cursor_input",
+ "name": "kyc_stream_cursor_input",
"ofType": null
}
}
@@ -136398,7 +181678,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "account_bool_exp",
+ "name": "kyc_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136417,7 +181697,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "account",
+ "name": "kyc",
"ofType": null
}
}
@@ -136427,8 +181707,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceParameters",
- "description": "fetch data from the table: \"contentSpaceParameters\"",
+ "name": "lotteryParameters",
+ "description": "fetch data from the table: \"lotteryParameters\"",
"args": [
{
"name": "distinct_on",
@@ -136441,7 +181721,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
+ "name": "lotteryParameters_select_column",
"ofType": null
}
}
@@ -136485,7 +181765,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_order_by",
+ "name": "lotteryParameters_order_by",
"ofType": null
}
}
@@ -136499,7 +181779,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
+ "name": "lotteryParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136518,7 +181798,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "name": "lotteryParameters",
"ofType": null
}
}
@@ -136528,8 +181808,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"",
+ "name": "lotteryParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"lotteryParameters\"",
"args": [
{
"name": "distinct_on",
@@ -136542,7 +181822,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "contentSpaceParameters_select_column",
+ "name": "lotteryParameters_select_column",
"ofType": null
}
}
@@ -136586,7 +181866,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_order_by",
+ "name": "lotteryParameters_order_by",
"ofType": null
}
}
@@ -136600,7 +181880,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
+ "name": "lotteryParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136613,7 +181893,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceParameters_aggregate",
+ "name": "lotteryParameters_aggregate",
"ofType": null
}
},
@@ -136621,8 +181901,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceParameters_by_pk",
- "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns",
+ "name": "lotteryParameters_by_pk",
+ "description": "fetch data from the table: \"lotteryParameters\" using primary key columns",
"args": [
{
"name": "id",
@@ -136643,15 +181923,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "name": "lotteryParameters",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceParameters_stream",
- "description": "fetch data from the table in a streaming manner: \"contentSpaceParameters\"",
+ "name": "lotteryParameters_stream",
+ "description": "fetch data from the table in a streaming manner: \"lotteryParameters\"",
"args": [
{
"name": "batch_size",
@@ -136680,7 +181960,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_stream_cursor_input",
+ "name": "lotteryParameters_stream_cursor_input",
"ofType": null
}
}
@@ -136694,7 +181974,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceParameters_bool_exp",
+ "name": "lotteryParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136713,7 +181993,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceParameters",
+ "name": "lotteryParameters",
"ofType": null
}
}
@@ -136723,8 +182003,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceStatus",
- "description": "fetch data from the table: \"contentSpaceStatus\"",
+ "name": "lotteryStatus",
+ "description": "fetch data from the table: \"lotteryStatus\"",
"args": [
{
"name": "distinct_on",
@@ -136737,7 +182017,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
+ "name": "lotteryStatus_select_column",
"ofType": null
}
}
@@ -136781,7 +182061,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_order_by",
+ "name": "lotteryStatus_order_by",
"ofType": null
}
}
@@ -136795,7 +182075,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "name": "lotteryStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136814,7 +182094,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "name": "lotteryStatus",
"ofType": null
}
}
@@ -136824,8 +182104,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"",
+ "name": "lotteryStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"lotteryStatus\"",
"args": [
{
"name": "distinct_on",
@@ -136838,7 +182118,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "contentSpaceStatus_select_column",
+ "name": "lotteryStatus_select_column",
"ofType": null
}
}
@@ -136882,7 +182162,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_order_by",
+ "name": "lotteryStatus_order_by",
"ofType": null
}
}
@@ -136896,7 +182176,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "name": "lotteryStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -136909,7 +182189,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceStatus_aggregate",
+ "name": "lotteryStatus_aggregate",
"ofType": null
}
},
@@ -136917,8 +182197,8 @@
"deprecationReason": null
},
{
- "name": "contentSpaceStatus_by_pk",
- "description": "fetch data from the table: \"contentSpaceStatus\" using primary key columns",
+ "name": "lotteryStatus_by_pk",
+ "description": "fetch data from the table: \"lotteryStatus\" using primary key columns",
"args": [
{
"name": "value",
@@ -136939,15 +182219,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "name": "lotteryStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "contentSpaceStatus_stream",
- "description": "fetch data from the table in a streaming manner: \"contentSpaceStatus\"",
+ "name": "lotteryStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"lotteryStatus\"",
"args": [
{
"name": "batch_size",
@@ -136976,7 +182256,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_stream_cursor_input",
+ "name": "lotteryStatus_stream_cursor_input",
"ofType": null
}
}
@@ -136990,7 +182270,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "contentSpaceStatus_bool_exp",
+ "name": "lotteryStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137009,7 +182289,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "contentSpaceStatus",
+ "name": "lotteryStatus",
"ofType": null
}
}
@@ -137019,8 +182299,8 @@
"deprecationReason": null
},
{
- "name": "currency",
- "description": "fetch data from the table: \"currency\"",
+ "name": "loyaltyCardNft",
+ "description": "fetch data from the table: \"loyaltyCardNft\"",
"args": [
{
"name": "distinct_on",
@@ -137033,7 +182313,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "currency_select_column",
+ "name": "loyaltyCardNft_select_column",
"ofType": null
}
}
@@ -137077,7 +182357,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "currency_order_by",
+ "name": "loyaltyCardNft_order_by",
"ofType": null
}
}
@@ -137091,7 +182371,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
+ "name": "loyaltyCardNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137110,7 +182390,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "currency",
+ "name": "loyaltyCardNft",
"ofType": null
}
}
@@ -137120,8 +182400,8 @@
"deprecationReason": null
},
{
- "name": "currency_aggregate",
- "description": "fetch aggregated fields from the table: \"currency\"",
+ "name": "loyaltyCardNftContract",
+ "description": "fetch data from the table: \"loyaltyCardNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -137134,7 +182414,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "currency_select_column",
+ "name": "loyaltyCardNftContract_select_column",
"ofType": null
}
}
@@ -137178,7 +182458,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "currency_order_by",
+ "name": "loyaltyCardNftContract_order_by",
"ofType": null
}
}
@@ -137192,7 +182472,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
+ "name": "loyaltyCardNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137204,75 +182484,82 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "currency_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "currency_by_pk",
- "description": "fetch data from the table: \"currency\" using primary key columns",
+ "name": "loyaltyCardNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardNftContract\"",
"args": [
{
- "name": "value",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardNftContract_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "currency",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "currency_stream",
- "description": "fetch data from the table in a streaming manner: \"currency\"",
- "args": [
+ },
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "currency_stream_cursor_input",
+ "name": "loyaltyCardNftContract_order_by",
"ofType": null
}
}
@@ -137286,7 +182573,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "currency_bool_exp",
+ "name": "loyaltyCardNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137298,82 +182585,75 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "currency",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract_aggregate",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters",
- "description": "fetch data from the table: \"eventParameters\"",
+ "name": "loyaltyCardNftContract_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardNftContract\" using primary key columns",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventParameters_select_column",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardNftContract",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardNftContract_stream",
+ "description": "fetch data from the table in a streaming manner: \"loyaltyCardNftContract\"",
+ "args": [
{
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
+ "name": "loyaltyCardNftContract_stream_cursor_input",
"ofType": null
}
}
@@ -137387,7 +182667,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "loyaltyCardNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137406,7 +182686,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "loyaltyCardNftContract",
"ofType": null
}
}
@@ -137416,8 +182696,8 @@
"deprecationReason": null
},
{
- "name": "eventParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"eventParameters\"",
+ "name": "loyaltyCardNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardNft\"",
"args": [
{
"name": "distinct_on",
@@ -137430,7 +182710,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventParameters_select_column",
+ "name": "loyaltyCardNft_select_column",
"ofType": null
}
}
@@ -137474,7 +182754,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_order_by",
+ "name": "loyaltyCardNft_order_by",
"ofType": null
}
}
@@ -137488,7 +182768,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "loyaltyCardNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137501,7 +182781,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventParameters_aggregate",
+ "name": "loyaltyCardNft_aggregate",
"ofType": null
}
},
@@ -137509,8 +182789,8 @@
"deprecationReason": null
},
{
- "name": "eventParameters_by_pk",
- "description": "fetch data from the table: \"eventParameters\" using primary key columns",
+ "name": "loyaltyCardNft_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardNft\" using primary key columns",
"args": [
{
"name": "id",
@@ -137531,15 +182811,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "loyaltyCardNft",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventParameters_stream",
- "description": "fetch data from the table in a streaming manner: \"eventParameters\"",
+ "name": "loyaltyCardNft_stream",
+ "description": "fetch data from the table in a streaming manner: \"loyaltyCardNft\"",
"args": [
{
"name": "batch_size",
@@ -137568,7 +182848,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_stream_cursor_input",
+ "name": "loyaltyCardNft_stream_cursor_input",
"ofType": null
}
}
@@ -137582,7 +182862,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventParameters_bool_exp",
+ "name": "loyaltyCardNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137601,7 +182881,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventParameters",
+ "name": "loyaltyCardNft",
"ofType": null
}
}
@@ -137611,8 +182891,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNft",
- "description": "fetch data from the table: \"eventPassNft\"",
+ "name": "loyaltyCardParameters",
+ "description": "fetch data from the table: \"loyaltyCardParameters\"",
"args": [
{
"name": "distinct_on",
@@ -137625,7 +182905,108 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "loyaltyCardParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "loyaltyCardParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "loyaltyCardParameters_select_column",
"ofType": null
}
}
@@ -137669,7 +183050,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "loyaltyCardParameters_order_by",
"ofType": null
}
}
@@ -137683,7 +183064,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "loyaltyCardParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137695,82 +183076,75 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNft",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters_aggregate",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContract",
- "description": "fetch data from the table: \"eventPassNftContract\"",
+ "name": "loyaltyCardParameters_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardParameters\" using primary key columns",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "eventPassNftContract_select_column",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "loyaltyCardParameters",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardParameters_stream",
+ "description": "fetch data from the table in a streaming manner: \"loyaltyCardParameters\"",
+ "args": [
{
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
+ "name": "loyaltyCardParameters_stream_cursor_input",
"ofType": null
}
}
@@ -137784,7 +183158,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "loyaltyCardParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137803,7 +183177,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContract",
+ "name": "loyaltyCardParameters",
"ofType": null
}
}
@@ -137813,8 +183187,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContractType",
- "description": "fetch data from the table: \"eventPassNftContractType\"",
+ "name": "loyaltyCardStatus",
+ "description": "fetch data from the table: \"loyaltyCardStatus\"",
"args": [
{
"name": "distinct_on",
@@ -137827,7 +183201,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
+ "name": "loyaltyCardStatus_select_column",
"ofType": null
}
}
@@ -137871,7 +183245,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_order_by",
+ "name": "loyaltyCardStatus_order_by",
"ofType": null
}
}
@@ -137885,7 +183259,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
+ "name": "loyaltyCardStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137904,7 +183278,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "name": "loyaltyCardStatus",
"ofType": null
}
}
@@ -137914,8 +183288,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContractType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"",
+ "name": "loyaltyCardStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"loyaltyCardStatus\"",
"args": [
{
"name": "distinct_on",
@@ -137928,7 +183302,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContractType_select_column",
+ "name": "loyaltyCardStatus_select_column",
"ofType": null
}
}
@@ -137972,7 +183346,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_order_by",
+ "name": "loyaltyCardStatus_order_by",
"ofType": null
}
}
@@ -137986,7 +183360,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
+ "name": "loyaltyCardStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -137999,7 +183373,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContractType_aggregate",
+ "name": "loyaltyCardStatus_aggregate",
"ofType": null
}
},
@@ -138007,12 +183381,12 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContractType_by_pk",
- "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns",
+ "name": "loyaltyCardStatus_by_pk",
+ "description": "fetch data from the table: \"loyaltyCardStatus\" using primary key columns",
"args": [
{
"name": "value",
- "description": "Type name for event pass NFT contract.",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -138029,15 +183403,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "name": "loyaltyCardStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNftContractType_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassNftContractType\"",
+ "name": "loyaltyCardStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"loyaltyCardStatus\"",
"args": [
{
"name": "batch_size",
@@ -138066,7 +183440,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_stream_cursor_input",
+ "name": "loyaltyCardStatus_stream_cursor_input",
"ofType": null
}
}
@@ -138080,7 +183454,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContractType_bool_exp",
+ "name": "loyaltyCardStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138099,7 +183473,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContractType",
+ "name": "loyaltyCardStatus",
"ofType": null
}
}
@@ -138109,8 +183483,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNftContract_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNftContract\"",
+ "name": "minterTemporaryWallet",
+ "description": "fetch data from the table: \"minterTemporaryWallet\"",
"args": [
{
"name": "distinct_on",
@@ -138123,7 +183497,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNftContract_select_column",
+ "name": "minterTemporaryWallet_select_column",
"ofType": null
}
}
@@ -138167,101 +183541,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_order_by",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventPassNftContract_aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract_by_pk",
- "description": "fetch data from the table: \"eventPassNftContract\" using primary key columns",
- "args": [
- {
- "name": "id",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventPassNftContract",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventPassNftContract_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassNftContract\"",
- "args": [
- {
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_stream_cursor_input",
+ "name": "minterTemporaryWallet_order_by",
"ofType": null
}
}
@@ -138275,7 +183555,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNftContract_bool_exp",
+ "name": "minterTemporaryWallet_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138294,7 +183574,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNftContract",
+ "name": "minterTemporaryWallet",
"ofType": null
}
}
@@ -138304,8 +183584,8 @@
"deprecationReason": null
},
{
- "name": "eventPassNft_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassNft\"",
+ "name": "minterTemporaryWallet_aggregate",
+ "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"",
"args": [
{
"name": "distinct_on",
@@ -138318,7 +183598,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassNft_select_column",
+ "name": "minterTemporaryWallet_select_column",
"ofType": null
}
}
@@ -138362,7 +183642,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_order_by",
+ "name": "minterTemporaryWallet_order_by",
"ofType": null
}
}
@@ -138376,7 +183656,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "minterTemporaryWallet_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138389,7 +183669,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft_aggregate",
+ "name": "minterTemporaryWallet_aggregate",
"ofType": null
}
},
@@ -138397,18 +183677,18 @@
"deprecationReason": null
},
{
- "name": "eventPassNft_by_pk",
- "description": "fetch data from the table: \"eventPassNft\" using primary key columns",
+ "name": "minterTemporaryWallet_by_pk",
+ "description": "fetch data from the table: \"minterTemporaryWallet\" using primary key columns",
"args": [
{
- "name": "id",
- "description": null,
+ "name": "address",
+ "description": "The blockchain address of the temporary wallet.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -138419,15 +183699,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "minterTemporaryWallet",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassNft_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassNft\"",
+ "name": "minterTemporaryWallet_stream",
+ "description": "fetch data from the table in a streaming manner: \"minterTemporaryWallet\"",
"args": [
{
"name": "batch_size",
@@ -138456,7 +183736,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_stream_cursor_input",
+ "name": "minterTemporaryWallet_stream_cursor_input",
"ofType": null
}
}
@@ -138470,7 +183750,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassNft_bool_exp",
+ "name": "minterTemporaryWallet_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138489,7 +183769,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassNft",
+ "name": "minterTemporaryWallet",
"ofType": null
}
}
@@ -138499,8 +183779,8 @@
"deprecationReason": null
},
{
- "name": "eventPassOrderSums",
- "description": "fetch data from the table: \"eventPassOrderSums\"",
+ "name": "nftMintPassword",
+ "description": "fetch data from the table: \"nftMintPassword\"",
"args": [
{
"name": "distinct_on",
@@ -138513,7 +183793,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
+ "name": "nftMintPassword_select_column",
"ofType": null
}
}
@@ -138557,7 +183837,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
+ "name": "nftMintPassword_order_by",
"ofType": null
}
}
@@ -138571,7 +183851,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
+ "name": "nftMintPassword_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138590,7 +183870,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "nftMintPassword",
"ofType": null
}
}
@@ -138600,8 +183880,8 @@
"deprecationReason": null
},
{
- "name": "eventPassOrderSums_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"",
+ "name": "nftMintPassword_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftMintPassword\"",
"args": [
{
"name": "distinct_on",
@@ -138614,7 +183894,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassOrderSums_select_column",
+ "name": "nftMintPassword_select_column",
"ofType": null
}
}
@@ -138658,7 +183938,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_order_by",
+ "name": "nftMintPassword_order_by",
"ofType": null
}
}
@@ -138672,7 +183952,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
+ "name": "nftMintPassword_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138685,7 +183965,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassOrderSums_aggregate",
+ "name": "nftMintPassword_aggregate",
"ofType": null
}
},
@@ -138693,18 +183973,18 @@
"deprecationReason": null
},
{
- "name": "eventPassOrderSums_by_pk",
- "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns",
+ "name": "nftMintPassword_by_pk",
+ "description": "fetch data from the table: \"nftMintPassword\" using primary key columns",
"args": [
{
- "name": "eventPassId",
+ "name": "id",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -138715,15 +183995,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "nftMintPassword",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassOrderSums_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassOrderSums\"",
+ "name": "nftMintPassword_stream",
+ "description": "fetch data from the table in a streaming manner: \"nftMintPassword\"",
"args": [
{
"name": "batch_size",
@@ -138752,7 +184032,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_stream_cursor_input",
+ "name": "nftMintPassword_stream_cursor_input",
"ofType": null
}
}
@@ -138766,7 +184046,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassOrderSums_bool_exp",
+ "name": "nftMintPassword_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138785,7 +184065,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassOrderSums",
+ "name": "nftMintPassword",
"ofType": null
}
}
@@ -138795,8 +184075,8 @@
"deprecationReason": null
},
{
- "name": "eventPassType",
- "description": "fetch data from the table: \"eventPassType\"",
+ "name": "nftStatus",
+ "description": "fetch data from the table: \"nftStatus\"",
"args": [
{
"name": "distinct_on",
@@ -138809,7 +184089,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassType_select_column",
+ "name": "nftStatus_select_column",
"ofType": null
}
}
@@ -138853,7 +184133,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_order_by",
+ "name": "nftStatus_order_by",
"ofType": null
}
}
@@ -138867,7 +184147,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
+ "name": "nftStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138886,7 +184166,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassType",
+ "name": "nftStatus",
"ofType": null
}
}
@@ -138896,8 +184176,8 @@
"deprecationReason": null
},
{
- "name": "eventPassType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassType\"",
+ "name": "nftStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftStatus\"",
"args": [
{
"name": "distinct_on",
@@ -138910,7 +184190,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassType_select_column",
+ "name": "nftStatus_select_column",
"ofType": null
}
}
@@ -138954,7 +184234,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_order_by",
+ "name": "nftStatus_order_by",
"ofType": null
}
}
@@ -138968,7 +184248,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
+ "name": "nftStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -138981,7 +184261,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassType_aggregate",
+ "name": "nftStatus_aggregate",
"ofType": null
}
},
@@ -138989,12 +184269,12 @@
"deprecationReason": null
},
{
- "name": "eventPassType_by_pk",
- "description": "fetch data from the table: \"eventPassType\" using primary key columns",
+ "name": "nftStatus_by_pk",
+ "description": "fetch data from the table: \"nftStatus\" using primary key columns",
"args": [
{
"name": "value",
- "description": "Type name for event pass.",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -139011,15 +184291,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventPassType",
+ "name": "nftStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassType_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassType\"",
+ "name": "nftStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"nftStatus\"",
"args": [
{
"name": "batch_size",
@@ -139048,7 +184328,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_stream_cursor_input",
+ "name": "nftStatus_stream_cursor_input",
"ofType": null
}
}
@@ -139062,7 +184342,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassType_bool_exp",
+ "name": "nftStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139081,7 +184361,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassType",
+ "name": "nftStatus",
"ofType": null
}
}
@@ -139091,8 +184371,8 @@
"deprecationReason": null
},
{
- "name": "eventPassValidationType",
- "description": "fetch data from the table: \"eventPassValidationType\"",
+ "name": "nftTransfer",
+ "description": "fetch data from the table: \"nftTransfer\"",
"args": [
{
"name": "distinct_on",
@@ -139105,7 +184385,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassValidationType_select_column",
+ "name": "nftTransfer_select_column",
"ofType": null
}
}
@@ -139149,7 +184429,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_order_by",
+ "name": "nftTransfer_order_by",
"ofType": null
}
}
@@ -139163,7 +184443,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
+ "name": "nftTransfer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139182,7 +184462,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassValidationType",
+ "name": "nftTransfer",
"ofType": null
}
}
@@ -139192,8 +184472,8 @@
"deprecationReason": null
},
{
- "name": "eventPassValidationType_aggregate",
- "description": "fetch aggregated fields from the table: \"eventPassValidationType\"",
+ "name": "nftTransfer_aggregate",
+ "description": "fetch aggregated fields from the table: \"nftTransfer\"",
"args": [
{
"name": "distinct_on",
@@ -139206,7 +184486,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventPassValidationType_select_column",
+ "name": "nftTransfer_select_column",
"ofType": null
}
}
@@ -139250,7 +184530,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_order_by",
+ "name": "nftTransfer_order_by",
"ofType": null
}
}
@@ -139264,7 +184544,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
+ "name": "nftTransfer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139277,7 +184557,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassValidationType_aggregate",
+ "name": "nftTransfer_aggregate",
"ofType": null
}
},
@@ -139285,18 +184565,18 @@
"deprecationReason": null
},
{
- "name": "eventPassValidationType_by_pk",
- "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns",
+ "name": "nftTransfer_by_pk",
+ "description": "fetch data from the table: \"nftTransfer\" using primary key columns",
"args": [
{
- "name": "value",
- "description": "Type name for event pass validation.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -139307,15 +184587,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "eventPassValidationType",
+ "name": "nftTransfer",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventPassValidationType_stream",
- "description": "fetch data from the table in a streaming manner: \"eventPassValidationType\"",
+ "name": "nftTransfer_stream",
+ "description": "fetch data from the table in a streaming manner: \"nftTransfer\"",
"args": [
{
"name": "batch_size",
@@ -139344,7 +184624,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_stream_cursor_input",
+ "name": "nftTransfer_stream_cursor_input",
"ofType": null
}
}
@@ -139358,7 +184638,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventPassValidationType_bool_exp",
+ "name": "nftTransfer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139377,7 +184657,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventPassValidationType",
+ "name": "nftTransfer",
"ofType": null
}
}
@@ -139387,8 +184667,8 @@
"deprecationReason": null
},
{
- "name": "eventStatus",
- "description": "fetch data from the table: \"eventStatus\"",
+ "name": "order",
+ "description": "fetch data from the table: \"order\"",
"args": [
{
"name": "distinct_on",
@@ -139401,7 +184681,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventStatus_select_column",
+ "name": "order_select_column",
"ofType": null
}
}
@@ -139445,7 +184725,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_order_by",
+ "name": "order_order_by",
"ofType": null
}
}
@@ -139459,7 +184739,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "name": "order_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139478,7 +184758,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "eventStatus",
+ "name": "order",
"ofType": null
}
}
@@ -139488,8 +184768,8 @@
"deprecationReason": null
},
{
- "name": "eventStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"eventStatus\"",
+ "name": "orderStatus",
+ "description": "fetch data from the table: \"orderStatus\"",
"args": [
{
"name": "distinct_on",
@@ -139502,7 +184782,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "eventStatus_select_column",
+ "name": "orderStatus_select_column",
"ofType": null
}
}
@@ -139546,7 +184826,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_order_by",
+ "name": "orderStatus_order_by",
"ofType": null
}
}
@@ -139560,7 +184840,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "name": "orderStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139572,75 +184852,82 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "eventStatus_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "eventStatus_by_pk",
- "description": "fetch data from the table: \"eventStatus\" using primary key columns",
+ "name": "orderStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"orderStatus\"",
"args": [
{
- "name": "value",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "orderStatus_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "eventStatus",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "eventStatus_stream",
- "description": "fetch data from the table in a streaming manner: \"eventStatus\"",
- "args": [
+ },
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_stream_cursor_input",
+ "name": "orderStatus_order_by",
"ofType": null
}
}
@@ -139654,7 +184941,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "eventStatus_bool_exp",
+ "name": "orderStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139666,82 +184953,75 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "eventStatus",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "orderStatus_aggregate",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "follow",
- "description": "fetch data from the table: \"follow\"",
+ "name": "orderStatus_by_pk",
+ "description": "fetch data from the table: \"orderStatus\" using primary key columns",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "value",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "follow_select_column",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "orderStatus",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"orderStatus\"",
+ "args": [
{
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "follow_order_by",
+ "name": "orderStatus_stream_cursor_input",
"ofType": null
}
}
@@ -139755,7 +185035,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "name": "orderStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139774,7 +185054,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "follow",
+ "name": "orderStatus",
"ofType": null
}
}
@@ -139784,8 +185064,8 @@
"deprecationReason": null
},
{
- "name": "follow_aggregate",
- "description": "fetch aggregated fields from the table: \"follow\"",
+ "name": "order_aggregate",
+ "description": "fetch aggregated fields from the table: \"order\"",
"args": [
{
"name": "distinct_on",
@@ -139798,7 +185078,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "follow_select_column",
+ "name": "order_select_column",
"ofType": null
}
}
@@ -139842,7 +185122,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "follow_order_by",
+ "name": "order_order_by",
"ofType": null
}
}
@@ -139856,7 +185136,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "name": "order_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139869,7 +185149,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "follow_aggregate",
+ "name": "order_aggregate",
"ofType": null
}
},
@@ -139877,12 +185157,12 @@
"deprecationReason": null
},
{
- "name": "follow_by_pk",
- "description": "fetch data from the table: \"follow\" using primary key columns",
+ "name": "order_by_pk",
+ "description": "fetch data from the table: \"order\" using primary key columns",
"args": [
{
- "name": "accountId",
- "description": "References the unique identifier of the account that is following an organizer.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -139895,35 +185175,19 @@
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "organizerSlug",
- "description": "Represents the unique slug of the organizer being followed. Slugs are user-friendly identifiers that uniquely identify organizers.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"type": {
"kind": "OBJECT",
- "name": "follow",
+ "name": "order",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "follow_stream",
- "description": "fetch data from the table in a streaming manner: \"follow\"",
+ "name": "order_stream",
+ "description": "fetch data from the table in a streaming manner: \"order\"",
"args": [
{
"name": "batch_size",
@@ -139952,7 +185216,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "follow_stream_cursor_input",
+ "name": "order_stream_cursor_input",
"ofType": null
}
}
@@ -139966,7 +185230,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "follow_bool_exp",
+ "name": "order_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -139985,7 +185249,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "follow",
+ "name": "order",
"ofType": null
}
}
@@ -139995,8 +185259,8 @@
"deprecationReason": null
},
{
- "name": "kyc",
- "description": "fetch data from the table: \"kyc\"",
+ "name": "packEventPassNft",
+ "description": "fetch data from the table: \"packEventPassNft\"",
"args": [
{
"name": "distinct_on",
@@ -140009,7 +185273,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kyc_select_column",
+ "name": "packEventPassNft_select_column",
"ofType": null
}
}
@@ -140053,7 +185317,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
+ "name": "packEventPassNft_order_by",
"ofType": null
}
}
@@ -140067,7 +185331,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "name": "packEventPassNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140086,7 +185350,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kyc",
+ "name": "packEventPassNft",
"ofType": null
}
}
@@ -140096,8 +185360,8 @@
"deprecationReason": null
},
{
- "name": "kycLevelName",
- "description": "fetch data from the table: \"kycLevelName\"",
+ "name": "packEventPassNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"packEventPassNft\"",
"args": [
{
"name": "distinct_on",
@@ -140110,7 +185374,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kycLevelName_select_column",
+ "name": "packEventPassNft_select_column",
"ofType": null
}
}
@@ -140154,7 +185418,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_order_by",
+ "name": "packEventPassNft_order_by",
"ofType": null
}
}
@@ -140168,7 +185432,117 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
+ "name": "packEventPassNft_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNft_by_pk",
+ "description": "fetch data from the table: \"packEventPassNft\" using primary key columns",
+ "args": [
+ {
+ "name": "eventPassNftId",
+ "description": "Identifier for the event pass NFT.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packNftSupplyId",
+ "description": "Identifier for the pack NFT supply.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "packEventPassNft",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "packEventPassNft_stream",
+ "description": "fetch data from the table in a streaming manner: \"packEventPassNft\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "packEventPassNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140187,7 +185561,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kycLevelName",
+ "name": "packEventPassNft",
"ofType": null
}
}
@@ -140197,8 +185571,8 @@
"deprecationReason": null
},
{
- "name": "kycLevelName_aggregate",
- "description": "fetch aggregated fields from the table: \"kycLevelName\"",
+ "name": "packNftContract",
+ "description": "fetch data from the table: \"packNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -140211,7 +185585,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kycLevelName_select_column",
+ "name": "packNftContract_select_column",
"ofType": null
}
}
@@ -140255,7 +185629,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_order_by",
+ "name": "packNftContract_order_by",
"ofType": null
}
}
@@ -140269,7 +185643,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
+ "name": "packNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140281,75 +185655,82 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "kycLevelName_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "packNftContract",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycLevelName_by_pk",
- "description": "fetch data from the table: \"kycLevelName\" using primary key columns",
+ "name": "packNftContractEventPass",
+ "description": "fetch data from the table: \"packNftContractEventPass\"",
"args": [
{
- "name": "value",
- "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.",
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "packNftContractEventPass_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "kycLevelName",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kycLevelName_stream",
- "description": "fetch data from the table in a streaming manner: \"kycLevelName\"",
- "args": [
+ },
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_stream_cursor_input",
+ "name": "packNftContractEventPass_order_by",
"ofType": null
}
}
@@ -140363,7 +185744,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycLevelName_bool_exp",
+ "name": "packNftContractEventPass_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140382,7 +185763,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kycLevelName",
+ "name": "packNftContractEventPass",
"ofType": null
}
}
@@ -140392,8 +185773,8 @@
"deprecationReason": null
},
{
- "name": "kycStatus",
- "description": "fetch data from the table: \"kycStatus\"",
+ "name": "packNftContractEventPass_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"",
"args": [
{
"name": "distinct_on",
@@ -140406,7 +185787,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kycStatus_select_column",
+ "name": "packNftContractEventPass_select_column",
"ofType": null
}
}
@@ -140450,7 +185831,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_order_by",
+ "name": "packNftContractEventPass_order_by",
"ofType": null
}
}
@@ -140464,7 +185845,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
+ "name": "packNftContractEventPass_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140476,84 +185857,28 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "packNftContractEventPass_aggregate",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"kycStatus\"",
+ "name": "packNftContractEventPass_by_pk",
+ "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "kycStatus_select_column",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "eventPassId",
+ "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_order_by",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
}
},
"defaultValue": null,
@@ -140561,43 +185886,14 @@
"deprecationReason": null
},
{
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "kycStatus_aggregate",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "kycStatus_by_pk",
- "description": "fetch data from the table: \"kycStatus\" using primary key columns",
- "args": [
- {
- "name": "value",
- "description": "init: Initial registration has started. A client is still in the process of filling out the applicant profile. Not all required documents are currently uploaded.\npending: An applicant is ready to be processed.\nprechecked: The check is in a half way of being finished.\nqueued: The checks have been started for the applicant.\ncompleted: The check has been completed.\nonHold: Applicant waits for a final decision from compliance officer or waits for all beneficiaries to pass KYC in case of company verification.",
+ "name": "packNftContractId",
+ "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -140608,15 +185904,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "kycStatus",
+ "name": "packNftContractEventPass",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kycStatus_stream",
- "description": "fetch data from the table in a streaming manner: \"kycStatus\"",
+ "name": "packNftContractEventPass_stream",
+ "description": "fetch data from the table in a streaming manner: \"packNftContractEventPass\"",
"args": [
{
"name": "batch_size",
@@ -140645,7 +185941,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_stream_cursor_input",
+ "name": "packNftContractEventPass_stream_cursor_input",
"ofType": null
}
}
@@ -140659,7 +185955,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kycStatus_bool_exp",
+ "name": "packNftContractEventPass_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140678,7 +185974,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kycStatus",
+ "name": "packNftContractEventPass",
"ofType": null
}
}
@@ -140688,8 +185984,8 @@
"deprecationReason": null
},
{
- "name": "kyc_aggregate",
- "description": "fetch aggregated fields from the table: \"kyc\"",
+ "name": "packNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -140702,7 +185998,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "kyc_select_column",
+ "name": "packNftContract_select_column",
"ofType": null
}
}
@@ -140746,7 +186042,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kyc_order_by",
+ "name": "packNftContract_order_by",
"ofType": null
}
}
@@ -140760,7 +186056,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "name": "packNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140773,7 +186069,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kyc_aggregate",
+ "name": "packNftContract_aggregate",
"ofType": null
}
},
@@ -140781,12 +186077,12 @@
"deprecationReason": null
},
{
- "name": "kyc_by_pk",
- "description": "fetch data from the table: \"kyc\" using primary key columns",
+ "name": "packNftContract_by_pk",
+ "description": "fetch data from the table: \"packNftContract\" using primary key columns",
"args": [
{
- "name": "externalUserId",
- "description": "UUID referencing the user ID in the existing accounts table.",
+ "name": "id",
+ "description": "Unique identifier for each pack NFT contract.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -140803,15 +186099,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "kyc",
+ "name": "packNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "kyc_stream",
- "description": "fetch data from the table in a streaming manner: \"kyc\"",
+ "name": "packNftContract_stream",
+ "description": "fetch data from the table in a streaming manner: \"packNftContract\"",
"args": [
{
"name": "batch_size",
@@ -140840,7 +186136,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "kyc_stream_cursor_input",
+ "name": "packNftContract_stream_cursor_input",
"ofType": null
}
}
@@ -140854,7 +186150,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "kyc_bool_exp",
+ "name": "packNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140873,7 +186169,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "kyc",
+ "name": "packNftContract",
"ofType": null
}
}
@@ -140883,8 +186179,8 @@
"deprecationReason": null
},
{
- "name": "lotteryParameters",
- "description": "fetch data from the table: \"lotteryParameters\"",
+ "name": "packNftSupply",
+ "description": "fetch data from the table: \"packNftSupply\"",
"args": [
{
"name": "distinct_on",
@@ -140897,7 +186193,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryParameters_select_column",
+ "name": "packNftSupply_select_column",
"ofType": null
}
}
@@ -140941,7 +186237,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_order_by",
+ "name": "packNftSupply_order_by",
"ofType": null
}
}
@@ -140955,7 +186251,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
+ "name": "packNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -140974,7 +186270,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryParameters",
+ "name": "packNftSupply",
"ofType": null
}
}
@@ -140984,8 +186280,8 @@
"deprecationReason": null
},
{
- "name": "lotteryParameters_aggregate",
- "description": "fetch aggregated fields from the table: \"lotteryParameters\"",
+ "name": "packNftSupply_aggregate",
+ "description": "fetch aggregated fields from the table: \"packNftSupply\"",
"args": [
{
"name": "distinct_on",
@@ -140998,7 +186294,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryParameters_select_column",
+ "name": "packNftSupply_select_column",
"ofType": null
}
}
@@ -141042,7 +186338,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_order_by",
+ "name": "packNftSupply_order_by",
"ofType": null
}
}
@@ -141056,7 +186352,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
+ "name": "packNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141069,7 +186365,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryParameters_aggregate",
+ "name": "packNftSupply_aggregate",
"ofType": null
}
},
@@ -141077,8 +186373,8 @@
"deprecationReason": null
},
{
- "name": "lotteryParameters_by_pk",
- "description": "fetch data from the table: \"lotteryParameters\" using primary key columns",
+ "name": "packNftSupply_by_pk",
+ "description": "fetch data from the table: \"packNftSupply\" using primary key columns",
"args": [
{
"name": "id",
@@ -141099,15 +186395,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "lotteryParameters",
+ "name": "packNftSupply",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryParameters_stream",
- "description": "fetch data from the table in a streaming manner: \"lotteryParameters\"",
+ "name": "packNftSupply_stream",
+ "description": "fetch data from the table in a streaming manner: \"packNftSupply\"",
"args": [
{
"name": "batch_size",
@@ -141136,7 +186432,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_stream_cursor_input",
+ "name": "packNftSupply_stream_cursor_input",
"ofType": null
}
}
@@ -141150,7 +186446,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryParameters_bool_exp",
+ "name": "packNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141169,7 +186465,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryParameters",
+ "name": "packNftSupply",
"ofType": null
}
}
@@ -141179,8 +186475,8 @@
"deprecationReason": null
},
{
- "name": "lotteryStatus",
- "description": "fetch data from the table: \"lotteryStatus\"",
+ "name": "packOrderSums",
+ "description": "fetch data from the table: \"packOrderSums\"",
"args": [
{
"name": "distinct_on",
@@ -141193,7 +186489,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryStatus_select_column",
+ "name": "packOrderSums_select_column",
"ofType": null
}
}
@@ -141237,7 +186533,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_order_by",
+ "name": "packOrderSums_order_by",
"ofType": null
}
}
@@ -141251,7 +186547,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "packOrderSums_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141270,7 +186566,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryStatus",
+ "name": "packOrderSums",
"ofType": null
}
}
@@ -141280,8 +186576,8 @@
"deprecationReason": null
},
{
- "name": "lotteryStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"lotteryStatus\"",
+ "name": "packOrderSums_aggregate",
+ "description": "fetch aggregated fields from the table: \"packOrderSums\"",
"args": [
{
"name": "distinct_on",
@@ -141294,7 +186590,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "lotteryStatus_select_column",
+ "name": "packOrderSums_select_column",
"ofType": null
}
}
@@ -141338,7 +186634,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_order_by",
+ "name": "packOrderSums_order_by",
"ofType": null
}
}
@@ -141352,7 +186648,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "packOrderSums_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141365,7 +186661,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryStatus_aggregate",
+ "name": "packOrderSums_aggregate",
"ofType": null
}
},
@@ -141373,11 +186669,11 @@
"deprecationReason": null
},
{
- "name": "lotteryStatus_by_pk",
- "description": "fetch data from the table: \"lotteryStatus\" using primary key columns",
+ "name": "packOrderSums_by_pk",
+ "description": "fetch data from the table: \"packOrderSums\" using primary key columns",
"args": [
{
- "name": "value",
+ "name": "packId",
"description": null,
"type": {
"kind": "NON_NULL",
@@ -141395,15 +186691,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "lotteryStatus",
+ "name": "packOrderSums",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "lotteryStatus_stream",
- "description": "fetch data from the table in a streaming manner: \"lotteryStatus\"",
+ "name": "packOrderSums_stream",
+ "description": "fetch data from the table in a streaming manner: \"packOrderSums\"",
"args": [
{
"name": "batch_size",
@@ -141432,7 +186728,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_stream_cursor_input",
+ "name": "packOrderSums_stream_cursor_input",
"ofType": null
}
}
@@ -141446,7 +186742,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "lotteryStatus_bool_exp",
+ "name": "packOrderSums_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141465,7 +186761,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "lotteryStatus",
+ "name": "packOrderSums",
"ofType": null
}
}
@@ -141475,8 +186771,8 @@
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet",
- "description": "fetch data from the table: \"minterTemporaryWallet\"",
+ "name": "passAmount",
+ "description": "fetch data from the table: \"passAmount\"",
"args": [
{
"name": "distinct_on",
@@ -141489,7 +186785,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
+ "name": "passAmount_select_column",
"ofType": null
}
}
@@ -141533,7 +186829,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_order_by",
+ "name": "passAmount_order_by",
"ofType": null
}
}
@@ -141547,7 +186843,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "passAmount_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141566,7 +186862,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "name": "passAmount",
"ofType": null
}
}
@@ -141576,8 +186872,8 @@
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet_aggregate",
- "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"",
+ "name": "passAmount_aggregate",
+ "description": "fetch aggregated fields from the table: \"passAmount\"",
"args": [
{
"name": "distinct_on",
@@ -141590,7 +186886,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "minterTemporaryWallet_select_column",
+ "name": "passAmount_select_column",
"ofType": null
}
}
@@ -141634,7 +186930,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_order_by",
+ "name": "passAmount_order_by",
"ofType": null
}
}
@@ -141648,7 +186944,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "passAmount_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141661,7 +186957,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet_aggregate",
+ "name": "passAmount_aggregate",
"ofType": null
}
},
@@ -141669,18 +186965,18 @@
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet_by_pk",
- "description": "fetch data from the table: \"minterTemporaryWallet\" using primary key columns",
+ "name": "passAmount_by_pk",
+ "description": "fetch data from the table: \"passAmount\" using primary key columns",
"args": [
{
- "name": "address",
- "description": "The blockchain address of the temporary wallet.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -141691,15 +186987,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "name": "passAmount",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "minterTemporaryWallet_stream",
- "description": "fetch data from the table in a streaming manner: \"minterTemporaryWallet\"",
+ "name": "passAmount_stream",
+ "description": "fetch data from the table in a streaming manner: \"passAmount\"",
"args": [
{
"name": "batch_size",
@@ -141728,7 +187024,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_stream_cursor_input",
+ "name": "passAmount_stream_cursor_input",
"ofType": null
}
}
@@ -141742,7 +187038,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "minterTemporaryWallet_bool_exp",
+ "name": "passAmount_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141761,7 +187057,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "minterTemporaryWallet",
+ "name": "passAmount",
"ofType": null
}
}
@@ -141771,8 +187067,8 @@
"deprecationReason": null
},
{
- "name": "nftTransfer",
- "description": "fetch data from the table: \"nftTransfer\"",
+ "name": "passPricing",
+ "description": "fetch data from the table: \"passPricing\"",
"args": [
{
"name": "distinct_on",
@@ -141785,7 +187081,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "nftTransfer_select_column",
+ "name": "passPricing_select_column",
"ofType": null
}
}
@@ -141829,7 +187125,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
+ "name": "passPricing_order_by",
"ofType": null
}
}
@@ -141843,7 +187139,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "name": "passPricing_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141862,7 +187158,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "nftTransfer",
+ "name": "passPricing",
"ofType": null
}
}
@@ -141872,8 +187168,8 @@
"deprecationReason": null
},
{
- "name": "nftTransfer_aggregate",
- "description": "fetch aggregated fields from the table: \"nftTransfer\"",
+ "name": "passPricing_aggregate",
+ "description": "fetch aggregated fields from the table: \"passPricing\"",
"args": [
{
"name": "distinct_on",
@@ -141886,7 +187182,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "nftTransfer_select_column",
+ "name": "passPricing_select_column",
"ofType": null
}
}
@@ -141930,7 +187226,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_order_by",
+ "name": "passPricing_order_by",
"ofType": null
}
}
@@ -141944,7 +187240,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "name": "passPricing_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -141957,7 +187253,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "nftTransfer_aggregate",
+ "name": "passPricing_aggregate",
"ofType": null
}
},
@@ -141965,8 +187261,8 @@
"deprecationReason": null
},
{
- "name": "nftTransfer_by_pk",
- "description": "fetch data from the table: \"nftTransfer\" using primary key columns",
+ "name": "passPricing_by_pk",
+ "description": "fetch data from the table: \"passPricing\" using primary key columns",
"args": [
{
"name": "id",
@@ -141987,15 +187283,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "nftTransfer",
+ "name": "passPricing",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "nftTransfer_stream",
- "description": "fetch data from the table in a streaming manner: \"nftTransfer\"",
+ "name": "passPricing_stream",
+ "description": "fetch data from the table in a streaming manner: \"passPricing\"",
"args": [
{
"name": "batch_size",
@@ -142024,7 +187320,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_stream_cursor_input",
+ "name": "passPricing_stream_cursor_input",
"ofType": null
}
}
@@ -142038,7 +187334,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "nftTransfer_bool_exp",
+ "name": "passPricing_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142057,7 +187353,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "nftTransfer",
+ "name": "passPricing",
"ofType": null
}
}
@@ -142067,8 +187363,8 @@
"deprecationReason": null
},
{
- "name": "order",
- "description": "fetch data from the table: \"order\"",
+ "name": "pendingOrder",
+ "description": "fetch data from the table: \"pendingOrder\"",
"args": [
{
"name": "distinct_on",
@@ -142081,7 +187377,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "order_select_column",
+ "name": "pendingOrder_select_column",
"ofType": null
}
}
@@ -142125,7 +187421,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "order_order_by",
+ "name": "pendingOrder_order_by",
"ofType": null
}
}
@@ -142139,7 +187435,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
+ "name": "pendingOrder_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142158,7 +187454,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "order",
+ "name": "pendingOrder",
"ofType": null
}
}
@@ -142168,8 +187464,8 @@
"deprecationReason": null
},
{
- "name": "orderStatus",
- "description": "fetch data from the table: \"orderStatus\"",
+ "name": "pendingOrder_aggregate",
+ "description": "fetch aggregated fields from the table: \"pendingOrder\"",
"args": [
{
"name": "distinct_on",
@@ -142182,7 +187478,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "orderStatus_select_column",
+ "name": "pendingOrder_select_column",
"ofType": null
}
}
@@ -142226,7 +187522,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_order_by",
+ "name": "pendingOrder_order_by",
"ofType": null
}
}
@@ -142240,7 +187536,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
+ "name": "pendingOrder_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142252,82 +187548,75 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "orderStatus",
- "ofType": null
- }
- }
+ "kind": "OBJECT",
+ "name": "pendingOrder_aggregate",
+ "ofType": null
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orderStatus_aggregate",
- "description": "fetch aggregated fields from the table: \"orderStatus\"",
+ "name": "pendingOrder_by_pk",
+ "description": "fetch data from the table: \"pendingOrder\" using primary key columns",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "id",
+ "description": null,
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "orderStatus_select_column",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "uuid",
+ "ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pendingOrder_stream",
+ "description": "fetch data from the table in a streaming manner: \"pendingOrder\"",
+ "args": [
{
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_order_by",
+ "name": "pendingOrder_stream_cursor_input",
"ofType": null
}
}
@@ -142341,7 +187630,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
+ "name": "pendingOrder_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142353,75 +187642,82 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "orderStatus_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "pendingOrder",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "orderStatus_by_pk",
- "description": "fetch data from the table: \"orderStatus\" using primary key columns",
+ "name": "publishableApiKey",
+ "description": "fetch data from the table: \"publishableApiKey\"",
"args": [
{
- "name": "value",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "publishableApiKey_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "orderStatus",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderStatus_stream",
- "description": "fetch data from the table in a streaming manner: \"orderStatus\"",
- "args": [
+ },
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_stream_cursor_input",
+ "name": "publishableApiKey_order_by",
"ofType": null
}
}
@@ -142435,7 +187731,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "orderStatus_bool_exp",
+ "name": "publishableApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142454,7 +187750,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "orderStatus",
+ "name": "publishableApiKey",
"ofType": null
}
}
@@ -142464,8 +187760,8 @@
"deprecationReason": null
},
{
- "name": "order_aggregate",
- "description": "fetch aggregated fields from the table: \"order\"",
+ "name": "publishableApiKey_aggregate",
+ "description": "fetch aggregated fields from the table: \"publishableApiKey\"",
"args": [
{
"name": "distinct_on",
@@ -142478,7 +187774,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "order_select_column",
+ "name": "publishableApiKey_select_column",
"ofType": null
}
}
@@ -142522,7 +187818,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "order_order_by",
+ "name": "publishableApiKey_order_by",
"ofType": null
}
}
@@ -142536,7 +187832,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
+ "name": "publishableApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142549,7 +187845,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "order_aggregate",
+ "name": "publishableApiKey_aggregate",
"ofType": null
}
},
@@ -142557,8 +187853,8 @@
"deprecationReason": null
},
{
- "name": "order_by_pk",
- "description": "fetch data from the table: \"order\" using primary key columns",
+ "name": "publishableApiKey_by_pk",
+ "description": "fetch data from the table: \"publishableApiKey\" using primary key columns",
"args": [
{
"name": "id",
@@ -142579,15 +187875,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "order",
+ "name": "publishableApiKey",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "order_stream",
- "description": "fetch data from the table in a streaming manner: \"order\"",
+ "name": "publishableApiKey_stream",
+ "description": "fetch data from the table in a streaming manner: \"publishableApiKey\"",
"args": [
{
"name": "batch_size",
@@ -142616,7 +187912,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "order_stream_cursor_input",
+ "name": "publishableApiKey_stream_cursor_input",
"ofType": null
}
}
@@ -142630,7 +187926,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "order_bool_exp",
+ "name": "publishableApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142649,7 +187945,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "order",
+ "name": "publishableApiKey",
"ofType": null
}
}
@@ -142659,8 +187955,8 @@
"deprecationReason": null
},
{
- "name": "packEventPassNft",
- "description": "fetch data from the table: \"packEventPassNft\"",
+ "name": "roleAssignment",
+ "description": "fetch data from the table: \"roleAssignment\"",
"args": [
{
"name": "distinct_on",
@@ -142673,7 +187969,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packEventPassNft_select_column",
+ "name": "roleAssignment_select_column",
"ofType": null
}
}
@@ -142717,7 +188013,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
+ "name": "roleAssignment_order_by",
"ofType": null
}
}
@@ -142731,7 +188027,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142750,7 +188046,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packEventPassNft",
+ "name": "roleAssignment",
"ofType": null
}
}
@@ -142760,8 +188056,8 @@
"deprecationReason": null
},
{
- "name": "packEventPassNft_aggregate",
- "description": "fetch aggregated fields from the table: \"packEventPassNft\"",
+ "name": "roleAssignment_aggregate",
+ "description": "fetch aggregated fields from the table: \"roleAssignment\"",
"args": [
{
"name": "distinct_on",
@@ -142774,7 +188070,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packEventPassNft_select_column",
+ "name": "roleAssignment_select_column",
"ofType": null
}
}
@@ -142818,7 +188114,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_order_by",
+ "name": "roleAssignment_order_by",
"ofType": null
}
}
@@ -142832,7 +188128,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "name": "roleAssignment_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142845,7 +188141,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packEventPassNft_aggregate",
+ "name": "roleAssignment_aggregate",
"ofType": null
}
},
@@ -142853,18 +188149,18 @@
"deprecationReason": null
},
{
- "name": "packEventPassNft_by_pk",
- "description": "fetch data from the table: \"packEventPassNft\" using primary key columns",
+ "name": "roleAssignment_stream",
+ "description": "fetch data from the table in a streaming manner: \"roleAssignment\"",
"args": [
{
- "name": "eventPassNftId",
- "description": "Identifier for the event pass NFT.",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "Int",
"ofType": null
}
},
@@ -142873,44 +188169,76 @@
"deprecationReason": null
},
{
- "name": "packNftSupplyId",
- "description": "Identifier for the pack NFT supply.",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_stream_cursor_input",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roleAssignment_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
}
],
"type": {
- "kind": "OBJECT",
- "name": "packEventPassNft",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roleAssignment",
+ "ofType": null
+ }
+ }
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packEventPassNft_stream",
- "description": "fetch data from the table in a streaming manner: \"packEventPassNft\"",
+ "name": "roles",
+ "description": "fetch data from the table: \"roles\"",
"args": [
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "roles_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
@@ -142918,17 +188246,41 @@
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_stream_cursor_input",
+ "name": "roles_order_by",
"ofType": null
}
}
@@ -142942,7 +188294,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packEventPassNft_bool_exp",
+ "name": "roles_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -142961,7 +188313,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packEventPassNft",
+ "name": "roles",
"ofType": null
}
}
@@ -142971,8 +188323,8 @@
"deprecationReason": null
},
{
- "name": "packNftContract",
- "description": "fetch data from the table: \"packNftContract\"",
+ "name": "roles_aggregate",
+ "description": "fetch aggregated fields from the table: \"roles\"",
"args": [
{
"name": "distinct_on",
@@ -142985,7 +188337,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContract_select_column",
+ "name": "roles_select_column",
"ofType": null
}
}
@@ -143029,7 +188381,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
+ "name": "roles_order_by",
"ofType": null
}
}
@@ -143043,7 +188395,101 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "roles_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "roles_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "roles_by_pk",
+ "description": "fetch data from the table: \"roles\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "roles",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "roles_stream",
+ "description": "fetch data from the table in a streaming manner: \"roles\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "roles_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143062,7 +188508,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContract",
+ "name": "roles",
"ofType": null
}
}
@@ -143072,8 +188518,8 @@
"deprecationReason": null
},
{
- "name": "packNftContractEventPass",
- "description": "fetch data from the table: \"packNftContractEventPass\"",
+ "name": "secretApiKey",
+ "description": "fetch data from the table: \"secretApiKey\"",
"args": [
{
"name": "distinct_on",
@@ -143086,7 +188532,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "name": "secretApiKey_select_column",
"ofType": null
}
}
@@ -143130,7 +188576,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
+ "name": "secretApiKey_order_by",
"ofType": null
}
}
@@ -143144,7 +188590,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "secretApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143163,7 +188609,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "name": "secretApiKey",
"ofType": null
}
}
@@ -143173,8 +188619,8 @@
"deprecationReason": null
},
{
- "name": "packNftContractEventPass_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"",
+ "name": "secretApiKey_aggregate",
+ "description": "fetch aggregated fields from the table: \"secretApiKey\"",
"args": [
{
"name": "distinct_on",
@@ -143187,7 +188633,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContractEventPass_select_column",
+ "name": "secretApiKey_select_column",
"ofType": null
}
}
@@ -143231,7 +188677,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_order_by",
+ "name": "secretApiKey_order_by",
"ofType": null
}
}
@@ -143245,7 +188691,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "secretApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143258,7 +188704,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass_aggregate",
+ "name": "secretApiKey_aggregate",
"ofType": null
}
},
@@ -143266,28 +188712,12 @@
"deprecationReason": null
},
{
- "name": "packNftContractEventPass_by_pk",
- "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns",
+ "name": "secretApiKey_by_pk",
+ "description": "fetch data from the table: \"secretApiKey\" using primary key columns",
"args": [
{
- "name": "eventPassId",
- "description": "Identifier for the event pass. This field specifies which event pass is included in the pack, referring to a unique identifier within the eventPassNftContract table.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packNftContractId",
- "description": "Identifier for the pack NFT contract. This field links to the packNftContract table, establishing the connection between the pack and its contractual details.",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
@@ -143304,15 +188734,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "name": "secretApiKey",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContractEventPass_stream",
- "description": "fetch data from the table in a streaming manner: \"packNftContractEventPass\"",
+ "name": "secretApiKey_stream",
+ "description": "fetch data from the table in a streaming manner: \"secretApiKey\"",
"args": [
{
"name": "batch_size",
@@ -143341,7 +188771,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_stream_cursor_input",
+ "name": "secretApiKey_stream_cursor_input",
"ofType": null
}
}
@@ -143355,7 +188785,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContractEventPass_bool_exp",
+ "name": "secretApiKey_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143374,7 +188804,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContractEventPass",
+ "name": "secretApiKey",
"ofType": null
}
}
@@ -143384,8 +188814,8 @@
"deprecationReason": null
},
{
- "name": "packNftContract_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftContract\"",
+ "name": "shopifyCampaignParameters",
+ "description": "fetch data from the table: \"shopifyCampaignParameters\"",
"args": [
{
"name": "distinct_on",
@@ -143398,7 +188828,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftContract_select_column",
+ "name": "shopifyCampaignParameters_select_column",
"ofType": null
}
}
@@ -143442,7 +188872,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_order_by",
+ "name": "shopifyCampaignParameters_order_by",
"ofType": null
}
}
@@ -143456,7 +188886,108 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "shopifyCampaignParameters",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "shopifyCampaignParameters_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCampaignParameters\"",
+ "args": [
+ {
+ "name": "distinct_on",
+ "description": "distinct select on columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "shopifyCampaignParameters_select_column",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "limit",
+ "description": "limit the number of rows returned",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_order_by",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143469,7 +189000,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContract_aggregate",
+ "name": "shopifyCampaignParameters_aggregate",
"ofType": null
}
},
@@ -143477,18 +189008,18 @@
"deprecationReason": null
},
{
- "name": "packNftContract_by_pk",
- "description": "fetch data from the table: \"packNftContract\" using primary key columns",
+ "name": "shopifyCampaignParameters_by_pk",
+ "description": "fetch data from the table: \"shopifyCampaignParameters\" using primary key columns",
"args": [
{
- "name": "id",
- "description": "Unique identifier for each pack NFT contract.",
+ "name": "gateId",
+ "description": "Primary key. Unique identifier corresponding to the gate id from Shopify campaigns.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -143499,15 +189030,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "packNftContract",
+ "name": "shopifyCampaignParameters",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftContract_stream",
- "description": "fetch data from the table in a streaming manner: \"packNftContract\"",
+ "name": "shopifyCampaignParameters_stream",
+ "description": "fetch data from the table in a streaming manner: \"shopifyCampaignParameters\"",
"args": [
{
"name": "batch_size",
@@ -143536,7 +189067,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_stream_cursor_input",
+ "name": "shopifyCampaignParameters_stream_cursor_input",
"ofType": null
}
}
@@ -143550,7 +189081,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftContract_bool_exp",
+ "name": "shopifyCampaignParameters_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143569,7 +189100,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftContract",
+ "name": "shopifyCampaignParameters",
"ofType": null
}
}
@@ -143579,8 +189110,8 @@
"deprecationReason": null
},
{
- "name": "packNftSupply",
- "description": "fetch data from the table: \"packNftSupply\"",
+ "name": "shopifyCampaignStatus",
+ "description": "fetch data from the table: \"shopifyCampaignStatus\"",
"args": [
{
"name": "distinct_on",
@@ -143593,7 +189124,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftSupply_select_column",
+ "name": "shopifyCampaignStatus_select_column",
"ofType": null
}
}
@@ -143637,7 +189168,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_order_by",
+ "name": "shopifyCampaignStatus_order_by",
"ofType": null
}
}
@@ -143651,7 +189182,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
+ "name": "shopifyCampaignStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143670,7 +189201,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftSupply",
+ "name": "shopifyCampaignStatus",
"ofType": null
}
}
@@ -143680,8 +189211,8 @@
"deprecationReason": null
},
{
- "name": "packNftSupply_aggregate",
- "description": "fetch aggregated fields from the table: \"packNftSupply\"",
+ "name": "shopifyCampaignStatus_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCampaignStatus\"",
"args": [
{
"name": "distinct_on",
@@ -143694,7 +189225,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packNftSupply_select_column",
+ "name": "shopifyCampaignStatus_select_column",
"ofType": null
}
}
@@ -143738,7 +189269,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_order_by",
+ "name": "shopifyCampaignStatus_order_by",
"ofType": null
}
}
@@ -143752,7 +189283,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
+ "name": "shopifyCampaignStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143765,7 +189296,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftSupply_aggregate",
+ "name": "shopifyCampaignStatus_aggregate",
"ofType": null
}
},
@@ -143773,18 +189304,18 @@
"deprecationReason": null
},
{
- "name": "packNftSupply_by_pk",
- "description": "fetch data from the table: \"packNftSupply\" using primary key columns",
+ "name": "shopifyCampaignStatus_by_pk",
+ "description": "fetch data from the table: \"shopifyCampaignStatus\" using primary key columns",
"args": [
{
- "name": "id",
+ "name": "value",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -143795,15 +189326,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "packNftSupply",
+ "name": "shopifyCampaignStatus",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "packNftSupply_stream",
- "description": "fetch data from the table in a streaming manner: \"packNftSupply\"",
+ "name": "shopifyCampaignStatus_stream",
+ "description": "fetch data from the table in a streaming manner: \"shopifyCampaignStatus\"",
"args": [
{
"name": "batch_size",
@@ -143832,7 +189363,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_stream_cursor_input",
+ "name": "shopifyCampaignStatus_stream_cursor_input",
"ofType": null
}
}
@@ -143846,7 +189377,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packNftSupply_bool_exp",
+ "name": "shopifyCampaignStatus_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143865,7 +189396,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packNftSupply",
+ "name": "shopifyCampaignStatus",
"ofType": null
}
}
@@ -143875,8 +189406,8 @@
"deprecationReason": null
},
{
- "name": "packOrderSums",
- "description": "fetch data from the table: \"packOrderSums\"",
+ "name": "shopifyCustomer",
+ "description": "fetch data from the table: \"shopifyCustomer\"",
"args": [
{
"name": "distinct_on",
@@ -143889,7 +189420,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packOrderSums_select_column",
+ "name": "shopifyCustomer_select_column",
"ofType": null
}
}
@@ -143933,7 +189464,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_order_by",
+ "name": "shopifyCustomer_order_by",
"ofType": null
}
}
@@ -143947,7 +189478,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -143966,7 +189497,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packOrderSums",
+ "name": "shopifyCustomer",
"ofType": null
}
}
@@ -143976,8 +189507,8 @@
"deprecationReason": null
},
{
- "name": "packOrderSums_aggregate",
- "description": "fetch aggregated fields from the table: \"packOrderSums\"",
+ "name": "shopifyCustomer_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyCustomer\"",
"args": [
{
"name": "distinct_on",
@@ -143990,7 +189521,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "packOrderSums_select_column",
+ "name": "shopifyCustomer_select_column",
"ofType": null
}
}
@@ -144034,7 +189565,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_order_by",
+ "name": "shopifyCustomer_order_by",
"ofType": null
}
}
@@ -144048,7 +189579,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144061,7 +189592,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packOrderSums_aggregate",
+ "name": "shopifyCustomer_aggregate",
"ofType": null
}
},
@@ -144069,37 +189600,8 @@
"deprecationReason": null
},
{
- "name": "packOrderSums_by_pk",
- "description": "fetch data from the table: \"packOrderSums\" using primary key columns",
- "args": [
- {
- "name": "packId",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "packOrderSums",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "packOrderSums_stream",
- "description": "fetch data from the table in a streaming manner: \"packOrderSums\"",
+ "name": "shopifyCustomer_stream",
+ "description": "fetch data from the table in a streaming manner: \"shopifyCustomer\"",
"args": [
{
"name": "batch_size",
@@ -144128,7 +189630,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_stream_cursor_input",
+ "name": "shopifyCustomer_stream_cursor_input",
"ofType": null
}
}
@@ -144142,7 +189644,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "packOrderSums_bool_exp",
+ "name": "shopifyCustomer_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144161,7 +189663,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "packOrderSums",
+ "name": "shopifyCustomer",
"ofType": null
}
}
@@ -144171,8 +189673,8 @@
"deprecationReason": null
},
{
- "name": "passAmount",
- "description": "fetch data from the table: \"passAmount\"",
+ "name": "shopifyDomain",
+ "description": "fetch data from the table: \"shopifyDomain\"",
"args": [
{
"name": "distinct_on",
@@ -144185,7 +189687,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passAmount_select_column",
+ "name": "shopifyDomain_select_column",
"ofType": null
}
}
@@ -144229,7 +189731,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
+ "name": "shopifyDomain_order_by",
"ofType": null
}
}
@@ -144243,7 +189745,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144262,7 +189764,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passAmount",
+ "name": "shopifyDomain",
"ofType": null
}
}
@@ -144272,8 +189774,8 @@
"deprecationReason": null
},
{
- "name": "passAmount_aggregate",
- "description": "fetch aggregated fields from the table: \"passAmount\"",
+ "name": "shopifyDomain_aggregate",
+ "description": "fetch aggregated fields from the table: \"shopifyDomain\"",
"args": [
{
"name": "distinct_on",
@@ -144286,7 +189788,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passAmount_select_column",
+ "name": "shopifyDomain_select_column",
"ofType": null
}
}
@@ -144330,7 +189832,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_order_by",
+ "name": "shopifyDomain_order_by",
"ofType": null
}
}
@@ -144344,7 +189846,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144357,7 +189859,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passAmount_aggregate",
+ "name": "shopifyDomain_aggregate",
"ofType": null
}
},
@@ -144365,18 +189867,18 @@
"deprecationReason": null
},
{
- "name": "passAmount_by_pk",
- "description": "fetch data from the table: \"passAmount\" using primary key columns",
+ "name": "shopifyDomain_by_pk",
+ "description": "fetch data from the table: \"shopifyDomain\" using primary key columns",
"args": [
{
- "name": "id",
- "description": null,
+ "name": "domain",
+ "description": "The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
"ofType": null
}
},
@@ -144387,15 +189889,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "passAmount",
+ "name": "shopifyDomain",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passAmount_stream",
- "description": "fetch data from the table in a streaming manner: \"passAmount\"",
+ "name": "shopifyDomain_stream",
+ "description": "fetch data from the table in a streaming manner: \"shopifyDomain\"",
"args": [
{
"name": "batch_size",
@@ -144424,7 +189926,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_stream_cursor_input",
+ "name": "shopifyDomain_stream_cursor_input",
"ofType": null
}
}
@@ -144438,7 +189940,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passAmount_bool_exp",
+ "name": "shopifyDomain_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144457,7 +189959,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passAmount",
+ "name": "shopifyDomain",
"ofType": null
}
}
@@ -144467,8 +189969,8 @@
"deprecationReason": null
},
{
- "name": "passPricing",
- "description": "fetch data from the table: \"passPricing\"",
+ "name": "stampNft",
+ "description": "fetch data from the table: \"stampNft\"",
"args": [
{
"name": "distinct_on",
@@ -144481,7 +189983,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passPricing_select_column",
+ "name": "stampNft_select_column",
"ofType": null
}
}
@@ -144525,7 +190027,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
+ "name": "stampNft_order_by",
"ofType": null
}
}
@@ -144539,7 +190041,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "stampNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144558,7 +190060,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passPricing",
+ "name": "stampNft",
"ofType": null
}
}
@@ -144568,8 +190070,8 @@
"deprecationReason": null
},
{
- "name": "passPricing_aggregate",
- "description": "fetch aggregated fields from the table: \"passPricing\"",
+ "name": "stampNftContract",
+ "description": "fetch data from the table: \"stampNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -144582,7 +190084,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "passPricing_select_column",
+ "name": "stampNftContract_select_column",
"ofType": null
}
}
@@ -144626,7 +190128,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_order_by",
+ "name": "stampNftContract_order_by",
"ofType": null
}
}
@@ -144640,7 +190142,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "stampNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144652,75 +190154,82 @@
"kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "OBJECT",
- "name": "passPricing_aggregate",
- "ofType": null
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContract",
+ "ofType": null
+ }
+ }
}
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "passPricing_by_pk",
- "description": "fetch data from the table: \"passPricing\" using primary key columns",
+ "name": "stampNftContractType",
+ "description": "fetch data from the table: \"stampNftContractType\"",
"args": [
{
- "name": "id",
- "description": null,
+ "name": "distinct_on",
+ "description": "distinct select on columns",
"type": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "SCALAR",
- "name": "uuid",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "stampNftContractType_select_column",
+ "ofType": null
+ }
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- }
- ],
- "type": {
- "kind": "OBJECT",
- "name": "passPricing",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "passPricing_stream",
- "description": "fetch data from the table in a streaming manner: \"passPricing\"",
- "args": [
+ },
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "limit",
+ "description": "limit the number of rows returned",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
+ "name": "offset",
+ "description": "skip the first n rows. Use only with order_by",
"type": {
- "kind": "NON_NULL",
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "order_by",
+ "description": "sort the rows by one or more columns",
+ "type": {
+ "kind": "LIST",
"name": null,
"ofType": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_stream_cursor_input",
+ "name": "stampNftContractType_order_by",
"ofType": null
}
}
@@ -144734,7 +190243,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "passPricing_bool_exp",
+ "name": "stampNftContractType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144753,7 +190262,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "passPricing",
+ "name": "stampNftContractType",
"ofType": null
}
}
@@ -144763,8 +190272,8 @@
"deprecationReason": null
},
{
- "name": "pendingOrder",
- "description": "fetch data from the table: \"pendingOrder\"",
+ "name": "stampNftContractType_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftContractType\"",
"args": [
{
"name": "distinct_on",
@@ -144777,7 +190286,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "pendingOrder_select_column",
+ "name": "stampNftContractType_select_column",
"ofType": null
}
}
@@ -144821,7 +190330,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_order_by",
+ "name": "stampNftContractType_order_by",
"ofType": null
}
}
@@ -144835,7 +190344,101 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "stampNftContractType_bool_exp",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType_aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftContractType_by_pk",
+ "description": "fetch data from the table: \"stampNftContractType\" using primary key columns",
+ "args": [
+ {
+ "name": "value",
+ "description": "Type name for stamp NFT contract. Reflects the nature of the marketing campaign or action, like SHOPIFY_PURCHASE_COMPLETED indicating a purchase event in a token-gating campaign on Shopify.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "stampNftContractType",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stampNftContractType_stream",
+ "description": "fetch data from the table in a streaming manner: \"stampNftContractType\"",
+ "args": [
+ {
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_stream_cursor_input",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "filter the rows returned",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "stampNftContractType_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144854,7 +190457,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "pendingOrder",
+ "name": "stampNftContractType",
"ofType": null
}
}
@@ -144864,8 +190467,8 @@
"deprecationReason": null
},
{
- "name": "pendingOrder_aggregate",
- "description": "fetch aggregated fields from the table: \"pendingOrder\"",
+ "name": "stampNftContract_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftContract\"",
"args": [
{
"name": "distinct_on",
@@ -144878,7 +190481,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "pendingOrder_select_column",
+ "name": "stampNftContract_select_column",
"ofType": null
}
}
@@ -144922,7 +190525,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_order_by",
+ "name": "stampNftContract_order_by",
"ofType": null
}
}
@@ -144936,7 +190539,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "stampNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -144949,7 +190552,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "pendingOrder_aggregate",
+ "name": "stampNftContract_aggregate",
"ofType": null
}
},
@@ -144957,18 +190560,34 @@
"deprecationReason": null
},
{
- "name": "pendingOrder_by_pk",
- "description": "fetch data from the table: \"pendingOrder\" using primary key columns",
+ "name": "stampNftContract_by_pk",
+ "description": "fetch data from the table: \"stampNftContract\" using primary key columns",
"args": [
{
- "name": "id",
- "description": null,
+ "name": "chainId",
+ "description": "The identifier of the blockchain network where the contract is deployed.",
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "uuid",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "contractAddress",
+ "description": "The blockchain address of the stamp NFT contract.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
"ofType": null
}
},
@@ -144979,15 +190598,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "pendingOrder",
+ "name": "stampNftContract",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "pendingOrder_stream",
- "description": "fetch data from the table in a streaming manner: \"pendingOrder\"",
+ "name": "stampNftContract_stream",
+ "description": "fetch data from the table in a streaming manner: \"stampNftContract\"",
"args": [
{
"name": "batch_size",
@@ -145016,7 +190635,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_stream_cursor_input",
+ "name": "stampNftContract_stream_cursor_input",
"ofType": null
}
}
@@ -145030,7 +190649,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "pendingOrder_bool_exp",
+ "name": "stampNftContract_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145049,7 +190668,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "pendingOrder",
+ "name": "stampNftContract",
"ofType": null
}
}
@@ -145059,8 +190678,8 @@
"deprecationReason": null
},
{
- "name": "roleAssignment",
- "description": "fetch data from the table: \"roleAssignment\"",
+ "name": "stampNftSupply",
+ "description": "fetch data from the table: \"stampNftSupply\"",
"args": [
{
"name": "distinct_on",
@@ -145073,7 +190692,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roleAssignment_select_column",
+ "name": "stampNftSupply_select_column",
"ofType": null
}
}
@@ -145117,7 +190736,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
+ "name": "stampNftSupply_order_by",
"ofType": null
}
}
@@ -145131,7 +190750,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stampNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145150,7 +190769,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roleAssignment",
+ "name": "stampNftSupply",
"ofType": null
}
}
@@ -145160,8 +190779,8 @@
"deprecationReason": null
},
{
- "name": "roleAssignment_aggregate",
- "description": "fetch aggregated fields from the table: \"roleAssignment\"",
+ "name": "stampNftSupply_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNftSupply\"",
"args": [
{
"name": "distinct_on",
@@ -145174,7 +190793,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roleAssignment_select_column",
+ "name": "stampNftSupply_select_column",
"ofType": null
}
}
@@ -145218,7 +190837,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_order_by",
+ "name": "stampNftSupply_order_by",
"ofType": null
}
}
@@ -145232,7 +190851,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
+ "name": "stampNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145245,7 +190864,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roleAssignment_aggregate",
+ "name": "stampNftSupply_aggregate",
"ofType": null
}
},
@@ -145253,96 +190872,48 @@
"deprecationReason": null
},
{
- "name": "roleAssignment_stream",
- "description": "fetch data from the table in a streaming manner: \"roleAssignment\"",
+ "name": "stampNftSupply_by_pk",
+ "description": "fetch data from the table: \"stampNftSupply\" using primary key columns",
"args": [
{
- "name": "batch_size",
- "description": "maximum number of rows returned in a single batch",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "uuid",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "cursor",
- "description": "cursor to stream the results returned by the query",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_stream_cursor_input",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": "filter the rows returned",
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "roleAssignment_bool_exp",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
}
],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "roleAssignment",
- "ofType": null
- }
- }
- }
+ "kind": "OBJECT",
+ "name": "stampNftSupply",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roles",
- "description": "fetch data from the table: \"roles\"",
+ "name": "stampNftSupply_stream",
+ "description": "fetch data from the table in a streaming manner: \"stampNftSupply\"",
"args": [
{
- "name": "distinct_on",
- "description": "distinct select on columns",
+ "name": "batch_size",
+ "description": "maximum number of rows returned in a single batch",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "roles_select_column",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
}
},
"defaultValue": null,
@@ -145350,41 +190921,17 @@
"deprecationReason": null
},
{
- "name": "limit",
- "description": "limit the number of rows returned",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "offset",
- "description": "skip the first n rows. Use only with order_by",
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "order_by",
- "description": "sort the rows by one or more columns",
+ "name": "cursor",
+ "description": "cursor to stream the results returned by the query",
"type": {
- "kind": "LIST",
+ "kind": "NON_NULL",
"name": null,
"ofType": {
- "kind": "NON_NULL",
+ "kind": "LIST",
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roles_order_by",
+ "name": "stampNftSupply_stream_cursor_input",
"ofType": null
}
}
@@ -145398,7 +190945,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
+ "name": "stampNftSupply_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145417,7 +190964,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "stampNftSupply",
"ofType": null
}
}
@@ -145427,8 +190974,8 @@
"deprecationReason": null
},
{
- "name": "roles_aggregate",
- "description": "fetch aggregated fields from the table: \"roles\"",
+ "name": "stampNft_aggregate",
+ "description": "fetch aggregated fields from the table: \"stampNft\"",
"args": [
{
"name": "distinct_on",
@@ -145441,7 +190988,7 @@
"name": null,
"ofType": {
"kind": "ENUM",
- "name": "roles_select_column",
+ "name": "stampNft_select_column",
"ofType": null
}
}
@@ -145485,7 +191032,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roles_order_by",
+ "name": "stampNft_order_by",
"ofType": null
}
}
@@ -145499,7 +191046,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
+ "name": "stampNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145512,7 +191059,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roles_aggregate",
+ "name": "stampNft_aggregate",
"ofType": null
}
},
@@ -145520,18 +191067,18 @@
"deprecationReason": null
},
{
- "name": "roles_by_pk",
- "description": "fetch data from the table: \"roles\" using primary key columns",
+ "name": "stampNft_by_pk",
+ "description": "fetch data from the table: \"stampNft\" using primary key columns",
"args": [
{
- "name": "value",
- "description": "\n organizer_super_admin: Full Read & Write permissions on web2 and web3 components. Can assign roles and access system configurations.\n organizer_admin: Full Read & Write permissions on web2 and web3 components.\n organizer_operations_manager: Read & Write access to web2 components. Handles event setup, monitoring, analytics, etc.\n organizer_finance_manager: Read & Write access to web3 components. Manages fund transfers, balance checks, and transaction approvals within limits.\n organizer_content_manager: Read & Write access to web2 components. Manages content creation, editing, media uploads, and metadata modifications.\n organizer_validator: Read & Write access on web2 and web3. Updates NFT traits and validates tickets and exclusive access during events.\n organizer_auditor: Read-only access on web2 and web3. Conducts compliance checks and reviews transactions and operations.\n organizer_guest: Limited access to web2. Can view public content without web3 permissions.\n organizer_human_resources: Administrative permissions. Can invite new members for the organization and assign roles (except super admin and human resources).\n",
+ "name": "id",
+ "description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "String",
+ "name": "uuid",
"ofType": null
}
},
@@ -145542,15 +191089,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "stampNft",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "roles_stream",
- "description": "fetch data from the table in a streaming manner: \"roles\"",
+ "name": "stampNft_stream",
+ "description": "fetch data from the table in a streaming manner: \"stampNft\"",
"args": [
{
"name": "batch_size",
@@ -145579,7 +191126,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "roles_stream_cursor_input",
+ "name": "stampNft_stream_cursor_input",
"ofType": null
}
}
@@ -145593,7 +191140,7 @@
"description": "filter the rows returned",
"type": {
"kind": "INPUT_OBJECT",
- "name": "roles_bool_exp",
+ "name": "stampNft_bool_exp",
"ofType": null
},
"defaultValue": null,
@@ -145612,7 +191159,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "roles",
+ "name": "stampNft",
"ofType": null
}
}
diff --git a/libs/gql/admin/api/src/queries/organizer/event/eventParameters.query.gql b/libs/gql/admin/api/src/queries/organizer/event/eventParameters.query.gql
index eb7da3e64..93629eee3 100644
--- a/libs/gql/admin/api/src/queries/organizer/event/eventParameters.query.gql
+++ b/libs/gql/admin/api/src/queries/organizer/event/eventParameters.query.gql
@@ -1,7 +1,9 @@
query GetAlchemyInfosFromEventId($eventId: String) {
eventParameters(where: { eventId: { _eq: $eventId } }) {
activityWebhookId
- signingKey
+ activityWebhookSigningKey
+ metadataUpdateWebhookId
+ metadataUpdateWebhookSigningKey
}
}
diff --git a/libs/gql/admin/api/src/queries/organizer/event/eventParameters.spec.ts b/libs/gql/admin/api/src/queries/organizer/event/eventParameters.spec.ts
index 9405bb5de..df39fbb1d 100644
--- a/libs/gql/admin/api/src/queries/organizer/event/eventParameters.spec.ts
+++ b/libs/gql/admin/api/src/queries/organizer/event/eventParameters.spec.ts
@@ -1,3 +1,4 @@
+import { adminSdk } from '@gql/admin/api';
import {
PgClient,
applySeeds,
@@ -5,7 +6,6 @@ import {
deleteTables,
updateObjects,
} from '@test-utils/db';
-import { adminSdk } from '../../../generated';
import { addHoursInTimeZone, subHoursInTimeZone } from '@time';
import { toZonedTime } from 'date-fns-tz';
diff --git a/libs/gql/admin/api/src/queries/organizer/event/pass/eventPassNftContract.query.gql b/libs/gql/admin/api/src/queries/organizer/event/pass/eventPassNftContract.query.gql
index 63cc1179e..1a6582b83 100644
--- a/libs/gql/admin/api/src/queries/organizer/event/pass/eventPassNftContract.query.gql
+++ b/libs/gql/admin/api/src/queries/organizer/event/pass/eventPassNftContract.query.gql
@@ -22,11 +22,11 @@ query GetEventPassNftContractDelayedRevealPassword($contractAddress: String)
}
}
-query GetEventPassNftContractNfts($eventPassId: String) @cached {
+query GetEventPassNftContractNftsLazyMinted($eventPassId: String) @cached {
eventPassNftContract(where: { eventPassId: { _eq: $eventPassId } }) {
contractAddress
eventPassId
- eventPassNfts {
+ eventPassNfts(where: { status: { _eq: LAZY_MINTED } }) {
id
packId
currentOwnerAddress
@@ -34,6 +34,7 @@ query GetEventPassNftContractNfts($eventPassId: String) @cached {
eventId
tokenId
eventPassId
+ status
}
}
}
diff --git a/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.mutation.gql b/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.mutation.gql
deleted file mode 100644
index 805ead109..000000000
--- a/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.mutation.gql
+++ /dev/null
@@ -1,9 +0,0 @@
-mutation InsertMinterTemporaryWallet(
- $object: minterTemporaryWallet_insert_input!
-) {
- insert_minterTemporaryWallet_one(object: $object) {
- address
- eventPassId
- packId
- }
-}
diff --git a/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.query.gql b/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.query.gql
deleted file mode 100644
index 2d6a39993..000000000
--- a/libs/gql/admin/api/src/queries/organizer/event/pass/minterTemporaryWallet.query.gql
+++ /dev/null
@@ -1,7 +0,0 @@
-query GetMinterTemporaryWalletByEventPassId($eventPassId: String!) {
- minterTemporaryWallet(where: { eventPassId: { _eq: $eventPassId } }) {
- address
- privateKey
- eventPassId
- }
-}
diff --git a/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.mutation.gql b/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.mutation.gql
new file mode 100644
index 000000000..e1334f471
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.mutation.gql
@@ -0,0 +1,42 @@
+mutation InsertLoyaltyCardNftContract(
+ $object: loyaltyCardNftContract_insert_input!
+) {
+ insert_loyaltyCardNftContract_one(object: $object) {
+ id
+ }
+}
+
+mutation CreateLoyaltyCardParameters(
+ $object: loyaltyCardParameters_insert_input!
+) {
+ insert_loyaltyCardParameters_one(object: $object) {
+ id
+ }
+}
+
+mutation UpdateLoyaltyCardParameters(
+ $id: uuid!
+ $object: loyaltyCardParameters_set_input!
+) {
+ update_loyaltyCardParameters_by_pk(pk_columns: { id: $id }, _set: $object) {
+ id
+ }
+}
+
+mutation InsertLoyaltyCardNft($object: loyaltyCardNft_insert_input!) {
+ insert_loyaltyCardNft_one(object: $object) {
+ id
+ }
+}
+
+mutation UpdateLoyaltyCardNft($id: uuid!, $object: loyaltyCardNft_set_input!) {
+ update_loyaltyCardNft_by_pk(pk_columns: { id: $id }, _set: $object) {
+ id
+ }
+}
+
+mutation UpdateLoyaltyCardNfts($updates: [loyaltyCardNft_updates!]!) {
+ update_loyaltyCardNft_many(updates: $updates) {
+ affected_rows
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.query.gql b/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.query.gql
new file mode 100644
index 000000000..b093417ad
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/loyaltyCard/loyaltyCard.query.gql
@@ -0,0 +1,114 @@
+query GetLoyaltyCardOrganizer($organizerId: ID!, $stage: Stage!) @cached {
+ organizer(where: { id: $organizerId }, locales: [en], stage: $stage) {
+ loyaltyCard {
+ id
+ nftName
+ nftImage {
+ url
+ }
+ loyaltyCardParameters {
+ status
+ }
+ loyaltyCardNftContract {
+ contractAddress
+ chainId
+ }
+ }
+ }
+}
+
+query GetLoyaltyCardNftContractByLoyaltyCardId($loyaltyCardId: String!) {
+ loyaltyCardNftContract(
+ where: { loyaltyCardId: { _eq: $loyaltyCardId } }
+ limit: 1
+ ) {
+ contractAddress
+ chainId
+ }
+}
+
+query GetAlchemyInfosFromLoyaltyCardId($loyaltyCardId: String!) {
+ loyaltyCardParameters(
+ where: { loyaltyCardId: { _eq: $loyaltyCardId } }
+ limit: 1
+ ) {
+ id
+ activityWebhookId
+ activityWebhookSigningKey
+ metadataUpdateWebhookId
+ metadataUpdateWebhookSigningKey
+ }
+}
+
+query GetLoyaltyCardOwnedByAddress(
+ $contractAddress: String!
+ $chainId: String!
+ $ownerAddress: String!
+ $organizerId: String!
+) @cached {
+ loyaltyCardNft(
+ where: {
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ ownerAddress: { _eq: $ownerAddress }
+ organizerId: { _eq: $organizerId }
+ }
+ limit: 1
+ ) {
+ id
+ status
+ burnedTransferId
+ organizerId
+ }
+}
+
+query GetLoyaltyCardAlchemyEvent(
+ $contractAddress: String!
+ $chainId: String!
+ $tokenId: bigint!
+) {
+ loyaltyCardNft(
+ where: {
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ tokenId: { _eq: $tokenId }
+ }
+ limit: 1
+ ) {
+ id
+ status
+ }
+}
+
+query GetLoyaltyCardNftContractByContractAddress(
+ $contractAddress: String!
+ $chainId: String!
+ $organizerId: String!
+) @cached {
+ loyaltyCardNftContract(
+ where: {
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ organizerId: { _eq: $organizerId }
+ }
+ limit: 1
+ ) {
+ loyaltyCardId
+ }
+}
+
+query GetLoyaltyCardByContractAddressForProcess {
+ loyaltyCardNft(
+ where: { status: { _in: [CONFIRMED, ERROR] } }
+ order_by: { updated_at: desc }
+ ) {
+ id
+ status
+ updated_at
+ contractAddress
+ ownerAddress
+ loyaltyCardId
+ metadata
+ tokenId
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.mutation.gql b/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.mutation.gql
new file mode 100644
index 000000000..be96d307d
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.mutation.gql
@@ -0,0 +1,26 @@
+mutation InsertMinterTemporaryWallet(
+ $object: minterTemporaryWallet_insert_input!
+) {
+ insert_minterTemporaryWallet_one(object: $object) {
+ address
+ eventPassId
+ packId
+ loyaltyCardId
+ campaignId
+ }
+}
+
+mutation InsertMinterTemporaryWallets(
+ $objects: [minterTemporaryWallet_insert_input!]!
+) {
+ insert_minterTemporaryWallet(objects: $objects) {
+ affected_rows
+ returning {
+ address
+ eventPassId
+ packId
+ loyaltyCardId
+ campaignId
+ }
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.query.gql b/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.query.gql
new file mode 100644
index 000000000..e7392fbae
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/nft/minterTemporaryWallet.query.gql
@@ -0,0 +1,23 @@
+query GetMinterTemporaryWalletByEventPassId($eventPassId: String!) {
+ minterTemporaryWallet(where: { eventPassId: { _eq: $eventPassId } }) {
+ address
+ privateKey
+ eventPassId
+ }
+}
+
+query GetMinterTemporaryWalletByLoyaltyCardId($loyaltyCardId: String!) {
+ minterTemporaryWallet(where: { loyaltyCardId: { _eq: $loyaltyCardId } }) {
+ address
+ privateKey
+ loyaltyCardId
+ }
+}
+
+query GetMinterTemporaryWalletByCampaignId($campaignId: String!) {
+ minterTemporaryWallet(where: { campaignId: { _eq: $campaignId } }) {
+ address
+ privateKey
+ campaignId
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.mutation.gql b/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.mutation.gql
new file mode 100644
index 000000000..ee88fec67
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.mutation.gql
@@ -0,0 +1,46 @@
+mutation InsertNftMintPassword($object: nftMintPassword_insert_input!) {
+ insert_nftMintPassword_one(object: $object) {
+ id
+ }
+}
+
+mutation InsertNftMintPasswords($objects: [nftMintPassword_insert_input!]!) {
+ insert_nftMintPassword(objects: $objects) {
+ affected_rows
+ returning {
+ id
+ password
+ tokenId
+ minterAddress
+ }
+ }
+}
+
+mutation UpdateNftMintPasswordMinter($id: uuid!, $minterAddress: String!) {
+ update_nftMintPassword_by_pk(
+ pk_columns: { id: $id }
+ _set: { minterAddress: $minterAddress }
+ ) {
+ id
+ }
+}
+
+mutation UpdateNftMintPasswordTokenId(
+ $tokenId: bigint!
+ $minterAddress: String!
+ $contractAddress: String!
+ $chainId: String!
+) {
+ update_nftMintPassword(
+ where: {
+ minterAddress: { _eq: $minterAddress }
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ }
+ _set: { tokenId: $tokenId }
+ ) {
+ returning {
+ id
+ }
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.query.gql b/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.query.gql
new file mode 100644
index 000000000..a1c91122e
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/nft/nftMintPassword.query.gql
@@ -0,0 +1,34 @@
+query GetNftMintPasswordsForContract(
+ $contractAddress: String!
+ $chainId: String!
+) @cached {
+ nftMintPassword(
+ where: {
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ }
+ ) {
+ password
+ minterAddress
+ created_at
+ updated_at
+ }
+}
+
+query GetNftMintPasswordsForContractAvailable(
+ $contractAddress: String!
+ $chainId: String!
+ $organizerId: String!
+) @cached {
+ nftMintPassword(
+ where: {
+ contractAddress: { _eq: $contractAddress }
+ chainId: { _eq: $chainId }
+ minterAddress: { _is_null: true }
+ organizerId: { _eq: $organizerId }
+ }
+ ) {
+ id
+ password
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.gql b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.gql
new file mode 100644
index 000000000..4f5ae7c4c
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.gql
@@ -0,0 +1,11 @@
+query GetShopifyCustomer($organizerId: String!, $customerId: String!) @cached {
+ shopifyCustomer(
+ where: {
+ organizerId: { _eq: $organizerId }
+ customerId: { _eq: $customerId }
+ }
+ limit: 1
+ ) {
+ address
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.mutation.gql b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.mutation.gql
new file mode 100644
index 000000000..e15eef85b
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyCustomer.mutation.gql
@@ -0,0 +1,5 @@
+mutation InsertShopifyCustomer($object: shopifyCustomer_insert_input!) {
+ insert_shopifyCustomer_one(object: $object) {
+ id
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/organizer/shopify/shopifyDomain.gql b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyDomain.gql
new file mode 100644
index 000000000..8e046acd7
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/organizer/shopify/shopifyDomain.gql
@@ -0,0 +1,5 @@
+query GetShopifyDomain($domain: String!) @cached {
+ shopifyDomain_by_pk(domain: $domain) {
+ organizerId
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.mutation.gql b/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.mutation.gql
new file mode 100644
index 000000000..3aa8b1ee2
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.mutation.gql
@@ -0,0 +1,28 @@
+mutation CreatePublishableApiKey($object: publishableApiKey_insert_input!) {
+ insert_publishableApiKey_one(object: $object) {
+ id
+ name
+ apiKey
+ allowlist
+ organizerId
+ expiresAt
+ type
+ }
+}
+
+mutation UpdatePublishableApiKey(
+ $id: uuid!
+ $allowlist: String
+ $expiresAt: timestamptz
+ $status: apiKeyStatus_enum
+) {
+ update_publishableApiKey_by_pk(
+ pk_columns: { id: $id }
+ _set: { allowlist: $allowlist, expiresAt: $expiresAt, status: $status }
+ ) {
+ name
+ allowlist
+ organizerId
+ expiresAt
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.query.gql b/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.query.gql
new file mode 100644
index 000000000..b17bff31d
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/publishableApiKey/publishableApiKey.query.gql
@@ -0,0 +1,10 @@
+query GetPublishableApiKey($apiKey: String!) {
+ publishableApiKey(where: { apiKey: { _eq: $apiKey } }) {
+ id
+ allowlist
+ organizerId
+ expiresAt
+ status
+ type
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.mutation.gql b/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.mutation.gql
new file mode 100644
index 000000000..d65e3d4db
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.mutation.gql
@@ -0,0 +1,34 @@
+mutation CreateSecretApiKey($object: secretApiKey_insert_input!) {
+ insert_secretApiKey_one(object: $object) {
+ id
+ name
+ apiKey
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ type
+ }
+}
+
+mutation UpdateSecretApiKey(
+ $id: uuid!
+ $allowlist: String
+ $expiresAt: timestamptz
+ $status: apiKeyStatus_enum
+) {
+ update_secretApiKey_by_pk(
+ pk_columns: { id: $id }
+ _set: { allowlist: $allowlist, expiresAt: $expiresAt, status: $status }
+ ) {
+ name
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ }
+}
diff --git a/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.query.gql b/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.query.gql
new file mode 100644
index 000000000..12c53dcfa
--- /dev/null
+++ b/libs/gql/admin/api/src/queries/publishableApiKey/secretApiKey.query.gql
@@ -0,0 +1,13 @@
+query GetSecretApiKey($apiKey: String!) {
+ secretApiKey(where: { apiKey: { _eq: $apiKey } }) {
+ id
+ hashedOriginSecret
+ originSecretSalt
+ encryptedIntegritySecret
+ allowlist
+ organizerId
+ expiresAt
+ status
+ type
+ }
+}
diff --git a/libs/gql/admin/api/tsconfig.json b/libs/gql/admin/api/tsconfig.json
index a7702e30d..0bd22c66e 100644
--- a/libs/gql/admin/api/tsconfig.json
+++ b/libs/gql/admin/api/tsconfig.json
@@ -1,7 +1,9 @@
{
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
diff --git a/libs/gql/admin/api/tsconfig.spec.json b/libs/gql/admin/api/tsconfig.spec.json
index 1f5e683d5..348ad327c 100644
--- a/libs/gql/admin/api/tsconfig.spec.json
+++ b/libs/gql/admin/api/tsconfig.spec.json
@@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../../dist/out-tsc",
- "module": "commonjs",
+ "module": "nodenext",
"types": ["jest", "node"]
},
"include": ["jest.config.ts", "**/*.test.ts", "**/*.spec.ts", "**/*.d.ts"]
diff --git a/libs/gql/admin/types/.swcrc b/libs/gql/admin/types/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/gql/admin/types/.swcrc
+++ b/libs/gql/admin/types/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/admin/types/package.json b/libs/gql/admin/types/package.json
index 237f356cf..7442c1b72 100644
--- a/libs/gql/admin/types/package.json
+++ b/libs/gql/admin/types/package.json
@@ -1,5 +1,5 @@
{
"name": "@gql/admin/types",
"version": "0.0.1",
- "type": "commonjs"
+ "type": "nodenext"
}
diff --git a/libs/gql/admin/types/src/generated/index.ts b/libs/gql/admin/types/src/generated/index.ts
index 3fa4b2a1c..e222f2fa5 100644
--- a/libs/gql/admin/types/src/generated/index.ts
+++ b/libs/gql/admin/types/src/generated/index.ts
@@ -242,7 +242,7 @@ export type GetAlchemyInfosFromEventIdQueryVariables = Types.Exact<{
}>;
-export type GetAlchemyInfosFromEventIdQuery = { __typename?: 'query_root', eventParameters: Array<{ __typename?: 'eventParameters', activityWebhookId?: string | null, signingKey?: string | null }> };
+export type GetAlchemyInfosFromEventIdQuery = { __typename?: 'query_root', eventParameters: Array<{ __typename?: 'eventParameters', activityWebhookId?: string | null, activityWebhookSigningKey?: string | null, metadataUpdateWebhookId?: string | null, metadataUpdateWebhookSigningKey?: string | null }> };
export type GetEventParametersQueryVariables = Types.Exact<{
eventId?: Types.InputMaybe;
@@ -281,7 +281,7 @@ export type UpdateEventPassNftFromNftTransferMutationVariables = Types.Exact<{
}>;
-export type UpdateEventPassNftFromNftTransferMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, isRevealed: boolean, currentOwnerAddress?: string | null, eventId: string, eventPassId: string, organizerId: string, tokenId: any, lastNftTransfer?: { __typename?: 'nftTransfer', fromAddress: string } | null }> } | null> | null };
+export type UpdateEventPassNftFromNftTransferMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, isRevealed: boolean, currentOwnerAddress?: string | null, eventId: string, eventPassId: string, organizerId: string, tokenId?: any | null, lastNftTransfer?: { __typename?: 'nftTransfer', fromAddress: string } | null }> } | null> | null };
export type SetEventPassNftRevealedMutationVariables = Types.Exact<{
id: Types.Scalars['uuid']['input'];
@@ -295,21 +295,21 @@ export type InsertEventPassNftsMutationVariables = Types.Exact<{
}>;
-export type InsertEventPassNftsMutation = { __typename?: 'mutation_root', insert_eventPassNft?: { __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', contractAddress: string, tokenId: any, metadata: any, error?: string | null, tokenUri?: string | null, chainId: string, eventId: string, eventPassId: string, organizerId: string, currentOwnerAddress?: string | null, lastNftTransferId?: any | null, isRevealed: boolean, id: any, created_at: any, updated_at: any }> } | null };
+export type InsertEventPassNftsMutation = { __typename?: 'mutation_root', insert_eventPassNft?: { __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', contractAddress: string, tokenId?: any | null, metadata?: any | null, error?: string | null, tokenUri?: string | null, chainId: string, eventId: string, eventPassId: string, organizerId: string, currentOwnerAddress?: string | null, lastNftTransferId?: any | null, isRevealed: boolean, id: any, created_at: any, updated_at: any }> } | null };
export type ClaimEventPassNftsMutationVariables = Types.Exact<{
updates: Array | Types.EventPassNft_Updates;
}>;
-export type ClaimEventPassNftsMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, currentOwnerAddress?: string | null, eventId: string, eventPassId: string, organizerId: string, tokenId: any }> } | null> | null };
+export type ClaimEventPassNftsMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, currentOwnerAddress?: string | null, eventId: string, eventPassId: string, organizerId: string, tokenId?: any | null }> } | null> | null };
export type UpdateNftsWithPackIdMutationVariables = Types.Exact<{
updates: Array | Types.EventPassNft_Updates;
}>;
-export type UpdateNftsWithPackIdMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, contractAddress: string, tokenId: any, packId?: string | null }> } | null> | null };
+export type UpdateNftsWithPackIdMutation = { __typename?: 'mutation_root', update_eventPassNft_many?: Array<{ __typename?: 'eventPassNft_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'eventPassNft', id: any, contractAddress: string, tokenId?: any | null, packId?: string | null }> } | null> | null };
export type GetEventPassNftByContractsAndTokenIdsQueryVariables = Types.Exact<{
contractAddresses: Array | Types.Scalars['String']['input'];
@@ -318,14 +318,14 @@ export type GetEventPassNftByContractsAndTokenIdsQueryVariables = Types.Exact<{
}>;
-export type GetEventPassNftByContractsAndTokenIdsQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', tokenId: any, eventId: string, eventPassId: string, organizerId: string }> };
+export type GetEventPassNftByContractsAndTokenIdsQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', tokenId?: any | null, eventId: string, eventPassId: string, organizerId: string }> };
export type GetListCurrentOwnerAddressForContractAddressQueryVariables = Types.Exact<{
contractAddress?: Types.InputMaybe;
}>;
-export type GetListCurrentOwnerAddressForContractAddressQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', currentOwnerAddress?: string | null, tokenId: any }> };
+export type GetListCurrentOwnerAddressForContractAddressQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', currentOwnerAddress?: string | null, tokenId?: any | null }> };
export type CreateEventPassNftContractMutationVariables = Types.Exact<{
object: Types.EventPassNftContract_Insert_Input;
@@ -362,12 +362,12 @@ export type GetEventPassNftContractDelayedRevealPasswordQueryVariables = Types.E
export type GetEventPassNftContractDelayedRevealPasswordQuery = { __typename?: 'query_root', eventPassNftContract: Array<{ __typename?: 'eventPassNftContract', type: Types.EventPassNftContractType_Enum, isDelayedRevealed: boolean, password?: string | null }> };
-export type GetEventPassNftContractNftsQueryVariables = Types.Exact<{
+export type GetEventPassNftContractNftsLazyMintedQueryVariables = Types.Exact<{
eventPassId?: Types.InputMaybe;
}>;
-export type GetEventPassNftContractNftsQuery = { __typename?: 'query_root', eventPassNftContract: Array<{ __typename?: 'eventPassNftContract', contractAddress: string, eventPassId: string, eventPassNfts: Array<{ __typename?: 'eventPassNft', id: any, packId?: string | null, currentOwnerAddress?: string | null, contractAddress: string, eventId: string, tokenId: any, eventPassId: string }> }> };
+export type GetEventPassNftContractNftsLazyMintedQuery = { __typename?: 'query_root', eventPassNftContract: Array<{ __typename?: 'eventPassNftContract', contractAddress: string, eventPassId: string, eventPassNfts: Array<{ __typename?: 'eventPassNft', id: any, packId?: string | null, currentOwnerAddress?: string | null, contractAddress: string, eventId: string, tokenId?: any | null, eventPassId: string, status?: Types.NftStatus_Enum | null }> }> };
export type GetEventPassOrderSumsQueryVariables = Types.Exact<{
eventPassId: Types.Scalars['String']['input'];
@@ -376,20 +376,6 @@ export type GetEventPassOrderSumsQueryVariables = Types.Exact<{
export type GetEventPassOrderSumsQuery = { __typename?: 'query_root', eventPassOrderSums_by_pk?: { __typename?: 'eventPassOrderSums', totalReserved: number } | null };
-export type InsertMinterTemporaryWalletMutationVariables = Types.Exact<{
- object: Types.MinterTemporaryWallet_Insert_Input;
-}>;
-
-
-export type InsertMinterTemporaryWalletMutation = { __typename?: 'mutation_root', insert_minterTemporaryWallet_one?: { __typename?: 'minterTemporaryWallet', address: string, eventPassId?: string | null, packId?: string | null } | null };
-
-export type GetMinterTemporaryWalletByEventPassIdQueryVariables = Types.Exact<{
- eventPassId: Types.Scalars['String']['input'];
-}>;
-
-
-export type GetMinterTemporaryWalletByEventPassIdQuery = { __typename?: 'query_root', minterTemporaryWallet: Array<{ __typename?: 'minterTemporaryWallet', address: string, privateKey: string, eventPassId?: string | null }> };
-
export type CreatePackNftContractMutationVariables = Types.Exact<{
object: Types.PackNftContract_Insert_Input;
}>;
@@ -402,7 +388,7 @@ export type GetPackNftContractFromPackIdQueryVariables = Types.Exact<{
}>;
-export type GetPackNftContractFromPackIdQuery = { __typename?: 'query_root', packNftContract: Array<{ __typename?: 'packNftContract', id: any, chainId: string, rewardsPerPack: number, organizerId: string, contractAddress: string, lotteryId: string, eventPassNftContracts: Array<{ __typename?: 'packNftContractEventPass', eventPassId: string, amount: number }>, eventPassNfts: Array<{ __typename?: 'eventPassNft', tokenId: any, contractAddress: string, currentOwnerAddress?: string | null, eventPassId: string, packId?: string | null }> }> };
+export type GetPackNftContractFromPackIdQuery = { __typename?: 'query_root', packNftContract: Array<{ __typename?: 'packNftContract', id: any, chainId: string, rewardsPerPack: number, organizerId: string, contractAddress: string, lotteryId: string, eventPassNftContracts: Array<{ __typename?: 'packNftContractEventPass', eventPassId: string, amount: number }>, eventPassNfts: Array<{ __typename?: 'eventPassNft', tokenId?: any | null, contractAddress: string, currentOwnerAddress?: string | null, eventPassId: string, packId?: string | null }> }> };
export type CreatePackNftContractEventPassesMutationVariables = Types.Exact<{
objects: Array | Types.PackNftContractEventPass_Insert_Input;
@@ -457,6 +443,189 @@ export type CheckFollowingOrganizerQueryVariables = Types.Exact<{
export type CheckFollowingOrganizerQuery = { __typename?: 'query_root', follow_by_pk?: { __typename?: 'follow', accountId: any, organizerSlug: string } | null };
+export type InsertLoyaltyCardNftContractMutationVariables = Types.Exact<{
+ object: Types.LoyaltyCardNftContract_Insert_Input;
+}>;
+
+
+export type InsertLoyaltyCardNftContractMutation = { __typename?: 'mutation_root', insert_loyaltyCardNftContract_one?: { __typename?: 'loyaltyCardNftContract', id: any } | null };
+
+export type CreateLoyaltyCardParametersMutationVariables = Types.Exact<{
+ object: Types.LoyaltyCardParameters_Insert_Input;
+}>;
+
+
+export type CreateLoyaltyCardParametersMutation = { __typename?: 'mutation_root', insert_loyaltyCardParameters_one?: { __typename?: 'loyaltyCardParameters', id: any } | null };
+
+export type UpdateLoyaltyCardParametersMutationVariables = Types.Exact<{
+ id: Types.Scalars['uuid']['input'];
+ object: Types.LoyaltyCardParameters_Set_Input;
+}>;
+
+
+export type UpdateLoyaltyCardParametersMutation = { __typename?: 'mutation_root', update_loyaltyCardParameters_by_pk?: { __typename?: 'loyaltyCardParameters', id: any } | null };
+
+export type InsertLoyaltyCardNftMutationVariables = Types.Exact<{
+ object: Types.LoyaltyCardNft_Insert_Input;
+}>;
+
+
+export type InsertLoyaltyCardNftMutation = { __typename?: 'mutation_root', insert_loyaltyCardNft_one?: { __typename?: 'loyaltyCardNft', id: any } | null };
+
+export type UpdateLoyaltyCardNftMutationVariables = Types.Exact<{
+ id: Types.Scalars['uuid']['input'];
+ object: Types.LoyaltyCardNft_Set_Input;
+}>;
+
+
+export type UpdateLoyaltyCardNftMutation = { __typename?: 'mutation_root', update_loyaltyCardNft_by_pk?: { __typename?: 'loyaltyCardNft', id: any } | null };
+
+export type UpdateLoyaltyCardNftsMutationVariables = Types.Exact<{
+ updates: Array | Types.LoyaltyCardNft_Updates;
+}>;
+
+
+export type UpdateLoyaltyCardNftsMutation = { __typename?: 'mutation_root', update_loyaltyCardNft_many?: Array<{ __typename?: 'loyaltyCardNft_mutation_response', affected_rows: number } | null> | null };
+
+export type GetLoyaltyCardOrganizerQueryVariables = Types.Exact<{
+ organizerId: Types.Scalars['ID']['input'];
+ stage: Types.Stage;
+}>;
+
+
+export type GetLoyaltyCardOrganizerQuery = { __typename?: 'query_root', organizer?: { __typename?: 'Organizer', loyaltyCard?: { __typename?: 'LoyaltyCard', id: string, nftName: string, nftImage: { __typename?: 'Asset', url: string }, loyaltyCardParameters?: { __typename?: 'loyaltyCardParameters', status?: Types.LoyaltyCardStatus_Enum | null } | null, loyaltyCardNftContract?: { __typename?: 'loyaltyCardNftContract', contractAddress: string, chainId: string } | null } | null } | null };
+
+export type GetLoyaltyCardNftContractByLoyaltyCardIdQueryVariables = Types.Exact<{
+ loyaltyCardId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetLoyaltyCardNftContractByLoyaltyCardIdQuery = { __typename?: 'query_root', loyaltyCardNftContract: Array<{ __typename?: 'loyaltyCardNftContract', contractAddress: string, chainId: string }> };
+
+export type GetAlchemyInfosFromLoyaltyCardIdQueryVariables = Types.Exact<{
+ loyaltyCardId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetAlchemyInfosFromLoyaltyCardIdQuery = { __typename?: 'query_root', loyaltyCardParameters: Array<{ __typename?: 'loyaltyCardParameters', id: any, activityWebhookId?: string | null, activityWebhookSigningKey?: string | null, metadataUpdateWebhookId?: string | null, metadataUpdateWebhookSigningKey?: string | null }> };
+
+export type GetLoyaltyCardOwnedByAddressQueryVariables = Types.Exact<{
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+ ownerAddress: Types.Scalars['String']['input'];
+ organizerId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetLoyaltyCardOwnedByAddressQuery = { __typename?: 'query_root', loyaltyCardNft: Array<{ __typename?: 'loyaltyCardNft', id: any, status?: Types.NftStatus_Enum | null, burnedTransferId?: any | null, organizerId: string }> };
+
+export type GetLoyaltyCardAlchemyEventQueryVariables = Types.Exact<{
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+ tokenId: Types.Scalars['bigint']['input'];
+}>;
+
+
+export type GetLoyaltyCardAlchemyEventQuery = { __typename?: 'query_root', loyaltyCardNft: Array<{ __typename?: 'loyaltyCardNft', id: any, status?: Types.NftStatus_Enum | null }> };
+
+export type GetLoyaltyCardNftContractByContractAddressQueryVariables = Types.Exact<{
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+ organizerId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetLoyaltyCardNftContractByContractAddressQuery = { __typename?: 'query_root', loyaltyCardNftContract: Array<{ __typename?: 'loyaltyCardNftContract', loyaltyCardId: string }> };
+
+export type GetLoyaltyCardByContractAddressForProcessQueryVariables = Types.Exact<{ [key: string]: never; }>;
+
+
+export type GetLoyaltyCardByContractAddressForProcessQuery = { __typename?: 'query_root', loyaltyCardNft: Array<{ __typename?: 'loyaltyCardNft', id: any, status?: Types.NftStatus_Enum | null, updated_at: any, contractAddress: string, ownerAddress: string, loyaltyCardId: string, metadata?: any | null, tokenId?: any | null }> };
+
+export type InsertMinterTemporaryWalletMutationVariables = Types.Exact<{
+ object: Types.MinterTemporaryWallet_Insert_Input;
+}>;
+
+
+export type InsertMinterTemporaryWalletMutation = { __typename?: 'mutation_root', insert_minterTemporaryWallet_one?: { __typename?: 'minterTemporaryWallet', address: string, eventPassId?: string | null, packId?: string | null, loyaltyCardId?: string | null, campaignId?: string | null } | null };
+
+export type InsertMinterTemporaryWalletsMutationVariables = Types.Exact<{
+ objects: Array | Types.MinterTemporaryWallet_Insert_Input;
+}>;
+
+
+export type InsertMinterTemporaryWalletsMutation = { __typename?: 'mutation_root', insert_minterTemporaryWallet?: { __typename?: 'minterTemporaryWallet_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'minterTemporaryWallet', address: string, eventPassId?: string | null, packId?: string | null, loyaltyCardId?: string | null, campaignId?: string | null }> } | null };
+
+export type GetMinterTemporaryWalletByEventPassIdQueryVariables = Types.Exact<{
+ eventPassId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetMinterTemporaryWalletByEventPassIdQuery = { __typename?: 'query_root', minterTemporaryWallet: Array<{ __typename?: 'minterTemporaryWallet', address: string, privateKey: string, eventPassId?: string | null }> };
+
+export type GetMinterTemporaryWalletByLoyaltyCardIdQueryVariables = Types.Exact<{
+ loyaltyCardId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetMinterTemporaryWalletByLoyaltyCardIdQuery = { __typename?: 'query_root', minterTemporaryWallet: Array<{ __typename?: 'minterTemporaryWallet', address: string, privateKey: string, loyaltyCardId?: string | null }> };
+
+export type GetMinterTemporaryWalletByCampaignIdQueryVariables = Types.Exact<{
+ campaignId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetMinterTemporaryWalletByCampaignIdQuery = { __typename?: 'query_root', minterTemporaryWallet: Array<{ __typename?: 'minterTemporaryWallet', address: string, privateKey: string, campaignId?: string | null }> };
+
+export type InsertNftMintPasswordMutationVariables = Types.Exact<{
+ object: Types.NftMintPassword_Insert_Input;
+}>;
+
+
+export type InsertNftMintPasswordMutation = { __typename?: 'mutation_root', insert_nftMintPassword_one?: { __typename?: 'nftMintPassword', id: any } | null };
+
+export type InsertNftMintPasswordsMutationVariables = Types.Exact<{
+ objects: Array | Types.NftMintPassword_Insert_Input;
+}>;
+
+
+export type InsertNftMintPasswordsMutation = { __typename?: 'mutation_root', insert_nftMintPassword?: { __typename?: 'nftMintPassword_mutation_response', affected_rows: number, returning: Array<{ __typename?: 'nftMintPassword', id: any, password: string, tokenId?: any | null, minterAddress?: string | null }> } | null };
+
+export type UpdateNftMintPasswordMinterMutationVariables = Types.Exact<{
+ id: Types.Scalars['uuid']['input'];
+ minterAddress: Types.Scalars['String']['input'];
+}>;
+
+
+export type UpdateNftMintPasswordMinterMutation = { __typename?: 'mutation_root', update_nftMintPassword_by_pk?: { __typename?: 'nftMintPassword', id: any } | null };
+
+export type UpdateNftMintPasswordTokenIdMutationVariables = Types.Exact<{
+ tokenId: Types.Scalars['bigint']['input'];
+ minterAddress: Types.Scalars['String']['input'];
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+}>;
+
+
+export type UpdateNftMintPasswordTokenIdMutation = { __typename?: 'mutation_root', update_nftMintPassword?: { __typename?: 'nftMintPassword_mutation_response', returning: Array<{ __typename?: 'nftMintPassword', id: any }> } | null };
+
+export type GetNftMintPasswordsForContractQueryVariables = Types.Exact<{
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetNftMintPasswordsForContractQuery = { __typename?: 'query_root', nftMintPassword: Array<{ __typename?: 'nftMintPassword', password: string, minterAddress?: string | null, created_at: any, updated_at: any }> };
+
+export type GetNftMintPasswordsForContractAvailableQueryVariables = Types.Exact<{
+ contractAddress: Types.Scalars['String']['input'];
+ chainId: Types.Scalars['String']['input'];
+ organizerId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetNftMintPasswordsForContractAvailableQuery = { __typename?: 'query_root', nftMintPassword: Array<{ __typename?: 'nftMintPassword', id: any, password: string }> };
+
export type GetOrganizerQueryVariables = Types.Exact<{
slug: Types.Scalars['String']['input'];
locale: Types.Locale;
@@ -483,9 +652,31 @@ export type GetOrganizerLatestEventsQueryVariables = Types.Exact<{
export type GetOrganizerLatestEventsQuery = { __typename?: 'query_root', eventParameters: Array<{ __typename?: 'eventParameters', dateStart?: any | null, dateEnd?: any | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string } } | null }> };
+export type GetShopifyCustomerQueryVariables = Types.Exact<{
+ organizerId: Types.Scalars['String']['input'];
+ customerId: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetShopifyCustomerQuery = { __typename?: 'query_root', shopifyCustomer: Array<{ __typename?: 'shopifyCustomer', address: string }> };
+
+export type InsertShopifyCustomerMutationVariables = Types.Exact<{
+ object: Types.ShopifyCustomer_Insert_Input;
+}>;
+
+
+export type InsertShopifyCustomerMutation = { __typename?: 'mutation_root', insert_shopifyCustomer_one?: { __typename?: 'shopifyCustomer', id: any } | null };
+
+export type GetShopifyDomainQueryVariables = Types.Exact<{
+ domain: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetShopifyDomainQuery = { __typename?: 'query_root', shopifyDomain_by_pk?: { __typename?: 'shopifyDomain', organizerId: string } | null };
+
export type EventPassFieldsFragment = { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null };
-export type EventPassNftFieldsFragment = { __typename?: 'eventPassNft', id: any, tokenId: any, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null };
+export type EventPassNftFieldsFragment = { __typename?: 'eventPassNft', id: any, tokenId?: any | null, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null };
export type GetEventPassNftByIdQueryVariables = Types.Exact<{
id: Types.Scalars['uuid']['input'];
@@ -494,21 +685,69 @@ export type GetEventPassNftByIdQueryVariables = Types.Exact<{
}>;
-export type GetEventPassNftByIdQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId: any, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPass?: { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null } | null } | null };
+export type GetEventPassNftByIdQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId?: any | null, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPass?: { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null } | null } | null };
export type GetEventPassNftByIdMinimalQueryVariables = Types.Exact<{
id: Types.Scalars['uuid']['input'];
}>;
-export type GetEventPassNftByIdMinimalQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId: any, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null } | null };
+export type GetEventPassNftByIdMinimalQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId?: any | null, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null } | null };
export type GetEventPassNftByIdWithEventPassNftContractQueryVariables = Types.Exact<{
id: Types.Scalars['uuid']['input'];
}>;
-export type GetEventPassNftByIdWithEventPassNftContractQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId: any, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPassNftContract?: { __typename?: 'eventPassNftContract', type: Types.EventPassNftContractType_Enum, isDelayedRevealed: boolean } | null } | null };
+export type GetEventPassNftByIdWithEventPassNftContractQuery = { __typename?: 'query_root', eventPassNft_by_pk?: { __typename?: 'eventPassNft', id: any, tokenId?: any | null, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPassNftContract?: { __typename?: 'eventPassNftContract', type: Types.EventPassNftContractType_Enum, isDelayedRevealed: boolean } | null } | null };
+
+export type CreatePublishableApiKeyMutationVariables = Types.Exact<{
+ object: Types.PublishableApiKey_Insert_Input;
+}>;
+
+
+export type CreatePublishableApiKeyMutation = { __typename?: 'mutation_root', insert_publishableApiKey_one?: { __typename?: 'publishableApiKey', id: any, name?: string | null, apiKey: string, allowlist: string, organizerId: string, expiresAt?: any | null, type: Types.ApiKeyType_Enum } | null };
+
+export type UpdatePublishableApiKeyMutationVariables = Types.Exact<{
+ id: Types.Scalars['uuid']['input'];
+ allowlist?: Types.InputMaybe;
+ expiresAt?: Types.InputMaybe;
+ status?: Types.InputMaybe;
+}>;
+
+
+export type UpdatePublishableApiKeyMutation = { __typename?: 'mutation_root', update_publishableApiKey_by_pk?: { __typename?: 'publishableApiKey', name?: string | null, allowlist: string, organizerId: string, expiresAt?: any | null } | null };
+
+export type GetPublishableApiKeyQueryVariables = Types.Exact<{
+ apiKey: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetPublishableApiKeyQuery = { __typename?: 'query_root', publishableApiKey: Array<{ __typename?: 'publishableApiKey', id: any, allowlist: string, organizerId: string, expiresAt?: any | null, status?: Types.ApiKeyStatus_Enum | null, type: Types.ApiKeyType_Enum }> };
+
+export type CreateSecretApiKeyMutationVariables = Types.Exact<{
+ object: Types.SecretApiKey_Insert_Input;
+}>;
+
+
+export type CreateSecretApiKeyMutation = { __typename?: 'mutation_root', insert_secretApiKey_one?: { __typename?: 'secretApiKey', id: any, name?: string | null, apiKey: string, hashedOriginSecret?: string | null, originSecretSalt?: string | null, encryptedIntegritySecret?: string | null, allowlist: string, organizerId: string, expiresAt?: any | null, type: Types.ApiKeyType_Enum } | null };
+
+export type UpdateSecretApiKeyMutationVariables = Types.Exact<{
+ id: Types.Scalars['uuid']['input'];
+ allowlist?: Types.InputMaybe;
+ expiresAt?: Types.InputMaybe;
+ status?: Types.InputMaybe;
+}>;
+
+
+export type UpdateSecretApiKeyMutation = { __typename?: 'mutation_root', update_secretApiKey_by_pk?: { __typename?: 'secretApiKey', name?: string | null, hashedOriginSecret?: string | null, originSecretSalt?: string | null, encryptedIntegritySecret?: string | null, allowlist: string, organizerId: string, expiresAt?: any | null } | null };
+
+export type GetSecretApiKeyQueryVariables = Types.Exact<{
+ apiKey: Types.Scalars['String']['input'];
+}>;
+
+
+export type GetSecretApiKeyQuery = { __typename?: 'query_root', secretApiKey: Array<{ __typename?: 'secretApiKey', id: any, hashedOriginSecret?: string | null, originSecretSalt?: string | null, encryptedIntegritySecret?: string | null, allowlist: string, organizerId: string, expiresAt?: any | null, status?: Types.ApiKeyStatus_Enum | null, type: Types.ApiKeyType_Enum }> };
export type RoleAssignmentFieldsFragment = { __typename?: 'roleAssignment', role: Types.Roles_Enum, organizerId: string, eventId: string };
diff --git a/libs/gql/admin/types/tsconfig.json b/libs/gql/admin/types/tsconfig.json
index 059cd8166..7abc8796f 100644
--- a/libs/gql/admin/types/tsconfig.json
+++ b/libs/gql/admin/types/tsconfig.json
@@ -1,11 +1,13 @@
{
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
- "noPropertyAccessFromIndexSignature": true,
+ "noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
diff --git a/libs/gql/anonymous/api/.swcrc b/libs/gql/anonymous/api/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/gql/anonymous/api/.swcrc
+++ b/libs/gql/anonymous/api/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/anonymous/api/src/generated/schema.graphql b/libs/gql/anonymous/api/src/generated/schema.graphql
index 6158eeb48..4239dfe12 100644
--- a/libs/gql/anonymous/api/src/generated/schema.graphql
+++ b/libs/gql/anonymous/api/src/generated/schema.graphql
@@ -285,6 +285,35 @@ type Asset implements Entity & Node {
skip: Int
where: EventPassDelayedRevealedWhereInput
): [EventPassDelayedRevealed!]!
+ nftImageLoyaltyCard(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ where: LoyaltyCardWhereInput
+ ): [LoyaltyCard!]!
nftImagePack(
after: String
before: String
@@ -446,6 +475,7 @@ input AssetCreateInput {
mimeType: String
nftImageEventPass: EventPassCreateManyInlineInput
nftImageEventPassDelayedRevealed: EventPassDelayedRevealedCreateManyInlineInput
+ nftImageLoyaltyCard: LoyaltyCardCreateManyInlineInput
nftImagePack: PackCreateManyInlineInput
size: Float
updatedAt: DateTime
@@ -576,6 +606,9 @@ input AssetManyWhereInput {
nftImageEventPass_every: EventPassWhereInput
nftImageEventPass_none: EventPassWhereInput
nftImageEventPass_some: EventPassWhereInput
+ nftImageLoyaltyCard_every: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_none: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_some: LoyaltyCardWhereInput
nftImagePack_every: PackWhereInput
nftImagePack_none: PackWhereInput
nftImagePack_some: PackWhereInput
@@ -676,6 +709,7 @@ input AssetUpdateInput {
mimeType: String
nftImageEventPass: EventPassUpdateManyInlineInput
nftImageEventPassDelayedRevealed: EventPassDelayedRevealedUpdateManyInlineInput
+ nftImageLoyaltyCard: LoyaltyCardUpdateManyInlineInput
nftImagePack: PackUpdateManyInlineInput
size: Float
width: Float
@@ -987,6 +1021,9 @@ input AssetWhereInput {
nftImageEventPass_every: EventPassWhereInput
nftImageEventPass_none: EventPassWhereInput
nftImageEventPass_some: EventPassWhereInput
+ nftImageLoyaltyCard_every: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_none: LoyaltyCardWhereInput
+ nftImageLoyaltyCard_some: LoyaltyCardWhereInput
nftImagePack_every: PackWhereInput
nftImagePack_none: PackWhereInput
nftImagePack_some: PackWhereInput
@@ -2184,6 +2221,9 @@ enum EntityTypeName {
"""
LocationAddress
+ """Root loyalty card model"""
+ LoyaltyCard
+
"""
An organizer is an entity that launch events and handle the pass benefits.
"""
@@ -5881,66 +5921,734 @@ input LocationAddressWhereInput {
"""Any other value that exists and is not equal to the given value."""
street_not: String
- """All values not containing the given string."""
- street_not_contains: String
+ """All values not containing the given string."""
+ street_not_contains: String
+
+ """All values not ending with the given string"""
+ street_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ street_not_in: [String]
+
+ """All values not starting with the given string."""
+ street_not_starts_with: String
+
+ """All values starting with the given string."""
+ street_starts_with: String
+ venue: String
+
+ """All values containing the given string."""
+ venue_contains: String
+
+ """All values ending with the given string."""
+ venue_ends_with: String
+
+ """All values that are contained in given list."""
+ venue_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ venue_not: String
+
+ """All values not containing the given string."""
+ venue_not_contains: String
+
+ """All values not ending with the given string"""
+ venue_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ venue_not_in: [String]
+
+ """All values not starting with the given string."""
+ venue_not_starts_with: String
+
+ """All values starting with the given string."""
+ venue_starts_with: String
+}
+
+"""References LocationAddress record uniquely"""
+input LocationAddressWhereUniqueInput {
+ id: ID
+}
+
+"""Input for a geolocation point with latitude and longitude"""
+input LocationInput {
+ latitude: Float!
+ longitude: Float!
+}
+
+"""
+The Long scalar type represents non-fractional signed whole numeric values. Long can represent values between -(2^63) and 2^63 - 1.
+"""
+scalar Long
+
+"""Root loyalty card model"""
+type LoyaltyCard implements Entity & Node {
+ """The time the document was created"""
+ createdAt: DateTime!
+
+ """User that created this document"""
+ createdBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+
+ """Get the document in other stages"""
+ documentInStages(
+ """Decides if the current stage should be included or not"""
+ includeCurrent: Boolean! = false
+
+ """
+ Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree
+ """
+ inheritLocale: Boolean! = false
+
+ """Potential stages that should be returned"""
+ stages: [Stage!]! = [DRAFT, PUBLISHED]
+ ): [LoyaltyCard!]!
+
+ """List of LoyaltyCard versions"""
+ history(
+ limit: Int! = 10
+ skip: Int! = 0
+
+ """
+ This is optional and can be used to fetch the document version history for a specific stage instead of the current one
+ """
+ stageOverride: Stage
+ ): [Version!]!
+
+ """The unique identifier"""
+ id: ID!
+
+ """Image representing the NFT. Advised resolution is 800 x 800 pixels."""
+ nftImage(
+ """
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
+
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): Asset!
+
+ """Name associated with the NFT. Cannot be localized."""
+ nftName: String!
+ organizer(
+ """
+ Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.
+
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.
+ The first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): Organizer
+
+ """The time the document was published. Null on documents in draft stage."""
+ publishedAt: DateTime
+
+ """User that last published this document"""
+ publishedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+ scheduledIn(
+ after: String
+ before: String
+ first: Int
+
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+ last: Int
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ skip: Int
+ where: ScheduledOperationWhereInput
+ ): [ScheduledOperation!]!
+
+ """System stage field"""
+ stage: Stage!
+
+ """The time the document was updated"""
+ updatedAt: DateTime!
+
+ """User that last updated this document"""
+ updatedBy(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): User
+}
+
+input LoyaltyCardConnectInput {
+ """
+ Allow to specify document position in list of connected documents, will default to appending at end of list
+ """
+ position: ConnectPositionInput
+
+ """Document to connect"""
+ where: LoyaltyCardWhereUniqueInput!
+}
+
+"""A connection to a list of items."""
+type LoyaltyCardConnection {
+ aggregate: Aggregate!
+
+ """A list of edges."""
+ edges: [LoyaltyCardEdge!]!
+
+ """Information to aid in pagination."""
+ pageInfo: PageInfo!
+}
+
+input LoyaltyCardCreateInput {
+ cltzsfm12094507ul1er1czw6: OrganizerCreateManyInlineInput
+ createdAt: DateTime
+ nftImage: AssetCreateOneInlineInput!
+ nftName: String!
+ organizer: OrganizerCreateOneInlineInput
+ updatedAt: DateTime
+}
+
+input LoyaltyCardCreateManyInlineInput {
+ """Connect multiple existing LoyaltyCard documents"""
+ connect: [LoyaltyCardWhereUniqueInput!]
+
+ """Create and connect multiple existing LoyaltyCard documents"""
+ create: [LoyaltyCardCreateInput!]
+}
+
+input LoyaltyCardCreateOneInlineInput {
+ """Connect one existing LoyaltyCard document"""
+ connect: LoyaltyCardWhereUniqueInput
+
+ """Create and connect one LoyaltyCard document"""
+ create: LoyaltyCardCreateInput
+}
+
+"""An edge in a connection."""
+type LoyaltyCardEdge {
+ """A cursor for use in pagination."""
+ cursor: String!
+
+ """The item at the end of the edge."""
+ node: LoyaltyCard!
+}
+
+"""Identifies documents"""
+input LoyaltyCardManyWhereInput {
+ """Logical AND on all given filters."""
+ AND: [LoyaltyCardWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [LoyaltyCardWhereInput!]
+
+ """Logical OR on all given filters."""
+ OR: [LoyaltyCardWhereInput!]
+
+ """Contains search across all appropriate fields."""
+ _search: String
+ createdAt: DateTime
+
+ """All values greater than the given value."""
+ createdAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ createdAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ createdAt_in: [DateTime]
+
+ """All values less than the given value."""
+ createdAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ createdAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ createdAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ createdAt_not_in: [DateTime]
+ createdBy: UserWhereInput
+ documentInStages_every: LoyaltyCardWhereStageInput
+ documentInStages_none: LoyaltyCardWhereStageInput
+ documentInStages_some: LoyaltyCardWhereStageInput
+ id: ID
+
+ """All values containing the given string."""
+ id_contains: ID
+
+ """All values ending with the given string."""
+ id_ends_with: ID
+
+ """All values that are contained in given list."""
+ id_in: [ID]
+
+ """Any other value that exists and is not equal to the given value."""
+ id_not: ID
+
+ """All values not containing the given string."""
+ id_not_contains: ID
+
+ """All values not ending with the given string"""
+ id_not_ends_with: ID
+
+ """All values that are not contained in given list."""
+ id_not_in: [ID]
+
+ """All values not starting with the given string."""
+ id_not_starts_with: ID
+
+ """All values starting with the given string."""
+ id_starts_with: ID
+ nftImage: AssetWhereInput
+ nftName: String
+
+ """All values containing the given string."""
+ nftName_contains: String
+
+ """All values ending with the given string."""
+ nftName_ends_with: String
+
+ """All values that are contained in given list."""
+ nftName_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ nftName_not: String
+
+ """All values not containing the given string."""
+ nftName_not_contains: String
+
+ """All values not ending with the given string"""
+ nftName_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ nftName_not_in: [String]
+
+ """All values not starting with the given string."""
+ nftName_not_starts_with: String
+
+ """All values starting with the given string."""
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
+ publishedAt: DateTime
+
+ """All values greater than the given value."""
+ publishedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ publishedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ publishedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ publishedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ publishedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ publishedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ publishedAt_not_in: [DateTime]
+ publishedBy: UserWhereInput
+ scheduledIn_every: ScheduledOperationWhereInput
+ scheduledIn_none: ScheduledOperationWhereInput
+ scheduledIn_some: ScheduledOperationWhereInput
+ updatedAt: DateTime
+
+ """All values greater than the given value."""
+ updatedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ updatedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ updatedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ updatedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ updatedAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ updatedAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ updatedAt_not_in: [DateTime]
+ updatedBy: UserWhereInput
+}
+
+enum LoyaltyCardOrderByInput {
+ createdAt_ASC
+ createdAt_DESC
+ id_ASC
+ id_DESC
+ nftName_ASC
+ nftName_DESC
+ publishedAt_ASC
+ publishedAt_DESC
+ updatedAt_ASC
+ updatedAt_DESC
+}
+
+input LoyaltyCardUpdateInput {
+ cltzsfm12094507ul1er1czw6: OrganizerUpdateManyInlineInput
+ nftImage: AssetUpdateOneInlineInput
+ nftName: String
+ organizer: OrganizerUpdateOneInlineInput
+}
+
+input LoyaltyCardUpdateManyInlineInput {
+ """Connect multiple existing LoyaltyCard documents"""
+ connect: [LoyaltyCardConnectInput!]
+
+ """Create and connect multiple LoyaltyCard documents"""
+ create: [LoyaltyCardCreateInput!]
+
+ """Delete multiple LoyaltyCard documents"""
+ delete: [LoyaltyCardWhereUniqueInput!]
+
+ """Disconnect multiple LoyaltyCard documents"""
+ disconnect: [LoyaltyCardWhereUniqueInput!]
+
+ """
+ Override currently-connected documents with multiple existing LoyaltyCard documents
+ """
+ set: [LoyaltyCardWhereUniqueInput!]
+
+ """Update multiple LoyaltyCard documents"""
+ update: [LoyaltyCardUpdateWithNestedWhereUniqueInput!]
+
+ """Upsert multiple LoyaltyCard documents"""
+ upsert: [LoyaltyCardUpsertWithNestedWhereUniqueInput!]
+}
+
+input LoyaltyCardUpdateManyInput {
+ nftName: String
+}
+
+input LoyaltyCardUpdateOneInlineInput {
+ """Connect existing LoyaltyCard document"""
+ connect: LoyaltyCardWhereUniqueInput
+
+ """Create and connect one LoyaltyCard document"""
+ create: LoyaltyCardCreateInput
+
+ """Delete currently connected LoyaltyCard document"""
+ delete: Boolean
+
+ """Disconnect currently connected LoyaltyCard document"""
+ disconnect: Boolean
+
+ """Update single LoyaltyCard document"""
+ update: LoyaltyCardUpdateWithNestedWhereUniqueInput
+
+ """Upsert single LoyaltyCard document"""
+ upsert: LoyaltyCardUpsertWithNestedWhereUniqueInput
+}
+
+input LoyaltyCardUpdateWithNestedWhereUniqueInput {
+ """Document to update"""
+ data: LoyaltyCardUpdateInput!
+
+ """Unique document search"""
+ where: LoyaltyCardWhereUniqueInput!
+}
+
+input LoyaltyCardUpsertInput {
+ """Create document if it didn't exist"""
+ create: LoyaltyCardCreateInput!
+
+ """Update document if it exists"""
+ update: LoyaltyCardUpdateInput!
+}
+
+input LoyaltyCardUpsertWithNestedWhereUniqueInput {
+ """Upsert data"""
+ data: LoyaltyCardUpsertInput!
+
+ """Unique document search"""
+ where: LoyaltyCardWhereUniqueInput!
+}
+
+"""
+This contains a set of filters that can be used to compare values internally
+"""
+input LoyaltyCardWhereComparatorInput {
+ """
+ This field can be used to request to check if the entry is outdated by internal comparison
+ """
+ outdated_to: Boolean
+}
+
+"""Identifies documents"""
+input LoyaltyCardWhereInput {
+ """Logical AND on all given filters."""
+ AND: [LoyaltyCardWhereInput!]
+
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [LoyaltyCardWhereInput!]
+
+ """Logical OR on all given filters."""
+ OR: [LoyaltyCardWhereInput!]
+
+ """Contains search across all appropriate fields."""
+ _search: String
+ createdAt: DateTime
+
+ """All values greater than the given value."""
+ createdAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ createdAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ createdAt_in: [DateTime]
+
+ """All values less than the given value."""
+ createdAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ createdAt_lte: DateTime
+
+ """Any other value that exists and is not equal to the given value."""
+ createdAt_not: DateTime
+
+ """All values that are not contained in given list."""
+ createdAt_not_in: [DateTime]
+ createdBy: UserWhereInput
+ documentInStages_every: LoyaltyCardWhereStageInput
+ documentInStages_none: LoyaltyCardWhereStageInput
+ documentInStages_some: LoyaltyCardWhereStageInput
+ id: ID
+
+ """All values containing the given string."""
+ id_contains: ID
+
+ """All values ending with the given string."""
+ id_ends_with: ID
+
+ """All values that are contained in given list."""
+ id_in: [ID]
+
+ """Any other value that exists and is not equal to the given value."""
+ id_not: ID
+
+ """All values not containing the given string."""
+ id_not_contains: ID
+
+ """All values not ending with the given string"""
+ id_not_ends_with: ID
+
+ """All values that are not contained in given list."""
+ id_not_in: [ID]
+
+ """All values not starting with the given string."""
+ id_not_starts_with: ID
+
+ """All values starting with the given string."""
+ id_starts_with: ID
+ nftImage: AssetWhereInput
+ nftName: String
+
+ """All values containing the given string."""
+ nftName_contains: String
+
+ """All values ending with the given string."""
+ nftName_ends_with: String
+
+ """All values that are contained in given list."""
+ nftName_in: [String]
+
+ """Any other value that exists and is not equal to the given value."""
+ nftName_not: String
+
+ """All values not containing the given string."""
+ nftName_not_contains: String
+
+ """All values not ending with the given string"""
+ nftName_not_ends_with: String
+
+ """All values that are not contained in given list."""
+ nftName_not_in: [String]
+
+ """All values not starting with the given string."""
+ nftName_not_starts_with: String
+
+ """All values starting with the given string."""
+ nftName_starts_with: String
+ organizer: OrganizerWhereInput
+ publishedAt: DateTime
+
+ """All values greater than the given value."""
+ publishedAt_gt: DateTime
+
+ """All values greater than or equal the given value."""
+ publishedAt_gte: DateTime
+
+ """All values that are contained in given list."""
+ publishedAt_in: [DateTime]
+
+ """All values less than the given value."""
+ publishedAt_lt: DateTime
+
+ """All values less than or equal the given value."""
+ publishedAt_lte: DateTime
- """All values not ending with the given string"""
- street_not_ends_with: String
+ """Any other value that exists and is not equal to the given value."""
+ publishedAt_not: DateTime
"""All values that are not contained in given list."""
- street_not_in: [String]
+ publishedAt_not_in: [DateTime]
+ publishedBy: UserWhereInput
+ scheduledIn_every: ScheduledOperationWhereInput
+ scheduledIn_none: ScheduledOperationWhereInput
+ scheduledIn_some: ScheduledOperationWhereInput
+ updatedAt: DateTime
- """All values not starting with the given string."""
- street_not_starts_with: String
+ """All values greater than the given value."""
+ updatedAt_gt: DateTime
- """All values starting with the given string."""
- street_starts_with: String
- venue: String
+ """All values greater than or equal the given value."""
+ updatedAt_gte: DateTime
- """All values containing the given string."""
- venue_contains: String
+ """All values that are contained in given list."""
+ updatedAt_in: [DateTime]
- """All values ending with the given string."""
- venue_ends_with: String
+ """All values less than the given value."""
+ updatedAt_lt: DateTime
- """All values that are contained in given list."""
- venue_in: [String]
+ """All values less than or equal the given value."""
+ updatedAt_lte: DateTime
"""Any other value that exists and is not equal to the given value."""
- venue_not: String
+ updatedAt_not: DateTime
- """All values not containing the given string."""
- venue_not_contains: String
+ """All values that are not contained in given list."""
+ updatedAt_not_in: [DateTime]
+ updatedBy: UserWhereInput
+}
- """All values not ending with the given string"""
- venue_not_ends_with: String
+"""
+The document in stages filter allows specifying a stage entry to cross compare the same document between different stages
+"""
+input LoyaltyCardWhereStageInput {
+ """Logical AND on all given filters."""
+ AND: [LoyaltyCardWhereStageInput!]
- """All values that are not contained in given list."""
- venue_not_in: [String]
+ """Logical NOT on all given filters combined by AND."""
+ NOT: [LoyaltyCardWhereStageInput!]
- """All values not starting with the given string."""
- venue_not_starts_with: String
+ """Logical OR on all given filters."""
+ OR: [LoyaltyCardWhereStageInput!]
- """All values starting with the given string."""
- venue_starts_with: String
-}
+ """
+ This field contains fields which can be set as true or false to specify an internal comparison
+ """
+ compareWithParent: LoyaltyCardWhereComparatorInput
-"""References LocationAddress record uniquely"""
-input LocationAddressWhereUniqueInput {
- id: ID
+ """Specify the stage to compare with"""
+ stage: Stage
}
-"""Input for a geolocation point with latitude and longitude"""
-input LocationInput {
- latitude: Float!
- longitude: Float!
+"""References LoyaltyCard record uniquely"""
+input LoyaltyCardWhereUniqueInput {
+ id: ID
}
-"""
-The Long scalar type represents non-fractional signed whole numeric values. Long can represent values between -(2^63) and 2^63 - 1.
-"""
-scalar Long
-
"""An object with an ID"""
interface Node {
"""The id of the object."""
@@ -6169,6 +6877,27 @@ type Organizer implements Entity & Node {
"""
locales: [Locale!]! = [en, fr]
): [Organizer!]!
+ loyaltyCard(
+ """
+ Sets the locale of the resolved parent document as the only locale in the query's subtree.
+
+ Note that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will affect any existing locale filtering defined in the query's tree for the subtree.
+ """
+ forceParentLocale: Boolean
+
+ """
+ Allows to optionally override locale filtering behaviour in the query's subtree.
+
+ Note that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument will overwrite any existing locale filtering defined in the query's tree for the subtree.
+ """
+ locales: [Locale!]
+ ): LoyaltyCard
"""Name of the organizer"""
name: String!
@@ -6313,6 +7042,7 @@ type OrganizerConnection {
input OrganizerCreateInput {
clr7j9mmt0q2j01uo9zrs2fm7: PackCreateManyInlineInput
+ cltzsen11092507ul9qlg4ywb: LoyaltyCardCreateManyInlineInput
contentSpaces: ContentSpaceCreateManyInlineInput
createdAt: DateTime
@@ -6331,6 +7061,7 @@ input OrganizerCreateInput {
Inline mutations for managing document localizations excluding the default locale
"""
localizations: OrganizerCreateLocalizationsInput
+ loyaltyCard: LoyaltyCardCreateOneInlineInput
name: String!
slug: String!
telegramHandle: String
@@ -6613,6 +7344,7 @@ input OrganizerManyWhereInput {
"""All values starting with the given string."""
instagramHandle_starts_with: String
+ loyaltyCard: LoyaltyCardWhereInput
name: String
"""All values containing the given string."""
@@ -6867,6 +7599,7 @@ enum OrganizerOrderByInput {
input OrganizerUpdateInput {
clr7j9mmt0q2j01uo9zrs2fm7: PackUpdateManyInlineInput
+ cltzsen11092507ul9qlg4ywb: LoyaltyCardUpdateManyInlineInput
contentSpaces: ContentSpaceUpdateManyInlineInput
"""description input for default locale (en)"""
@@ -6882,6 +7615,7 @@ input OrganizerUpdateInput {
"""Manage document localizations"""
localizations: OrganizerUpdateLocalizationsInput
+ loyaltyCard: LoyaltyCardUpdateOneInlineInput
name: String
slug: String
telegramHandle: String
@@ -7242,6 +7976,7 @@ input OrganizerWhereInput {
"""All values starting with the given string."""
instagramHandle_starts_with: String
+ loyaltyCard: LoyaltyCardWhereInput
name: String
"""All values containing the given string."""
@@ -9033,7 +9768,7 @@ type ScheduledOperation implements Entity & Node {
): User
}
-union ScheduledOperationAffectedDocument = Asset | ContentSpace | Event | EventPass | EventPassDelayedRevealed | Organizer | Pack
+union ScheduledOperationAffectedDocument = Asset | ContentSpace | Event | EventPass | EventPassDelayedRevealed | LoyaltyCard | Organizer | Pack
"""A connection to a list of items."""
type ScheduledOperationConnection {
@@ -10242,7 +10977,7 @@ type eventPassNft {
metadata(
"""JSON select path"""
path: String
- ): jsonb!
+ ): jsonb
organizer(
"""
Defines which locales should be returned.
@@ -10275,7 +11010,7 @@ type eventPassNft {
"""
The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.
"""
- tokenId: bigint!
+ tokenId: bigint
}
"""
@@ -10505,6 +11240,9 @@ type mutation_root {
"""Create one eventPassDelayedRevealed"""
createEventPassDelayedRevealed(data: EventPassDelayedRevealedCreateInput!): EventPassDelayedRevealed
+ """Create one loyaltyCard"""
+ createLoyaltyCard(data: LoyaltyCardCreateInput!): LoyaltyCard
+
"""Create one organizer"""
createOrganizer(data: OrganizerCreateInput!): Organizer
@@ -10550,6 +11288,14 @@ type mutation_root {
where: EventPassDelayedRevealedWhereUniqueInput!
): EventPassDelayedRevealed
+ """
+ Delete one loyaltyCard from _all_ existing stages. Returns deleted document.
+ """
+ deleteLoyaltyCard(
+ """Document to delete"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
"""Delete many Asset documents"""
deleteManyAssets(
"""Documents to delete"""
@@ -10642,6 +11388,24 @@ type mutation_root {
where: EventManyWhereInput
): EventConnection!
+ """Delete many LoyaltyCard documents"""
+ deleteManyLoyaltyCards(
+ """Documents to delete"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
+
+ """Delete many LoyaltyCard documents, return deleted documents"""
+ deleteManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
+ last: Int
+ skip: Int
+
+ """Documents to delete"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
+
"""Delete many Organizer documents"""
deleteManyOrganizers(
"""Documents to delete"""
@@ -10796,6 +11560,15 @@ type mutation_root {
withDefaultLocale: Boolean = true
): EventPassDelayedRevealed
+ """Publish one loyaltyCard"""
+ publishLoyaltyCard(
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
+
+ """Document to publish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
"""Publish many Asset documents"""
publishManyAssets(
"""Document localizations to publish"""
@@ -11021,6 +11794,33 @@ type mutation_root {
withDefaultLocale: Boolean = true
): EventConnection!
+ """Publish many LoyaltyCard documents"""
+ publishManyLoyaltyCards(
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
+
+ """Identifies documents in each stage to be published"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
+
+ """Publish many LoyaltyCard documents"""
+ publishManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
+
+ """Stage to find matching documents in"""
+ from: Stage = DRAFT
+ last: Int
+ skip: Int
+
+ """Stages to publish documents to"""
+ to: [Stage!]! = [PUBLISHED]
+
+ """Identifies documents in each stage to be published"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
+
"""Publish many Organizer documents"""
publishManyOrganizers(
"""Document localizations to publish"""
@@ -11277,6 +12077,23 @@ type mutation_root {
withDefaultLocale: Boolean = true
): EventPassDelayedRevealed
+ """Schedule to publish one loyaltyCard"""
+ schedulePublishLoyaltyCard(
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """Publishing target stage"""
+ to: [Stage!]! = [PUBLISHED]
+
+ """Document to publish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
"""Schedule to publish one organizer"""
schedulePublishOrganizer(
"""Optional localizations to publish"""
@@ -11474,6 +12291,25 @@ type mutation_root {
where: EventPassDelayedRevealedWhereUniqueInput!
): EventPassDelayedRevealed
+ """
+ Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ """
+ scheduleUnpublishLoyaltyCard(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """
+ Release at point in time, will create new release containing this operation
+ """
+ releaseAt: DateTime
+
+ """Optionally attach this scheduled operation to an existing release"""
+ releaseId: String
+
+ """Document to unpublish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
"""
Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
"""
@@ -11637,6 +12473,17 @@ type mutation_root {
where: EventPassDelayedRevealedWhereUniqueInput!
): EventPassDelayedRevealed
+ """
+ Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.
+ """
+ unpublishLoyaltyCard(
+ """Stages to unpublish document from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """Document to unpublish"""
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
"""Unpublish many Asset documents"""
unpublishManyAssets(
"""Stages to unpublish documents from"""
@@ -11842,6 +12689,35 @@ type mutation_root {
where: EventManyWhereInput
): EventConnection!
+ """Unpublish many LoyaltyCard documents"""
+ unpublishManyLoyaltyCards(
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+
+ """Identifies documents in each stage"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
+
+ """
+ Find many LoyaltyCard documents that match criteria in specified stage and unpublish from target stages
+ """
+ unpublishManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+ first: Int
+
+ """Stages to unpublish documents from"""
+ from: [Stage!]! = [PUBLISHED]
+ last: Int
+ skip: Int
+
+ """Stage to find matching documents in"""
+ stage: Stage = DRAFT
+
+ """Identifies documents in draft stage"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
+
"""Unpublish many Organizer documents"""
unpublishManyOrganizers(
"""Stages to unpublish documents from"""
@@ -11981,6 +12857,9 @@ type mutation_root {
"""Update one eventPassDelayedRevealed"""
updateEventPassDelayedRevealed(data: EventPassDelayedRevealedUpdateInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
+ """Update one loyaltyCard"""
+ updateLoyaltyCard(data: LoyaltyCardUpdateInput!, where: LoyaltyCardWhereUniqueInput!): LoyaltyCard
+
"""Update many assets"""
updateManyAssets(
"""Updates to document content"""
@@ -12101,6 +12980,30 @@ type mutation_root {
where: EventManyWhereInput
): EventConnection!
+ """Update many loyaltyCards"""
+ updateManyLoyaltyCards(
+ """Updates to document content"""
+ data: LoyaltyCardUpdateManyInput!
+
+ """Documents to apply update on"""
+ where: LoyaltyCardManyWhereInput
+ ): BatchPayload!
+
+ """Update many LoyaltyCard documents"""
+ updateManyLoyaltyCardsConnection(
+ after: ID
+ before: ID
+
+ """Updates to document content"""
+ data: LoyaltyCardUpdateManyInput!
+ first: Int
+ last: Int
+ skip: Int
+
+ """Documents to apply update on"""
+ where: LoyaltyCardManyWhereInput
+ ): LoyaltyCardConnection!
+
"""Update many organizers"""
updateManyOrganizers(
"""Updates to document content"""
@@ -12173,6 +13076,9 @@ type mutation_root {
"""Upsert one eventPassDelayedRevealed"""
upsertEventPassDelayedRevealed(upsert: EventPassDelayedRevealedUpsertInput!, where: EventPassDelayedRevealedWhereUniqueInput!): EventPassDelayedRevealed
+ """Upsert one loyaltyCard"""
+ upsertLoyaltyCard(upsert: LoyaltyCardUpsertInput!, where: LoyaltyCardWhereUniqueInput!): LoyaltyCard
+
"""Upsert one organizer"""
upsertOrganizer(upsert: OrganizerUpsertInput!, where: OrganizerWhereUniqueInput!): Organizer
@@ -12513,6 +13419,9 @@ type query_root {
"""Fetches an object given its ID"""
entities(
+ """Defines which locales to query for"""
+ locales: [Locale!]
+
"""The where parameters to query components"""
where: [EntityWhereInput!]!
): [Entity!]
@@ -12750,6 +13659,68 @@ type query_root {
where: EventWhereInput
): EventConnection!
+ """Retrieve a single loyaltyCard"""
+ loyaltyCard(
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereUniqueInput!
+ ): LoyaltyCard
+
+ """Retrieve document version"""
+ loyaltyCardVersion(where: VersionWhereInput!): DocumentVersion
+
+ """Retrieve multiple loyaltyCards"""
+ loyaltyCards(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereInput
+ ): [LoyaltyCard!]!
+
+ """Retrieve multiple loyaltyCards using the Relay connection interface"""
+ loyaltyCardsConnection(
+ after: String
+ before: String
+ first: Int
+ last: Int
+
+ """
+ Defines which locales should be returned.
+
+ Note that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.
+ For related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.
+
+ This argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.
+ """
+ locales: [Locale!]! = [en]
+ orderBy: LoyaltyCardOrderByInput
+ skip: Int
+ stage: Stage! = PUBLISHED
+ where: LoyaltyCardWhereInput
+ ): LoyaltyCardConnection!
+
"""Fetches an object given its ID"""
node(
"""The ID of an object"""
diff --git a/libs/gql/anonymous/api/src/generated/schema.json b/libs/gql/anonymous/api/src/generated/schema.json
index b35d4dc27..3b3294300 100644
--- a/libs/gql/anonymous/api/src/generated/schema.json
+++ b/libs/gql/anonymous/api/src/generated/schema.json
@@ -1269,6 +1269,147 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImageLoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack",
"description": null,
@@ -2002,6 +2143,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack",
"description": null,
@@ -2896,6 +3049,42 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack_every",
"description": null,
@@ -3522,70 +3711,11 @@
"deprecationReason": null
},
{
- "name": "nftImagePack",
+ "name": "nftImageLoyaltyCard",
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "PackUpdateManyInlineInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "size",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "width",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationDataInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "fileName",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "handle",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
+ "name": "LoyaltyCardUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -3593,23 +3723,11 @@
"deprecationReason": null
},
{
- "name": "height",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Float",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "mimeType",
+ "name": "nftImagePack",
"description": null,
"type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "INPUT_OBJECT",
+ "name": "PackUpdateManyInlineInput",
"ofType": null
},
"defaultValue": null,
@@ -3647,146 +3765,229 @@
},
{
"kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationInput",
+ "name": "AssetUpdateLocalizationDataInput",
"description": null,
"fields": null,
"inputFields": [
{
- "name": "data",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationDataInput",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locale",
+ "name": "fileName",
"description": null,
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationsInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "create",
- "description": "Localizations to create",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetCreateLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "delete",
- "description": "Localizations to delete",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "update",
- "description": "Localizations to update",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateLocalizationInput",
- "ofType": null
- }
- }
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "upsert",
- "description": null,
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpsertLocalizationInput",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "interfaces": null,
- "enumValues": null,
- "possibleTypes": null
- },
- {
- "kind": "INPUT_OBJECT",
- "name": "AssetUpdateManyInput",
- "description": null,
- "fields": null,
- "inputFields": [
- {
- "name": "fileName",
+ "name": "handle",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "height",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "mimeType",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "size",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "width",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Float",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationDataInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locale",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationsInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": "Localizations to create",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete",
+ "description": "Localizations to delete",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Localizations to update",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpsertLocalizationInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "fileName",
"description": null,
"type": {
"kind": "SCALAR",
@@ -5363,6 +5564,42 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "nftImageLoyaltyCard_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImageLoyaltyCard_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "nftImagePack_every",
"description": null,
@@ -11212,6 +11449,11 @@
"name": "LocationAddress",
"ofType": null
},
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
{
"kind": "OBJECT",
"name": "Organizer",
@@ -11294,6 +11536,12 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "LoyaltyCard",
+ "description": "Root loyalty card model",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "Organizer",
"description": "An organizer is an entity that launch events and handle the pass benefits.",
@@ -29804,267 +30052,3443 @@
"enumValues": null,
"possibleTypes": null
},
- {
- "kind": "INTERFACE",
- "name": "Node",
- "description": "An object with an ID",
- "fields": [
- {
- "name": "id",
- "description": "The id of the object.",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stage",
- "description": "The Stage of an object",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "inputFields": null,
- "interfaces": [],
- "enumValues": null,
- "possibleTypes": [
- {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "Pack",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledOperation",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "ScheduledRelease",
- "ofType": null
- },
- {
- "kind": "OBJECT",
- "name": "User",
- "ofType": null
- }
- ]
- },
{
"kind": "OBJECT",
- "name": "Organizer",
- "description": "An organizer is an entity that launch events and handle the pass benefits.",
+ "name": "LoyaltyCard",
+ "description": "Root loyalty card model",
"fields": [
- {
- "name": "contentSpaces",
- "description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "ContentSpaceOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "ContentSpace",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "createdAt",
"description": "The time the document was created",
- "args": [
- {
- "name": "variation",
- "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "SystemDateTimeFieldVariation",
- "ofType": null
- }
- },
- "defaultValue": "COMBINED",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdBy",
+ "description": "User that created this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `createdBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages",
+ "description": "Get the document in other stages",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current stage should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "inheritLocale",
+ "description": "Decides if the documents should match the parent documents locale or should use the fallback order defined in the tree",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stages",
+ "description": "Potential stages that should be returned",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[DRAFT, PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "history",
+ "description": "List of LoyaltyCard versions",
+ "args": [
+ {
+ "name": "limit",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "10",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "0",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stageOverride",
+ "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Version",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "The unique identifier",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": "Image representing the NFT. Advised resolution is 800 x 800 pixels.",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `nftImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
+ "description": "Name associated with the NFT. Cannot be localized.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `organizer` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt",
+ "description": "The time the document was published. Null on documents in draft stage.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedBy",
+ "description": "User that last published this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `publishedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `scheduledIn` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "System stage field",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": "The time the document was updated",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": "User that last updated this document",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `updatedBy` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [
+ {
+ "kind": "INTERFACE",
+ "name": "Entity",
+ "ofType": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "ofType": null
+ }
+ ],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardConnectInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "position",
+ "description": "Allow to specify document position in list of connected documents, will default to appending at end of list",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ConnectPositionInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to connect",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "description": "A connection to a list of items.",
+ "fields": [
+ {
+ "name": "aggregate",
+ "description": null,
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Aggregate",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "edges",
+ "description": "A list of edges.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardEdge",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "pageInfo",
+ "description": "Information to aid in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "PageInfo",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "cltzsfm12094507ul1er1czw6",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetCreateOneInlineInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerCreateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect multiple existing LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "create",
+ "description": "Create and connect multiple existing LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect one existing LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "create",
+ "description": "Create and connect one LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardEdge",
+ "description": "An edge in a connection.",
+ "fields": [
+ {
+ "name": "cursor",
+ "description": "A cursor for use in pagination.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "node",
+ "description": "The item at the end of the edge.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_ends_with",
+ "description": "All values ending with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_contains",
+ "description": "All values not containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "ENUM",
+ "name": "LoyaltyCardOrderByInput",
+ "description": null,
+ "fields": null,
+ "inputFields": null,
+ "interfaces": null,
+ "enumValues": [
+ {
+ "name": "createdAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_ASC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_DESC",
+ "description": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "cltzsfm12094507ul1er1czw6",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect multiple existing LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardConnectInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "create",
+ "description": "Create and connect multiple LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete",
+ "description": "Delete multiple LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "disconnect",
+ "description": "Disconnect multiple LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "set",
+ "description": "Override currently-connected documents with multiple existing LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Update multiple LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsert",
+ "description": "Upsert multiple LoyaltyCard documents",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "nftName",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateOneInlineInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "connect",
+ "description": "Connect existing LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "create",
+ "description": "Create and connect one LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "delete",
+ "description": "Delete currently connected LoyaltyCard document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "disconnect",
+ "description": "Disconnect currently connected LoyaltyCard document",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Update single LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "upsert",
+ "description": "Upsert single LoyaltyCard document",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": "Document to update",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Unique document search",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "create",
+ "description": "Create document if it didn't exist",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "update",
+ "description": "Update document if it exists",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertWithNestedWhereUniqueInput",
+ "description": null,
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "data",
+ "description": "Upsert data",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Unique document search",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereComparatorInput",
+ "description": "This contains a set of filters that can be used to compare values internally",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "outdated_to",
+ "description": "This field can be used to request to check if the entry is outdated by internal comparison",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "description": "Identifies documents",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "_search",
+ "description": "Contains search across all appropriate fields.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "documentInStages_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_ends_with",
+ "description": "All values ending with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_contains",
+ "description": "All values not containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftImage",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "AssetWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_contains",
+ "description": "All values containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_ends_with",
+ "description": "All values ending with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_contains",
+ "description": "All values not containing the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_ends_with",
+ "description": "All values not ending with the given string",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_not_starts_with",
+ "description": "All values not starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "nftName_starts_with",
+ "description": "All values starting with the given string.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "organizer",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "OrganizerWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishedBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_every",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_none",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "scheduledIn_some",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ScheduledOperationWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_gt",
+ "description": "All values greater than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_gte",
+ "description": "All values greater than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_in",
+ "description": "All values that are contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_lt",
+ "description": "All values less than the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_lte",
+ "description": "All values less than or equal the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not",
+ "description": "Any other value that exists and is not equal to the given value.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedAt_not_in",
+ "description": "All values that are not contained in given list.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updatedBy",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "UserWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "description": "The document in stages filter allows specifying a stage entry to cross compare the same document between different stages",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "AND",
+ "description": "Logical AND on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "NOT",
+ "description": "Logical NOT on all given filters combined by AND.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "OR",
+ "description": "Logical OR on all given filters.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereStageInput",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "compareWithParent",
+ "description": "This field contains fields which can be set as true or false to specify an internal comparison",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereComparatorInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Specify the stage to compare with",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "description": "References LoyaltyCard record uniquely",
+ "fields": null,
+ "inputFields": [
+ {
+ "name": "id",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "interfaces": null,
+ "enumValues": null,
+ "possibleTypes": null
+ },
+ {
+ "kind": "INTERFACE",
+ "name": "Node",
+ "description": "An object with an ID",
+ "fields": [
+ {
+ "name": "id",
+ "description": "The id of the object.",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "The Stage of an object",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "inputFields": null,
+ "interfaces": [],
+ "enumValues": null,
+ "possibleTypes": [
+ {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "EventPass",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Pack",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ScheduledOperation",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "ScheduledRelease",
+ "ofType": null
+ },
+ {
+ "kind": "OBJECT",
+ "name": "User",
+ "ofType": null
+ }
+ ]
+ },
+ {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "description": "An organizer is an entity that launch events and handle the pass benefits.",
+ "fields": [
+ {
+ "name": "contentSpaces",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `contentSpaces` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "ContentSpaceOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "createdAt",
+ "description": "The time the document was created",
+ "args": [
+ {
+ "name": "variation",
+ "description": "Variation of DateTime field to return, allows value from base document, current localization, or combined by returning the newer value of both",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "SystemDateTimeFieldVariation",
+ "ofType": null
+ }
+ },
+ "defaultValue": "COMBINED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
"type": {
"kind": "NON_NULL",
"name": null,
@@ -30228,311 +33652,465 @@
"deprecationReason": null
},
{
- "name": "events",
+ "name": "events",
+ "description": null,
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Event",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "facebookHandle",
+ "description": "The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "heroImage",
+ "description": "An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "heroImageClasses",
+ "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "history",
+ "description": "List of Organizer versions",
+ "args": [
+ {
+ "name": "limit",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "10",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ }
+ },
+ "defaultValue": "0",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stageOverride",
+ "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Version",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "id",
+ "description": "The unique identifier",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "image",
+ "description": "Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.",
+ "args": [
+ {
+ "name": "forceParentLocale",
+ "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "imageClasses",
+ "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "instagramHandle",
+ "description": "The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.",
+ "args": [],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locale",
+ "description": "System Locale field",
+ "args": [],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "localizations",
+ "description": "Get the other localizations for this document",
+ "args": [
+ {
+ "name": "includeCurrent",
+ "description": "Decides if the current locale should be included or not",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ }
+ },
+ "defaultValue": "false",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en, fr]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Organizer",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCard",
"description": null,
- "args": [
- {
- "name": "after",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "before",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "first",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "last",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `events` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "orderBy",
- "description": null,
- "type": {
- "kind": "ENUM",
- "name": "EventOrderByInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "where",
- "description": null,
- "type": {
- "kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Event",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "facebookHandle",
- "description": "The facebook handle (username) of the organizer. You can just copy the text on your facebook landing page on the URL, like 'johndoe' for 'https://www.facebook.com/johndoe'.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImage",
- "description": "An hero image that will displayed on a rectangular format. The image need to be high quality in order to display well on every screen. Advised resolution is 1920 * 800 pixels",
- "args": [
- {
- "name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `heroImage` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "heroImageClasses",
- "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "history",
- "description": "List of Organizer versions",
- "args": [
- {
- "name": "limit",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "defaultValue": "10",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "skip",
- "description": null,
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Int",
- "ofType": null
- }
- },
- "defaultValue": "0",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "stageOverride",
- "description": "This is optional and can be used to fetch the document version history for a specific stage instead of the current one",
- "type": {
- "kind": "ENUM",
- "name": "Stage",
- "ofType": null
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Version",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "id",
- "description": "The unique identifier",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "ID",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "image",
- "description": "Image that represent the organizer, typically its logo. Advised resolution is 800 x 800 pixels, in square format with transparency (for ex: svg or png but not jpg) so that the image always look good either on light or dark mode.",
"args": [
{
"name": "forceParentLocale",
- "description": "Sets the locale of the parent document as the first locale in the fallback locales in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Sets the locale of the resolved parent document as the only locale in the query's subtree.\n\nNote that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locale will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will affect any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "SCALAR",
"name": "Boolean",
@@ -30544,7 +34122,7 @@
},
{
"name": "locales",
- "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `image` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
+ "description": "Allows to optionally override locale filtering behaviour in the query's subtree.\n\nNote that `loyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.",
"type": {
"kind": "LIST",
"name": null,
@@ -30564,122 +34142,13 @@
}
],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Asset",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "imageClasses",
- "description": "Optional field used to style your image with classes. Every classes from tailwind are supported. This is typically useful to adapt your image with light and dark mode (for instance using filter contrast or invert, https://tailwindcss.com/docs/contrast)",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
- "ofType": null
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "instagramHandle",
- "description": "The instagram handle (username) of the organizer. You can just copy the name on your instagram landing page next to the follow button.",
- "args": [],
- "type": {
- "kind": "SCALAR",
- "name": "String",
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "locale",
- "description": "System Locale field",
- "args": [],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "localizations",
- "description": "Get the other localizations for this document",
- "args": [
- {
- "name": "includeCurrent",
- "description": "Decides if the current locale should be included or not",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- }
- },
- "defaultValue": "false",
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "locales",
- "description": "Potential locales that should be returned. \n\nThe order of locales will also override locale fall-backing behaviour in the query's subtree.\n\nNote any related model with localized fields in the query's subtree will be affected.\nThe first locale matching the provided list will be returned, localized entries that do not have the provided locale defined will be filtered out.\nThis argument will overwrite any existing locale filtering defined in the query's tree for the subtree.\n\nConsider using this in conjunction with forceParentLocale on the children relation fields.",
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- }
- },
- "defaultValue": "[en, fr]",
- "isDeprecated": false,
- "deprecationReason": null
- }
- ],
- "type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "OBJECT",
- "name": "Organizer",
- "ofType": null
- }
- }
- }
- },
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "name",
"description": "Name of the organizer",
@@ -31198,6 +34667,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "cltzsen11092507ul9qlg4ywb",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "contentSpaces",
"description": null,
@@ -31350,6 +34831,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -32983,6 +36476,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -34233,6 +37738,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "cltzsen11092507ul9qlg4ywb",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateManyInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "contentSpaces",
"description": null,
@@ -34365,6 +37882,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateOneInlineInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -36378,6 +39907,18 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "loyaltyCard",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "name",
"description": null,
@@ -44826,6 +48367,11 @@
"name": "EventPassDelayedRevealed",
"ofType": null
},
+ {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
{
"kind": "OBJECT",
"name": "Organizer",
@@ -51665,13 +55211,9 @@
}
],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "jsonb",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "jsonb",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
@@ -51814,13 +55356,9 @@
"description": "The unique identifier of the event pass NFT within its specific collection or contract. This remains constant across various platforms.",
"args": [],
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "SCALAR",
- "name": "bigint",
- "ofType": null
- }
+ "kind": "SCALAR",
+ "name": "bigint",
+ "ofType": null
},
"isDeprecated": false,
"deprecationReason": null
@@ -53108,6 +56646,35 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "createLoyaltyCard",
+ "description": "Create one loyaltyCard",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardCreateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "createOrganizer",
"description": "Create one organizer",
@@ -53340,6 +56907,35 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "deleteLoyaltyCard",
+ "description": "Delete one loyaltyCard from _all_ existing stages. Returns deleted document.",
+ "args": [
+ {
+ "name": "where",
+ "description": "Document to delete",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "deleteManyAssets",
"description": "Delete many Asset documents",
@@ -53930,6 +57526,124 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "deleteManyLoyaltyCards",
+ "description": "Delete many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "deleteManyLoyaltyCardsConnection",
+ "description": "Delete many LoyaltyCard documents, return deleted documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to delete",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "deleteManyOrganizers",
"description": "Delete many Organizer documents",
@@ -54767,6 +58481,59 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "publishLoyaltyCard",
+ "description": "Publish one loyaltyCard",
+ "args": [
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "publishManyAssets",
"description": "Publish many Asset documents",
@@ -56097,6 +59864,184 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "publishManyLoyaltyCards",
+ "description": "Publish many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "publishManyLoyaltyCardsConnection",
+ "description": "Publish many LoyaltyCard documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "from",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Stages to publish documents to",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Identifies documents in each stage to be published",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCardConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "publishManyOrganizers",
"description": "Publish many Organizer documents",
@@ -57399,30 +61344,107 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "withDefaultLocale",
+ "description": "Whether to include the default locale when publishBase is set",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "schedulePublishLoyaltyCard",
+ "description": "Schedule to publish one loyaltyCard",
+ "args": [
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "to",
+ "description": "Publishing target stage",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to publish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
- },
- {
- "name": "withDefaultLocale",
- "description": "Whether to include the default locale when publishBase is set",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
}
],
"type": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "name": "LoyaltyCard",
"ofType": null
},
"isDeprecated": false,
@@ -58215,6 +62237,83 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "scheduleUnpublishLoyaltyCard",
+ "description": "Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseAt",
+ "description": "Release at point in time, will create new release containing this operation",
+ "type": {
+ "kind": "SCALAR",
+ "name": "DateTime",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "releaseId",
+ "description": "Optionally attach this scheduled operation to an existing release",
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "scheduleUnpublishOrganizer",
"description": "Unpublish one organizer from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
@@ -58501,7 +62600,177 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "AssetWhereUniqueInput",
+ "name": "AssetWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "Asset",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishContentSpace",
+ "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "ContentSpaceWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "ContentSpace",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishEvent",
+ "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish document from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishBase",
+ "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": "true",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereUniqueInput",
"ofType": null
}
},
@@ -58512,15 +62781,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "Asset",
+ "name": "Event",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishContentSpace",
- "description": "Unpublish one contentSpace from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "name": "unpublishEventPass",
+ "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
"args": [
{
"name": "from",
@@ -58586,7 +62855,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceWhereUniqueInput",
+ "name": "EventPassWhereUniqueInput",
"ofType": null
}
},
@@ -58597,15 +62866,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "ContentSpace",
+ "name": "EventPass",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishEvent",
- "description": "Unpublish one event from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "name": "unpublishEventPassDelayedRevealed",
+ "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
"args": [
{
"name": "from",
@@ -58671,7 +62940,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventWhereUniqueInput",
+ "name": "EventPassDelayedRevealedWhereUniqueInput",
"ofType": null
}
},
@@ -58682,15 +62951,15 @@
],
"type": {
"kind": "OBJECT",
- "name": "Event",
+ "name": "EventPassDelayedRevealed",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishEventPass",
- "description": "Unpublish one eventPass from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "name": "unpublishLoyaltyCard",
+ "description": "Unpublish one loyaltyCard from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
"args": [
{
"name": "from",
@@ -58716,9 +62985,62 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "where",
+ "description": "Document to unpublish",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "unpublishManyAssets",
+ "description": "Unpublish many Asset documents",
+ "args": [
+ {
+ "name": "from",
+ "description": "Stages to unpublish documents from",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[PUBLISHED]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "description": "Locales to unpublish",
"type": {
"kind": "LIST",
"name": null,
@@ -58738,7 +63060,7 @@
},
{
"name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "description": "Whether to unpublish the base document and default localization",
"type": {
"kind": "SCALAR",
"name": "Boolean",
@@ -58750,15 +63072,11 @@
},
{
"name": "where",
- "description": "Document to unpublish",
+ "description": "Identifies documents in each stage",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -58766,20 +63084,60 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "EventPass",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishEventPassDelayedRevealed",
- "description": "Unpublish one eventPassDelayedRevealed from selected stages. Unpublish either the complete document with its relations, localizations and base data or specific localizations only.",
+ "name": "unpublishManyAssetsConnection",
+ "description": "Find many Asset documents that match criteria in specified stage and unpublish from target stages",
"args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "from",
- "description": "Stages to unpublish document from",
+ "description": "Stages to unpublish documents from",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -58801,9 +63159,21 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "locales",
- "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages",
+ "description": "Locales to unpublish",
"type": {
"kind": "LIST",
"name": null,
@@ -58821,9 +63191,33 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": "Stage to find matching documents in",
+ "type": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ },
+ "defaultValue": "DRAFT",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "unpublishBase",
- "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.",
+ "description": "Whether to unpublish the base document and default localization",
"type": {
"kind": "SCALAR",
"name": "Boolean",
@@ -58835,15 +63229,11 @@
},
{
"name": "where",
- "description": "Document to unpublish",
+ "description": "Identifies documents in draft stage",
"type": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereUniqueInput",
- "ofType": null
- }
+ "kind": "INPUT_OBJECT",
+ "name": "AssetManyWhereInput",
+ "ofType": null
},
"defaultValue": null,
"isDeprecated": false,
@@ -58851,16 +63241,20 @@
}
],
"type": {
- "kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
- "ofType": null
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "AssetConnection",
+ "ofType": null
+ }
},
"isDeprecated": false,
"deprecationReason": null
},
{
- "name": "unpublishManyAssets",
- "description": "Unpublish many Asset documents",
+ "name": "unpublishManyContentSpaces",
+ "description": "Unpublish many ContentSpace documents",
"args": [
{
"name": "from",
@@ -58923,7 +63317,7 @@
"description": "Identifies documents in each stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
+ "name": "ContentSpaceManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -58944,8 +63338,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyAssetsConnection",
- "description": "Find many Asset documents that match criteria in specified stage and unpublish from target stages",
+ "name": "unpublishManyContentSpacesConnection",
+ "description": "Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages",
"args": [
{
"name": "after",
@@ -59080,7 +63474,7 @@
"description": "Identifies documents in draft stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "AssetManyWhereInput",
+ "name": "ContentSpaceManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59093,7 +63487,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "AssetConnection",
+ "name": "ContentSpaceConnection",
"ofType": null
}
},
@@ -59101,8 +63495,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyContentSpaces",
- "description": "Unpublish many ContentSpace documents",
+ "name": "unpublishManyEventPasses",
+ "description": "Unpublish many EventPass documents",
"args": [
{
"name": "from",
@@ -59165,7 +63559,7 @@
"description": "Identifies documents in each stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
+ "name": "EventPassManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59186,8 +63580,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyContentSpacesConnection",
- "description": "Find many ContentSpace documents that match criteria in specified stage and unpublish from target stages",
+ "name": "unpublishManyEventPassesConnection",
+ "description": "Find many EventPass documents that match criteria in specified stage and unpublish from target stages",
"args": [
{
"name": "after",
@@ -59322,7 +63716,7 @@
"description": "Identifies documents in draft stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
+ "name": "EventPassManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59335,7 +63729,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "name": "EventPassConnection",
"ofType": null
}
},
@@ -59343,8 +63737,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventPasses",
- "description": "Unpublish many EventPass documents",
+ "name": "unpublishManyEventPassesDelayedRevealed",
+ "description": "Unpublish many EventPassDelayedRevealed documents",
"args": [
{
"name": "from",
@@ -59407,7 +63801,7 @@
"description": "Identifies documents in each stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
+ "name": "EventPassDelayedRevealedManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59428,8 +63822,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventPassesConnection",
- "description": "Find many EventPass documents that match criteria in specified stage and unpublish from target stages",
+ "name": "unpublishManyEventPassesDelayedRevealedConnection",
+ "description": "Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages",
"args": [
{
"name": "after",
@@ -59564,7 +63958,7 @@
"description": "Identifies documents in draft stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
+ "name": "EventPassDelayedRevealedManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59577,7 +63971,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassConnection",
+ "name": "EventPassDelayedRevealedConnection",
"ofType": null
}
},
@@ -59585,8 +63979,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventPassesDelayedRevealed",
- "description": "Unpublish many EventPassDelayedRevealed documents",
+ "name": "unpublishManyEvents",
+ "description": "Unpublish many Event documents",
"args": [
{
"name": "from",
@@ -59649,7 +64043,7 @@
"description": "Identifies documents in each stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
+ "name": "EventManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59670,8 +64064,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventPassesDelayedRevealedConnection",
- "description": "Find many EventPassDelayedRevealed documents that match criteria in specified stage and unpublish from target stages",
+ "name": "unpublishManyEventsConnection",
+ "description": "Find many Event documents that match criteria in specified stage and unpublish from target stages",
"args": [
{
"name": "after",
@@ -59806,7 +64200,7 @@
"description": "Identifies documents in draft stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
+ "name": "EventManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59819,7 +64213,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
+ "name": "EventConnection",
"ofType": null
}
},
@@ -59827,8 +64221,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEvents",
- "description": "Unpublish many Event documents",
+ "name": "unpublishManyLoyaltyCards",
+ "description": "Unpublish many LoyaltyCard documents",
"args": [
{
"name": "from",
@@ -59854,44 +64248,12 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "where",
"description": "Identifies documents in each stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
+ "name": "LoyaltyCardManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -59912,8 +64274,8 @@
"deprecationReason": null
},
{
- "name": "unpublishManyEventsConnection",
- "description": "Find many Event documents that match criteria in specified stage and unpublish from target stages",
+ "name": "unpublishManyLoyaltyCardsConnection",
+ "description": "Find many LoyaltyCard documents that match criteria in specified stage and unpublish from target stages",
"args": [
{
"name": "after",
@@ -59987,26 +64349,6 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "locales",
- "description": "Locales to unpublish",
- "type": {
- "kind": "LIST",
- "name": null,
- "ofType": {
- "kind": "NON_NULL",
- "name": null,
- "ofType": {
- "kind": "ENUM",
- "name": "Locale",
- "ofType": null
- }
- }
- },
- "defaultValue": null,
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "skip",
"description": null,
@@ -60031,24 +64373,12 @@
"isDeprecated": false,
"deprecationReason": null
},
- {
- "name": "unpublishBase",
- "description": "Whether to unpublish the base document and default localization",
- "type": {
- "kind": "SCALAR",
- "name": "Boolean",
- "ofType": null
- },
- "defaultValue": "true",
- "isDeprecated": false,
- "deprecationReason": null
- },
{
"name": "where",
"description": "Identifies documents in draft stage",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
+ "name": "LoyaltyCardManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -60061,7 +64391,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventConnection",
+ "name": "LoyaltyCardConnection",
"ofType": null
}
},
@@ -60947,6 +65277,51 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "updateLoyaltyCard",
+ "description": "Update one loyaltyCard",
+ "args": [
+ {
+ "name": "data",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpdateInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "updateManyAssets",
"description": "Update many assets",
@@ -61227,7 +65602,157 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "ContentSpaceManyWhereInput",
+ "name": "ContentSpaceManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "ContentSpaceConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPasses",
+ "description": "Update many eventPasses",
+ "args": [
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "BatchPayload",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "updateManyEventPassesConnection",
+ "description": "Update many EventPass documents",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "ID",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "data",
+ "description": "Updates to document content",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassUpdateManyInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": "Documents to apply update on",
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61240,7 +65765,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "ContentSpaceConnection",
+ "name": "EventPassConnection",
"ofType": null
}
},
@@ -61248,8 +65773,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEventPasses",
- "description": "Update many eventPasses",
+ "name": "updateManyEventPassesDelayedRevealed",
+ "description": "Update many eventPassesDelayedRevealed",
"args": [
{
"name": "data",
@@ -61259,7 +65784,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassUpdateManyInput",
+ "name": "EventPassDelayedRevealedUpdateManyInput",
"ofType": null
}
},
@@ -61272,7 +65797,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
+ "name": "EventPassDelayedRevealedManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61293,8 +65818,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEventPassesConnection",
- "description": "Update many EventPass documents",
+ "name": "updateManyEventPassesDelayedRevealedConnection",
+ "description": "Update many EventPassDelayedRevealed documents",
"args": [
{
"name": "after",
@@ -61328,7 +65853,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassUpdateManyInput",
+ "name": "EventPassDelayedRevealedUpdateManyInput",
"ofType": null
}
},
@@ -61377,7 +65902,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassManyWhereInput",
+ "name": "EventPassDelayedRevealedManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61390,7 +65915,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassConnection",
+ "name": "EventPassDelayedRevealedConnection",
"ofType": null
}
},
@@ -61398,8 +65923,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEventPassesDelayedRevealed",
- "description": "Update many eventPassesDelayedRevealed",
+ "name": "updateManyEvents",
+ "description": "Update many events",
"args": [
{
"name": "data",
@@ -61409,7 +65934,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpdateManyInput",
+ "name": "EventUpdateManyInput",
"ofType": null
}
},
@@ -61422,7 +65947,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
+ "name": "EventManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61443,8 +65968,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEventPassesDelayedRevealedConnection",
- "description": "Update many EventPassDelayedRevealed documents",
+ "name": "updateManyEventsConnection",
+ "description": "Update many Event documents",
"args": [
{
"name": "after",
@@ -61478,7 +66003,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedUpdateManyInput",
+ "name": "EventUpdateManyInput",
"ofType": null
}
},
@@ -61527,7 +66052,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedManyWhereInput",
+ "name": "EventManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61540,7 +66065,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
+ "name": "EventConnection",
"ofType": null
}
},
@@ -61548,8 +66073,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEvents",
- "description": "Update many events",
+ "name": "updateManyLoyaltyCards",
+ "description": "Update many loyaltyCards",
"args": [
{
"name": "data",
@@ -61559,7 +66084,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventUpdateManyInput",
+ "name": "LoyaltyCardUpdateManyInput",
"ofType": null
}
},
@@ -61572,7 +66097,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
+ "name": "LoyaltyCardManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61593,8 +66118,8 @@
"deprecationReason": null
},
{
- "name": "updateManyEventsConnection",
- "description": "Update many Event documents",
+ "name": "updateManyLoyaltyCardsConnection",
+ "description": "Update many LoyaltyCard documents",
"args": [
{
"name": "after",
@@ -61628,7 +66153,7 @@
"name": null,
"ofType": {
"kind": "INPUT_OBJECT",
- "name": "EventUpdateManyInput",
+ "name": "LoyaltyCardUpdateManyInput",
"ofType": null
}
},
@@ -61677,7 +66202,7 @@
"description": "Documents to apply update on",
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventManyWhereInput",
+ "name": "LoyaltyCardManyWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -61690,7 +66215,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventConnection",
+ "name": "LoyaltyCardConnection",
"ofType": null
}
},
@@ -62357,6 +66882,51 @@
"isDeprecated": false,
"deprecationReason": null
},
+ {
+ "name": "upsertLoyaltyCard",
+ "description": "Upsert one loyaltyCard",
+ "args": [
+ {
+ "name": "upsert",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardUpsertInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "upsertOrganizer",
"description": "Upsert one organizer",
@@ -64283,6 +68853,26 @@
"name": "entities",
"description": "Fetches an object given its ID",
"args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales to query for",
+ "type": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
{
"name": "where",
"description": "The where parameters to query components",
@@ -65250,7 +69840,326 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealed",
+ "name": "EventPassDelayedRevealed",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventPassesDelayedRevealedConnection",
+ "description": "Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventPassDelayedRevealedOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventPassDelayedRevealedWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "EventPassDelayedRevealedConnection",
+ "ofType": null
+ }
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "eventVersion",
+ "description": "Retrieve document version",
+ "args": [
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "VersionWhereInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "DocumentVersion",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "events",
+ "description": "Retrieve multiple events",
+ "args": [
+ {
+ "name": "after",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "before",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "first",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "last",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "orderBy",
+ "description": null,
+ "type": {
+ "kind": "ENUM",
+ "name": "EventOrderByInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "skip",
+ "description": null,
+ "type": {
+ "kind": "SCALAR",
+ "name": "Int",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "INPUT_OBJECT",
+ "name": "EventWhereInput",
+ "ofType": null
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "OBJECT",
+ "name": "Event",
"ofType": null
}
}
@@ -65260,8 +70169,8 @@
"deprecationReason": null
},
{
- "name": "eventPassesDelayedRevealedConnection",
- "description": "Retrieve multiple eventPassesDelayedRevealed using the Relay connection interface",
+ "name": "eventsConnection",
+ "description": "Retrieve multiple events using the Relay connection interface",
"args": [
{
"name": "after",
@@ -65313,7 +70222,7 @@
},
{
"name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `EventPassDelayedRevealed` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -65340,7 +70249,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "EventPassDelayedRevealedOrderByInput",
+ "name": "EventOrderByInput",
"ofType": null
},
"defaultValue": null,
@@ -65380,7 +70289,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventPassDelayedRevealedWhereInput",
+ "name": "EventWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -65393,7 +70302,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventPassDelayedRevealedConnection",
+ "name": "EventConnection",
"ofType": null
}
},
@@ -65401,7 +70310,76 @@
"deprecationReason": null
},
{
- "name": "eventVersion",
+ "name": "loyaltyCard",
+ "description": "Retrieve a single loyaltyCard",
+ "args": [
+ {
+ "name": "locales",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "LIST",
+ "name": null,
+ "ofType": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Locale",
+ "ofType": null
+ }
+ }
+ }
+ },
+ "defaultValue": "[en]",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "stage",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "ENUM",
+ "name": "Stage",
+ "ofType": null
+ }
+ },
+ "defaultValue": "PUBLISHED",
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "where",
+ "description": null,
+ "type": {
+ "kind": "NON_NULL",
+ "name": null,
+ "ofType": {
+ "kind": "INPUT_OBJECT",
+ "name": "LoyaltyCardWhereUniqueInput",
+ "ofType": null
+ }
+ },
+ "defaultValue": null,
+ "isDeprecated": false,
+ "deprecationReason": null
+ }
+ ],
+ "type": {
+ "kind": "OBJECT",
+ "name": "LoyaltyCard",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
+ "name": "loyaltyCardVersion",
"description": "Retrieve document version",
"args": [
{
@@ -65430,8 +70408,8 @@
"deprecationReason": null
},
{
- "name": "events",
- "description": "Retrieve multiple events",
+ "name": "loyaltyCards",
+ "description": "Retrieve multiple loyaltyCards",
"args": [
{
"name": "after",
@@ -65483,7 +70461,7 @@
},
{
"name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -65510,7 +70488,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "EventOrderByInput",
+ "name": "LoyaltyCardOrderByInput",
"ofType": null
},
"defaultValue": null,
@@ -65550,7 +70528,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -65569,7 +70547,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "Event",
+ "name": "LoyaltyCard",
"ofType": null
}
}
@@ -65579,8 +70557,8 @@
"deprecationReason": null
},
{
- "name": "eventsConnection",
- "description": "Retrieve multiple events using the Relay connection interface",
+ "name": "loyaltyCardsConnection",
+ "description": "Retrieve multiple loyaltyCards using the Relay connection interface",
"args": [
{
"name": "after",
@@ -65632,7 +70610,7 @@
},
{
"name": "locales",
- "description": "Defines which locales should be returned.\n\nNote that `Event` will be affected directly by this argument, as well as any other related models with localized fields in the query's subtree.\nThe first locale matching the provided list will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
+ "description": "Defines which locales should be returned.\n\nNote that `LoyaltyCard` is a model without localized fields and will not be affected directly by this argument, however the locales will be passed on to any relational fields in the query's subtree for filtering.\nFor related models with localized fields in the query's subtree, the first locale matching the provided list of locales will be returned, entries with non matching locales will be filtered out.\n\nThis argument may be overwritten by another locales definition in a relational child field, this will effectively use the overwritten argument for the affected query's subtree.",
"type": {
"kind": "NON_NULL",
"name": null,
@@ -65659,7 +70637,7 @@
"description": null,
"type": {
"kind": "ENUM",
- "name": "EventOrderByInput",
+ "name": "LoyaltyCardOrderByInput",
"ofType": null
},
"defaultValue": null,
@@ -65699,7 +70677,7 @@
"description": null,
"type": {
"kind": "INPUT_OBJECT",
- "name": "EventWhereInput",
+ "name": "LoyaltyCardWhereInput",
"ofType": null
},
"defaultValue": null,
@@ -65712,7 +70690,7 @@
"name": null,
"ofType": {
"kind": "OBJECT",
- "name": "EventConnection",
+ "name": "LoyaltyCardConnection",
"ofType": null
}
},
diff --git a/libs/gql/anonymous/api/tsconfig.json b/libs/gql/anonymous/api/tsconfig.json
index 2c9d3a5ec..0bd22c66e 100644
--- a/libs/gql/anonymous/api/tsconfig.json
+++ b/libs/gql/anonymous/api/tsconfig.json
@@ -1,7 +1,15 @@
{
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs"
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": false,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
diff --git a/libs/gql/anonymous/api/tsconfig.lib.json b/libs/gql/anonymous/api/tsconfig.lib.json
index 28369ef76..949717775 100644
--- a/libs/gql/anonymous/api/tsconfig.lib.json
+++ b/libs/gql/anonymous/api/tsconfig.lib.json
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "nodenext",
"outDir": "../../../../dist/out-tsc",
"declaration": true,
"types": ["node"]
diff --git a/libs/gql/anonymous/api/tsconfig.spec.json b/libs/gql/anonymous/api/tsconfig.spec.json
index 6668655fc..af8921f2e 100644
--- a/libs/gql/anonymous/api/tsconfig.spec.json
+++ b/libs/gql/anonymous/api/tsconfig.spec.json
@@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../../../dist/out-tsc",
- "module": "commonjs",
+ "module": "nodenext",
"types": ["jest", "node"]
},
"include": [
diff --git a/libs/gql/anonymous/react-query/.swcrc b/libs/gql/anonymous/react-query/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/gql/anonymous/react-query/.swcrc
+++ b/libs/gql/anonymous/react-query/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/anonymous/types/.swcrc b/libs/gql/anonymous/types/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/gql/anonymous/types/.swcrc
+++ b/libs/gql/anonymous/types/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/anonymous/types/src/generated/index.ts b/libs/gql/anonymous/types/src/generated/index.ts
index 69dabcda5..0f501dc5f 100644
--- a/libs/gql/anonymous/types/src/generated/index.ts
+++ b/libs/gql/anonymous/types/src/generated/index.ts
@@ -8,7 +8,7 @@ export type PassPricingFieldsFragment = { __typename?: 'passPricing', amount: nu
export type EventPassFieldsFragment = { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null };
-export type EventPassNftFieldsFragment = { __typename?: 'eventPassNft', tokenId: any, eventId: string, eventPassId: string, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null };
+export type EventPassNftFieldsFragment = { __typename?: 'eventPassNft', tokenId?: any | null, eventId: string, eventPassId: string, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null };
export type GetEventPassNftByTokenReferenceQueryVariables = Types.Exact<{
organizerId: Types.Scalars['String']['input'];
@@ -21,4 +21,4 @@ export type GetEventPassNftByTokenReferenceQueryVariables = Types.Exact<{
}>;
-export type GetEventPassNftByTokenReferenceQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', tokenId: any, eventId: string, eventPassId: string, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPass?: { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null } | null }> };
+export type GetEventPassNftByTokenReferenceQuery = { __typename?: 'query_root', eventPassNft: Array<{ __typename?: 'eventPassNft', tokenId?: any | null, eventId: string, eventPassId: string, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null, eventPass?: { __typename?: 'EventPass', name: string, description: string, nftImage: { __typename?: 'Asset', url: string }, passOptions: Array<{ __typename?: 'PassOption', name: string, description?: string | null, eventDateLocation?: { __typename?: 'EventDateLocation', dateStart: any, dateEnd: any, locationAddress: { __typename?: 'LocationAddress', city: string, country: string, placeId?: string | null, postalCode: string, state?: string | null, street?: string | null, venue?: string | null, coordinates: { __typename?: 'Location', latitude: number, longitude: number } } } | null }>, passPricing?: { __typename?: 'passPricing', amount: number, currency: Types.Currency_Enum } | null, event?: { __typename?: 'Event', slug: string, title: string, heroImageClasses?: string | null, heroImage: { __typename?: 'Asset', url: string }, organizer?: { __typename?: 'Organizer', id: string, slug: string, name: string, imageClasses?: string | null, image: { __typename?: 'Asset', url: string } } | null } | null } | null }> };
diff --git a/libs/gql/anonymous/types/tsconfig.json b/libs/gql/anonymous/types/tsconfig.json
index 47cfabecf..7abc8796f 100644
--- a/libs/gql/anonymous/types/tsconfig.json
+++ b/libs/gql/anonymous/types/tsconfig.json
@@ -1,7 +1,15 @@
{
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
- "module": "commonjs"
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "allowJs": true,
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": false,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
diff --git a/libs/gql/anonymous/types/tsconfig.lib.json b/libs/gql/anonymous/types/tsconfig.lib.json
index 28369ef76..949717775 100644
--- a/libs/gql/anonymous/types/tsconfig.lib.json
+++ b/libs/gql/anonymous/types/tsconfig.lib.json
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
- "module": "commonjs",
+ "module": "nodenext",
"outDir": "../../../../dist/out-tsc",
"declaration": true,
"types": ["node"]
diff --git a/libs/gql/shared/types/.swcrc b/libs/gql/shared/types/.swcrc
index 7e3e834aa..a1276087c 100644
--- a/libs/gql/shared/types/.swcrc
+++ b/libs/gql/shared/types/.swcrc
@@ -15,9 +15,7 @@
"loose": true
},
"module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
+ "type": "nodenext"
},
"sourceMaps": true,
"exclude": [
@@ -28,4 +26,4 @@
"./**/jest-setup.ts$",
".*.js$"
]
-}
+}
\ No newline at end of file
diff --git a/libs/gql/shared/types/package.json b/libs/gql/shared/types/package.json
index 2700a0113..4d14c3837 100644
--- a/libs/gql/shared/types/package.json
+++ b/libs/gql/shared/types/package.json
@@ -1,5 +1,5 @@
{
"name": "@gql/shared/types",
"version": "0.0.1",
- "type": "commonjs"
+ "type": "nodenext"
}
diff --git a/libs/gql/shared/types/src/generated/index.ts b/libs/gql/shared/types/src/generated/index.ts
index e634befc8..96f026718 100644
--- a/libs/gql/shared/types/src/generated/index.ts
+++ b/libs/gql/shared/types/src/generated/index.ts
@@ -59,6 +59,7 @@ export type Asset = Entity & Node & {
mimeType?: Maybe;
nftImageEventPass: Array;
nftImageEventPassDelayedRevealed: Array;
+ nftImageLoyaltyCard: Array;
nftImagePack: Array;
/** The time the document was published. Null on documents in draft stage. */
publishedAt?: Maybe;
@@ -200,6 +201,20 @@ export type AssetNftImageEventPassDelayedRevealedArgs = {
};
+/** Asset system model */
+export type AssetNftImageLoyaltyCardArgs = {
+ after?: InputMaybe;
+ before?: InputMaybe;
+ first?: InputMaybe;
+ forceParentLocale?: InputMaybe;
+ last?: InputMaybe;
+ locales?: InputMaybe>;
+ orderBy?: InputMaybe;
+ skip?: InputMaybe;
+ where?: InputMaybe;
+};
+
+
/** Asset system model */
export type AssetNftImagePackArgs = {
after?: InputMaybe;
@@ -282,6 +297,7 @@ export type AssetCreateInput = {
mimeType?: InputMaybe;
nftImageEventPass?: InputMaybe;
nftImageEventPassDelayedRevealed?: InputMaybe;
+ nftImageLoyaltyCard?: InputMaybe;
nftImagePack?: InputMaybe;
size?: InputMaybe;
updatedAt?: InputMaybe;
@@ -392,6 +408,9 @@ export type AssetManyWhereInput = {
nftImageEventPass_every?: InputMaybe;
nftImageEventPass_none?: InputMaybe;
nftImageEventPass_some?: InputMaybe;
+ nftImageLoyaltyCard_every?: InputMaybe;
+ nftImageLoyaltyCard_none?: InputMaybe;
+ nftImageLoyaltyCard_some?: InputMaybe;
nftImagePack_every?: InputMaybe;
nftImagePack_none?: InputMaybe;
nftImagePack_some?: InputMaybe;
@@ -476,6 +495,7 @@ export type AssetUpdateInput = {
mimeType?: InputMaybe;
nftImageEventPass?: InputMaybe;
nftImageEventPassDelayedRevealed?: InputMaybe;
+ nftImageLoyaltyCard?: InputMaybe;
nftImagePack?: InputMaybe;
size?: InputMaybe;
width?: InputMaybe;
@@ -719,6 +739,9 @@ export type AssetWhereInput = {
nftImageEventPass_every?: InputMaybe;
nftImageEventPass_none?: InputMaybe;
nftImageEventPass_some?: InputMaybe