From c35638d111e35e56383ab4c88d82ea5f555620c4 Mon Sep 17 00:00:00 2001 From: sebpalluel Date: Fri, 19 Apr 2024 10:38:13 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(migrations):=20Simplify=20shopifyD?= =?UTF-8?q?omain=20table=20structure,=20use=20domain=20as=20PK=20?= =?UTF-8?q?=F0=9F=93=9D=20(migrations):=20Update=20comments=20to=20reflect?= =?UTF-8?q?=20changes=20in=20shopifyDomain=20table=20=E2=9C=A8=20(GraphQL)?= =?UTF-8?q?:=20Add=20query=20for=20fetching=20Shopify=20domain=20by=20PK?= =?UTF-8?q?=20=E2=9C=85=20(tests):=20Add=20tests=20for=20new=20Shopify=20d?= =?UTF-8?q?omain=20query=20and=20error=20handling=20=E2=99=BB=EF=B8=8F=20(?= =?UTF-8?q?Shopify=20handler):=20Refactor=20to=20include=20organizerId=20i?= =?UTF-8?q?n=20request=20validation=20response?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../1713432670329_shopifyDomain/down.sql | 24 +- .../1713432670329_shopifyDomain/up.sql | 23 +- libs/gql/admin/api/src/generated/index.ts | 10 + .../admin/api/src/generated/schema.graphql | 1078 +- libs/gql/admin/api/src/generated/schema.json | 16625 ++++++++++------ .../organizer/shopify/shopifyDomain.gql | 5 + libs/gql/admin/types/src/generated/index.ts | 7 + libs/gql/shared/types/src/generated/index.ts | 606 +- .../src/lib/shopify/index.spec.ts | 20 + .../src/lib/shopify/index.ts | 38 +- 10 files changed, 11693 insertions(+), 6743 deletions(-) create mode 100644 libs/gql/admin/api/src/queries/organizer/shopify/shopifyDomain.gql diff --git a/hasura/app/migrations/default/1713432670329_shopifyDomain/down.sql b/hasura/app/migrations/default/1713432670329_shopifyDomain/down.sql index acf3abdfb..c6d29e0fe 100644 --- a/hasura/app/migrations/default/1713432670329_shopifyDomain/down.sql +++ b/hasura/app/migrations/default/1713432670329_shopifyDomain/down.sql @@ -1,33 +1,17 @@ -- Could not auto-generate a down migration. -- Please write an appropriate down migration for the SQL below: -- -- Create the shopifyDomain table --- CREATE TABLE "public"."shopifyDomain" ( --- id uuid DEFAULT gen_random_uuid() NOT NULL, --- domain text NOT NULL, +-- CREATE TABLE "public"."shopifyDomain"( +-- domain text PRIMARY KEY, -- "organizerId" text NOT NULL, --- created_at timestamp with time zone DEFAULT now(), --- updated_at timestamp with time zone DEFAULT now(), --- PRIMARY KEY (id) +-- created_at timestamp with time zone DEFAULT now() -- ); -- --- -- Create a unique index on the domain column for optimized querying --- CREATE UNIQUE INDEX idx_shopify_domain_unique_domain ON "public"."shopifyDomain" (domain); --- -- -- Comments on the purpose of the shopifyDomain table and its fields -- COMMENT ON TABLE "public"."shopifyDomain" IS E'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.'; -- --- COMMENT ON COLUMN "public"."shopifyDomain"."id" IS E'Unique identifier for each Shopify domain entry, generated automatically as a UUID.'; --- --- COMMENT ON COLUMN "public"."shopifyDomain"."domain" IS E'The Shopify domain value, which must be unique across the entire table to ensure accurate mapping between Shopify and our system.'; +-- COMMENT ON COLUMN "public"."shopifyDomain"."domain" IS E'The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.'; -- -- COMMENT ON COLUMN "public"."shopifyDomain"."organizerId" IS E'The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.'; -- -- COMMENT ON COLUMN "public"."shopifyDomain"."created_at" IS E'Timestamp indicating when the record was initially created, set automatically by the system.'; --- --- COMMENT ON COLUMN "public"."shopifyDomain"."updated_at" IS E'Timestamp indicating the last time the record was updated, automatically managed by a database trigger to ensure accuracy.'; --- --- -- Create trigger for updating the updated_at field in the shopifyDomain table --- CREATE TRIGGER set_public_shopify_domain_updated_at --- BEFORE UPDATE ON "public"."shopifyDomain" --- FOR EACH ROW --- EXECUTE FUNCTION public.set_current_timestamp_updated_at(); diff --git a/hasura/app/migrations/default/1713432670329_shopifyDomain/up.sql b/hasura/app/migrations/default/1713432670329_shopifyDomain/up.sql index 3fb286619..be69ad11f 100644 --- a/hasura/app/migrations/default/1713432670329_shopifyDomain/up.sql +++ b/hasura/app/migrations/default/1713432670329_shopifyDomain/up.sql @@ -1,31 +1,16 @@ -- Create the shopifyDomain table -CREATE TABLE "public"."shopifyDomain" ( - id uuid DEFAULT gen_random_uuid() NOT NULL, - domain text NOT NULL, +CREATE TABLE "public"."shopifyDomain"( + domain text PRIMARY KEY, "organizerId" text NOT NULL, - created_at timestamp with time zone DEFAULT now(), - updated_at timestamp with time zone DEFAULT now(), - PRIMARY KEY (id) + created_at timestamp with time zone DEFAULT now() ); --- Create a unique index on the domain column for optimized querying -CREATE UNIQUE INDEX idx_shopify_domain_unique_domain ON "public"."shopifyDomain" (domain); - -- Comments on the purpose of the shopifyDomain table and its fields COMMENT ON TABLE "public"."shopifyDomain" IS E'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.'; -COMMENT ON COLUMN "public"."shopifyDomain"."id" IS E'Unique identifier for each Shopify domain entry, generated automatically as a UUID.'; - -COMMENT ON COLUMN "public"."shopifyDomain"."domain" IS E'The Shopify domain value, which must be unique across the entire table to ensure accurate mapping between Shopify and our system.'; +COMMENT ON COLUMN "public"."shopifyDomain"."domain" IS E'The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records.'; COMMENT ON COLUMN "public"."shopifyDomain"."organizerId" IS E'The unique identifier of the associated organizer in our external CRM system. This field is used to link Shopify domains to the corresponding organizers.'; COMMENT ON COLUMN "public"."shopifyDomain"."created_at" IS E'Timestamp indicating when the record was initially created, set automatically by the system.'; -COMMENT ON COLUMN "public"."shopifyDomain"."updated_at" IS E'Timestamp indicating the last time the record was updated, automatically managed by a database trigger to ensure accuracy.'; - --- Create trigger for updating the updated_at field in the shopifyDomain table -CREATE TRIGGER set_public_shopify_domain_updated_at - BEFORE UPDATE ON "public"."shopifyDomain" - FOR EACH ROW - EXECUTE FUNCTION public.set_current_timestamp_updated_at(); diff --git a/libs/gql/admin/api/src/generated/index.ts b/libs/gql/admin/api/src/generated/index.ts index fabacd905..dcdd7c879 100644 --- a/libs/gql/admin/api/src/generated/index.ts +++ b/libs/gql/admin/api/src/generated/index.ts @@ -1356,6 +1356,13 @@ ${EventParametersFieldsFragmentDoc}`; heroImageClasses } } +} + `; + const GetShopifyDomainDocument = ` + query GetShopifyDomain($domain: String!) @cached { + shopifyDomain_by_pk(domain: $domain) { + organizerId + } } `; const GetEventPassNftByIdDocument = ` @@ -1785,6 +1792,9 @@ export function getSdk(requester: Requester) { GetOrganizerLatestEvents(variables: Types.GetOrganizerLatestEventsQueryVariables, options?: C): Promise { return requester(GetOrganizerLatestEventsDocument, 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; }, diff --git a/libs/gql/admin/api/src/generated/schema.graphql b/libs/gql/admin/api/src/generated/schema.graphql index b303aa431..934ca2e7f 100644 --- a/libs/gql/admin/api/src/generated/schema.graphql +++ b/libs/gql/admin/api/src/generated/schema.graphql @@ -11381,7 +11381,6 @@ enum apiKeyType_constraint { enum apiKeyType_enum { EXTERNAL - SHOPIFY } """ @@ -19763,6 +19762,32 @@ type mutation_root { """ delete_shopifyCampaignStatus_by_pk(value: String!): shopifyCampaignStatus + """ + delete data from the table: "shopifyCustomer" + """ + delete_shopifyCustomer( + """filter the rows which have to be deleted""" + where: shopifyCustomer_bool_exp! + ): shopifyCustomer_mutation_response + + """ + delete data from the table: "shopifyDomain" + """ + delete_shopifyDomain( + """filter the rows which have to be deleted""" + where: shopifyDomain_bool_exp! + ): shopifyDomain_mutation_response + + """ + 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 + """ delete data from the table: "stampNft" """ @@ -20857,6 +20882,50 @@ type mutation_root { on_conflict: shopifyCampaignStatus_on_conflict ): shopifyCampaignStatus + """ + insert data into the table: "shopifyCustomer" + """ + insert_shopifyCustomer( + """the rows to be inserted""" + objects: [shopifyCustomer_insert_input!]! + + """upsert condition""" + on_conflict: shopifyCustomer_on_conflict + ): shopifyCustomer_mutation_response + + """ + insert a single row into the table: "shopifyCustomer" + """ + insert_shopifyCustomer_one( + """the row to be inserted""" + object: shopifyCustomer_insert_input! + + """upsert condition""" + on_conflict: shopifyCustomer_on_conflict + ): shopifyCustomer + + """ + insert data into the table: "shopifyDomain" + """ + insert_shopifyDomain( + """the rows to be inserted""" + objects: [shopifyDomain_insert_input!]! + + """upsert condition""" + on_conflict: shopifyDomain_on_conflict + ): shopifyDomain_mutation_response + + """ + insert a single row into the table: "shopifyDomain" + """ + insert_shopifyDomain_one( + """the row to be inserted""" + object: shopifyDomain_insert_input! + + """upsert condition""" + on_conflict: shopifyDomain_on_conflict + ): shopifyDomain + """ insert data into the table: "stampNft" """ @@ -24003,6 +24072,53 @@ type mutation_root { updates: [shopifyCampaignStatus_updates!]! ): [shopifyCampaignStatus_mutation_response] + """ + update data of the table: "shopifyCustomer" + """ + 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 + + """ + update multiples rows of table: "shopifyCustomer" + """ + update_shopifyCustomer_many( + """updates to execute, in order""" + updates: [shopifyCustomer_updates!]! + ): [shopifyCustomer_mutation_response] + + """ + update data of the table: "shopifyDomain" + """ + 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 + + """ + update single row of the table: "shopifyDomain" + """ + 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 + + """ + update multiples rows of table: "shopifyDomain" + """ + update_shopifyDomain_many( + """updates to execute, in order""" + updates: [shopifyDomain_updates!]! + ): [shopifyDomain_mutation_response] + """ update data of the table: "stampNft" """ @@ -32776,6 +32892,94 @@ type query_root { """ shopifyCampaignStatus_by_pk(value: String!): 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: "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: "stampNft" """ @@ -33718,7 +33922,7 @@ type secretApiKey { status: apiKeyStatus_enum """ - 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. It can be "SHOPIFY" or "EXTERNAL". + 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! @@ -33830,7 +34034,7 @@ input secretApiKey_insert_input { status: apiKeyStatus_enum """ - 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. It can be "SHOPIFY" or "EXTERNAL". + 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 @@ -34066,7 +34270,7 @@ input secretApiKey_set_input { status: apiKeyStatus_enum """ - 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. It can be "SHOPIFY" or "EXTERNAL". + 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 @@ -34133,7 +34337,7 @@ input secretApiKey_stream_cursor_value_input { status: apiKeyStatus_enum """ - 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. It can be "SHOPIFY" or "EXTERNAL". + 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 @@ -34684,162 +34888,702 @@ input shopifyCampaignStatus_updates { } """ -Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata. +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 stampNft { - chainId: String! - contractAddress: String! - created_at: timestamptz! - id: uuid! - - """ - Structured metadata associated with the token, stored in a JSONB format for flexibility. - """ - metadata( - """JSON select path""" - path: String - ): jsonb! - - """The unique identifier of the token within its contract.""" - tokenId: bigint! - +type shopifyCustomer { """ - URI pointing to the token metadata, which may include details such as the item associated with the token. + Reference to the account table, ensuring that customer data is associated with a unique account address. """ - tokenUri: String - updated_at: timestamptz! -} + address: String! -""" -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 { """ - A unique identifier for the marketing campaign associated with this contract. + Timestamp indicating when the record was initially created, set automatically by the system. """ - campaignId: String! + created_at: timestamptz """ - The identifier of the blockchain network where the contract is deployed. + 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. """ - chainId: String! + customerId: String! - """The blockchain address of the stamp NFT contract.""" - contractAddress: String! - created_at: timestamptz! - id: uuid - organizerId: String! + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid! """ - The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED. + Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. """ - type: stampNftContractType_enum! - updated_at: timestamptz! + organizerId: String! + updated_at: timestamptz } """ -Defines contract types for the stampNftContract, representing various marketing campaigns or actions. +aggregated selection of "shopifyCustomer" """ -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! +type shopifyCustomer_aggregate { + aggregate: shopifyCustomer_aggregate_fields + nodes: [shopifyCustomer!]! } """ -aggregated selection of "stampNftContractType" +aggregate fields of "shopifyCustomer" """ -type stampNftContractType_aggregate { - aggregate: stampNftContractType_aggregate_fields - nodes: [stampNftContractType!]! +type shopifyCustomer_aggregate_fields { + count(columns: [shopifyCustomer_select_column!], distinct: Boolean): Int! + max: shopifyCustomer_max_fields + min: shopifyCustomer_min_fields } """ -aggregate fields of "stampNftContractType" +Boolean expression to filter rows from the table "shopifyCustomer". All fields are combined with a logical 'AND'. """ -type stampNftContractType_aggregate_fields { - count(columns: [stampNftContractType_select_column!], distinct: Boolean): Int! - max: stampNftContractType_max_fields - min: stampNftContractType_min_fields +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 } """ -Boolean expression to filter rows from the table "stampNftContractType". All fields are combined with a logical 'AND'. +unique or primary key constraints on table "shopifyCustomer" """ -input stampNftContractType_bool_exp { - _and: [stampNftContractType_bool_exp!] - _not: stampNftContractType_bool_exp - _or: [stampNftContractType_bool_exp!] - value: String_comparison_exp +enum shopifyCustomer_constraint { + """ + unique or primary key constraint on columns "customerId", "address", "organizerId" + """ + shopifyCustomer_address_organizerId_customerId_key } """ -unique or primary key constraints on table "stampNftContractType" +input type for inserting data into table "shopifyCustomer" """ -enum stampNftContractType_constraint { +input shopifyCustomer_insert_input { """ - unique or primary key constraint on columns "value" + Reference to the account table, ensuring that customer data is associated with a unique account address. """ - stampNftContractType_pkey -} + address: String -enum stampNftContractType_enum { - SHOPIFY_PURCHASE_COMPLETED -} + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz -""" -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!] -} + """ + 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 + + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid -""" -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. + Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. """ - value: String + organizerId: String + updated_at: timestamptz } """aggregate max on columns""" -type stampNftContractType_max_fields { +type shopifyCustomer_max_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. + Reference to the account table, ensuring that customer data is associated with a unique account address. """ - value: String -} + address: String -"""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. + Timestamp indicating when the record was initially created, set automatically by the system. """ - value: String -} + created_at: timestamptz -""" -response of any mutation on the table "stampNftContractType" -""" -type stampNftContractType_mutation_response { - """number of rows affected by the mutation""" - affected_rows: 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 - """data from the rows affected by the mutation""" - returning: [stampNftContractType!]! + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid + + """ + 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 } -""" -on_conflict condition type for table "stampNftContractType" -""" -input stampNftContractType_on_conflict { +"""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 + + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + 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 + + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid + + """ + 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 +} + +""" +response of any mutation on the table "shopifyCustomer" +""" +type shopifyCustomer_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [shopifyCustomer!]! +} + +""" +on_conflict condition type for table "shopifyCustomer" +""" +input shopifyCustomer_on_conflict { + constraint: shopifyCustomer_constraint! + update_columns: [shopifyCustomer_update_column!]! = [] + where: shopifyCustomer_bool_exp +} + +"""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 +} + +""" +select columns of table "shopifyCustomer" +""" +enum shopifyCustomer_select_column { + """column name""" + address + + """column name""" + created_at + + """column name""" + customerId + + """column name""" + id + + """column name""" + organizerId + + """column name""" + updated_at +} + +""" +input type for updating data in table "shopifyCustomer" +""" +input shopifyCustomer_set_input { + """ + Reference to the account table, ensuring that customer data is associated with a unique account address. + """ + address: String + + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + 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 + + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid + + """ + 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 +} + +""" +Streaming cursor of the table "shopifyCustomer" +""" +input shopifyCustomer_stream_cursor_input { + """Stream column input with initial value""" + initial_value: shopifyCustomer_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""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 + + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + 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 + + """Unique identifier for each entry, generated automatically as a UUID.""" + id: uuid + + """ + 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 +} + +""" +update columns of table "shopifyCustomer" +""" +enum shopifyCustomer_update_column { + """column name""" + address + + """column name""" + created_at + + """column name""" + customerId + + """column name""" + id + + """column name""" + organizerId + + """column name""" + updated_at +} + +input shopifyCustomer_updates { + """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! +} + +""" +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 + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String! + + """ + 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! +} + +""" +aggregated selection of "shopifyDomain" +""" +type shopifyDomain_aggregate { + aggregate: shopifyDomain_aggregate_fields + nodes: [shopifyDomain!]! +} + +""" +aggregate fields of "shopifyDomain" +""" +type shopifyDomain_aggregate_fields { + count(columns: [shopifyDomain_select_column!], distinct: Boolean): Int! + max: shopifyDomain_max_fields + min: shopifyDomain_min_fields +} + +""" +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 { + """ + unique or primary key constraint on columns "domain" + """ + shopifyDomain_pkey +} + +""" +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 + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String + + """ + 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 +} + +"""aggregate max on columns""" +type shopifyDomain_max_fields { + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String + + """ + 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 +} + +"""aggregate min on columns""" +type shopifyDomain_min_fields { + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String + + """ + 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 +} + +""" +response of any mutation on the table "shopifyDomain" +""" +type shopifyDomain_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [shopifyDomain!]! +} + +""" +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 { + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String! +} + +""" +select columns of table "shopifyDomain" +""" +enum shopifyDomain_select_column { + """column name""" + created_at + + """column name""" + domain + + """column name""" + organizerId +} + +""" +input type for updating data in table "shopifyDomain" +""" +input shopifyDomain_set_input { + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String + + """ + 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 +} + +""" +Streaming cursor of the table "shopifyDomain" +""" +input shopifyDomain_stream_cursor_input { + """Stream column input with initial value""" + initial_value: shopifyDomain_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input shopifyDomain_stream_cursor_value_input { + """ + Timestamp indicating when the record was initially created, set automatically by the system. + """ + created_at: timestamptz + + """ + The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. + """ + domain: String + + """ + 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 +} + +""" +update columns of table "shopifyDomain" +""" +enum shopifyDomain_update_column { + """column name""" + created_at + + """column name""" + domain + + """column name""" + organizerId +} + +input shopifyDomain_updates { + """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! +} + +""" +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! + + """ + Structured metadata associated with the token, stored in a JSONB format for flexibility. + """ + metadata( + """JSON select path""" + path: String + ): 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! +} + +""" +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 { + """ + A unique identifier for the marketing campaign associated with this contract. + """ + campaignId: String! + + """ + The identifier of the blockchain network where the contract is deployed. + """ + chainId: String! + + """The blockchain address of the stamp NFT contract.""" + contractAddress: String! + created_at: timestamptz! + id: uuid + organizerId: String! + + """ + The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED. + """ + type: stampNftContractType_enum! + updated_at: timestamptz! +} + +""" +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! +} + +""" +aggregated selection of "stampNftContractType" +""" +type stampNftContractType_aggregate { + aggregate: stampNftContractType_aggregate_fields + nodes: [stampNftContractType!]! +} + +""" +aggregate fields of "stampNftContractType" +""" +type stampNftContractType_aggregate_fields { + count(columns: [stampNftContractType_select_column!], distinct: Boolean): Int! + max: stampNftContractType_max_fields + min: stampNftContractType_min_fields +} + +""" +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 { + """ + unique or primary key constraint on columns "value" + """ + stampNftContractType_pkey +} + +enum stampNftContractType_enum { + SHOPIFY_PURCHASE_COMPLETED +} + +""" +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!] +} + +""" +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 { + """ + 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 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 +} + +""" +response of any mutation on the table "stampNftContractType" +""" +type stampNftContractType_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [stampNftContractType!]! +} + +""" +on_conflict condition type for table "stampNftContractType" +""" +input stampNftContractType_on_conflict { constraint: stampNftContractType_constraint! update_columns: [stampNftContractType_update_column!]! = [] where: stampNftContractType_bool_exp @@ -39245,6 +39989,122 @@ type subscription_root { 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" """ diff --git a/libs/gql/admin/api/src/generated/schema.json b/libs/gql/admin/api/src/generated/schema.json index 88d53d312..8df754ad4 100644 --- a/libs/gql/admin/api/src/generated/schema.json +++ b/libs/gql/admin/api/src/generated/schema.json @@ -57284,12 +57284,6 @@ "description": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "SHOPIFY", - "description": null, - "isDeprecated": false, - "deprecationReason": null } ], "possibleTypes": null @@ -94063,6 +94057,93 @@ "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\"", @@ -98504,8 +98585,8 @@ "deprecationReason": null }, { - "name": "insert_stampNft", - "description": "insert data into the table: \"stampNft\"", + "name": "insert_shopifyCustomer", + "description": "insert data into the table: \"shopifyCustomer\"", "args": [ { "name": "objects", @@ -98521,7 +98602,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_insert_input", + "name": "shopifyCustomer_insert_input", "ofType": null } } @@ -98536,7 +98617,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_on_conflict", + "name": "shopifyCustomer_on_conflict", "ofType": null }, "defaultValue": null, @@ -98546,34 +98627,26 @@ ], "type": { "kind": "OBJECT", - "name": "stampNft_mutation_response", + "name": "shopifyCustomer_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftContract", - "description": "insert data into the table: \"stampNftContract\"", + "name": "insert_shopifyCustomer_one", + "description": "insert a single row into the table: \"shopifyCustomer\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "object", + "description": "the row 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 - } - } + "kind": "INPUT_OBJECT", + "name": "shopifyCustomer_insert_input", + "ofType": null } }, "defaultValue": null, @@ -98585,7 +98658,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_on_conflict", + "name": "shopifyCustomer_on_conflict", "ofType": null }, "defaultValue": null, @@ -98595,15 +98668,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftContract_mutation_response", + "name": "shopifyCustomer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftContractType", - "description": "insert data into the table: \"stampNftContractType\"", + "name": "insert_shopifyDomain", + "description": "insert data into the table: \"shopifyDomain\"", "args": [ { "name": "objects", @@ -98619,7 +98692,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_insert_input", + "name": "shopifyDomain_insert_input", "ofType": null } } @@ -98634,7 +98707,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_on_conflict", + "name": "shopifyDomain_on_conflict", "ofType": null }, "defaultValue": null, @@ -98644,15 +98717,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftContractType_mutation_response", + "name": "shopifyDomain_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftContractType_one", - "description": "insert a single row into the table: \"stampNftContractType\"", + "name": "insert_shopifyDomain_one", + "description": "insert a single row into the table: \"shopifyDomain\"", "args": [ { "name": "object", @@ -98662,7 +98735,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_insert_input", + "name": "shopifyDomain_insert_input", "ofType": null } }, @@ -98675,7 +98748,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_on_conflict", + "name": "shopifyDomain_on_conflict", "ofType": null }, "defaultValue": null, @@ -98685,26 +98758,83 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftContractType", + "name": "shopifyDomain", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftContract_one", - "description": "insert a single row into the table: \"stampNftContract\"", + "name": "insert_stampNft", + "description": "insert data into the table: \"stampNft\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "stampNftContract_insert_input", - "ofType": null + "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, @@ -98726,15 +98856,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftContract", + "name": "stampNftContract_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftSupply", - "description": "insert data into the table: \"stampNftSupply\"", + "name": "insert_stampNftContractType", + "description": "insert data into the table: \"stampNftContractType\"", "args": [ { "name": "objects", @@ -98750,7 +98880,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_insert_input", + "name": "stampNftContractType_insert_input", "ofType": null } } @@ -98765,7 +98895,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_on_conflict", + "name": "stampNftContractType_on_conflict", "ofType": null }, "defaultValue": null, @@ -98775,15 +98905,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftSupply_mutation_response", + "name": "stampNftContractType_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNftSupply_one", - "description": "insert a single row into the table: \"stampNftSupply\"", + "name": "insert_stampNftContractType_one", + "description": "insert a single row into the table: \"stampNftContractType\"", "args": [ { "name": "object", @@ -98793,7 +98923,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_insert_input", + "name": "stampNftContractType_insert_input", "ofType": null } }, @@ -98806,7 +98936,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_on_conflict", + "name": "stampNftContractType_on_conflict", "ofType": null }, "defaultValue": null, @@ -98816,15 +98946,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftSupply", + "name": "stampNftContractType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stampNft_one", - "description": "insert a single row into the table: \"stampNft\"", + "name": "insert_stampNftContract_one", + "description": "insert a single row into the table: \"stampNftContract\"", "args": [ { "name": "object", @@ -98834,7 +98964,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_insert_input", + "name": "stampNftContract_insert_input", "ofType": null } }, @@ -98847,7 +98977,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_on_conflict", + "name": "stampNftContract_on_conflict", "ofType": null }, "defaultValue": null, @@ -98857,15 +98987,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNft", + "name": "stampNftContract", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCheckoutSession", - "description": "insert data into the table: \"stripeCheckoutSession\"", + "name": "insert_stampNftSupply", + "description": "insert data into the table: \"stampNftSupply\"", "args": [ { "name": "objects", @@ -98881,7 +99011,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_insert_input", + "name": "stampNftSupply_insert_input", "ofType": null } } @@ -98896,7 +99026,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_on_conflict", + "name": "stampNftSupply_on_conflict", "ofType": null }, "defaultValue": null, @@ -98906,34 +99036,26 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSession_mutation_response", + "name": "stampNftSupply_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCheckoutSessionType", - "description": "insert data into the table: \"stripeCheckoutSessionType\"", + "name": "insert_stampNftSupply_one", + "description": "insert a single row into the table: \"stampNftSupply\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "object", + "description": "the row 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 - } - } + "kind": "INPUT_OBJECT", + "name": "stampNftSupply_insert_input", + "ofType": null } }, "defaultValue": null, @@ -98945,7 +99067,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_on_conflict", + "name": "stampNftSupply_on_conflict", "ofType": null }, "defaultValue": null, @@ -98955,15 +99077,15 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_mutation_response", + "name": "stampNftSupply", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCheckoutSessionType_one", - "description": "insert a single row into the table: \"stripeCheckoutSessionType\"", + "name": "insert_stampNft_one", + "description": "insert a single row into the table: \"stampNft\"", "args": [ { "name": "object", @@ -98973,7 +99095,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_insert_input", + "name": "stampNft_insert_input", "ofType": null } }, @@ -98986,7 +99108,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_on_conflict", + "name": "stampNft_on_conflict", "ofType": null }, "defaultValue": null, @@ -98996,26 +99118,34 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType", + "name": "stampNft", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCheckoutSession_one", - "description": "insert a single row into the table: \"stripeCheckoutSession\"", + "name": "insert_stripeCheckoutSession", + "description": "insert data into the table: \"stripeCheckoutSession\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSession_insert_input", + "ofType": null + } + } } }, "defaultValue": null, @@ -99037,15 +99167,15 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSession", + "name": "stripeCheckoutSession_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCustomer", - "description": "insert data into the table: \"stripeCustomer\"", + "name": "insert_stripeCheckoutSessionType", + "description": "insert data into the table: \"stripeCheckoutSessionType\"", "args": [ { "name": "objects", @@ -99061,7 +99191,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_insert_input", + "name": "stripeCheckoutSessionType_insert_input", "ofType": null } } @@ -99076,7 +99206,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_on_conflict", + "name": "stripeCheckoutSessionType_on_conflict", "ofType": null }, "defaultValue": null, @@ -99086,15 +99216,15 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCustomer_mutation_response", + "name": "stripeCheckoutSessionType_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_stripeCustomer_one", - "description": "insert a single row into the table: \"stripeCustomer\"", + "name": "insert_stripeCheckoutSessionType_one", + "description": "insert a single row into the table: \"stripeCheckoutSessionType\"", "args": [ { "name": "object", @@ -99104,7 +99234,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_insert_input", + "name": "stripeCheckoutSessionType_insert_input", "ofType": null } }, @@ -99117,7 +99247,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_on_conflict", + "name": "stripeCheckoutSessionType_on_conflict", "ofType": null }, "defaultValue": null, @@ -99127,34 +99257,26 @@ ], "type": { "kind": "OBJECT", - "name": "stripeCustomer", + "name": "stripeCheckoutSessionType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_timezone", - "description": "insert data into the table: \"timezone\"", + "name": "insert_stripeCheckoutSession_one", + "description": "insert a single row into the table: \"stripeCheckoutSession\"", "args": [ { - "name": "objects", - "description": "the rows to be inserted", + "name": "object", + "description": "the row 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 - } - } + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSession_insert_input", + "ofType": null } }, "defaultValue": null, @@ -99166,7 +99288,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "timezone_on_conflict", + "name": "stripeCheckoutSession_on_conflict", "ofType": null }, "defaultValue": null, @@ -99176,26 +99298,34 @@ ], "type": { "kind": "OBJECT", - "name": "timezone_mutation_response", + "name": "stripeCheckoutSession", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "insert_timezone_one", - "description": "insert a single row into the table: \"timezone\"", + "name": "insert_stripeCustomer", + "description": "insert data into the table: \"stripeCustomer\"", "args": [ { - "name": "object", - "description": "the row to be inserted", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "timezone_insert_input", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_insert_input", + "ofType": null + } + } } }, "defaultValue": null, @@ -99207,7 +99337,7 @@ "description": "upsert condition", "type": { "kind": "INPUT_OBJECT", - "name": "timezone_on_conflict", + "name": "stripeCustomer_on_conflict", "ofType": null }, "defaultValue": null, @@ -99217,30 +99347,26 @@ ], "type": { "kind": "OBJECT", - "name": "timezone", + "name": "stripeCustomer_mutation_response", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishAsset", - "description": "Publish one asset", + "name": "insert_stripeCustomer_one", + "description": "insert a single row into the table: \"stripeCustomer\"", "args": [ { - "name": "locales", - "description": "Optional localizations to publish", + "name": "object", + "description": "the row to be inserted", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Locale", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_insert_input", + "ofType": null } }, "defaultValue": null, @@ -99248,20 +99374,33 @@ "deprecationReason": null }, { - "name": "publishBase", - "description": "Whether to publish the base document", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_on_conflict", "ofType": null }, - "defaultValue": "true", + "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": "to", - "description": "Publishing target stage", + "name": "objects", + "description": "the rows to be inserted", "type": { "kind": "NON_NULL", "name": null, @@ -99272,26 +99411,51 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "Stage", + "kind": "INPUT_OBJECT", + "name": "timezone_insert_input", "ofType": null } } } }, - "defaultValue": "[PUBLISHED]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "Document to publish", + "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": "AssetWhereUniqueInput", + "name": "timezone_insert_input", "ofType": null } }, @@ -99300,29 +99464,29 @@ "deprecationReason": null }, { - "name": "withDefaultLocale", - "description": "Whether to include the default locale when publishBase is set", + "name": "on_conflict", + "description": "upsert condition", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "timezone_on_conflict", "ofType": null }, - "defaultValue": "true", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], "type": { "kind": "OBJECT", - "name": "Asset", + "name": "timezone", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishContentSpace", - "description": "Publish one contentSpace", + "name": "publishAsset", + "description": "Publish one asset", "args": [ { "name": "locales", @@ -99388,7 +99552,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceWhereUniqueInput", + "name": "AssetWhereUniqueInput", "ofType": null } }, @@ -99411,15 +99575,15 @@ ], "type": { "kind": "OBJECT", - "name": "ContentSpace", + "name": "Asset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishEvent", - "description": "Publish one event", + "name": "publishContentSpace", + "description": "Publish one contentSpace", "args": [ { "name": "locales", @@ -99485,7 +99649,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventWhereUniqueInput", + "name": "ContentSpaceWhereUniqueInput", "ofType": null } }, @@ -99508,15 +99672,15 @@ ], "type": { "kind": "OBJECT", - "name": "Event", + "name": "ContentSpace", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishEventPass", - "description": "Publish one eventPass", + "name": "publishEvent", + "description": "Publish one event", "args": [ { "name": "locales", @@ -99582,7 +99746,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassWhereUniqueInput", + "name": "EventWhereUniqueInput", "ofType": null } }, @@ -99605,15 +99769,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPass", + "name": "Event", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishEventPassDelayedRevealed", - "description": "Publish one eventPassDelayedRevealed", + "name": "publishEventPass", + "description": "Publish one eventPass", "args": [ { "name": "locales", @@ -99679,7 +99843,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedWhereUniqueInput", + "name": "EventPassWhereUniqueInput", "ofType": null } }, @@ -99702,72 +99866,19 @@ ], "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", + "name": "EventPass", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishManyAssets", - "description": "Publish many Asset documents", + "name": "publishEventPassDelayedRevealed", + "description": "Publish one eventPassDelayedRevealed", "args": [ { "name": "locales", - "description": "Document localizations to publish", + "description": "Optional localizations to publish", "type": { "kind": "LIST", "name": null, @@ -99799,7 +99910,7 @@ }, { "name": "to", - "description": "Stages to publish documents to", + "description": "Publishing target stage", "type": { "kind": "NON_NULL", "name": null, @@ -99823,11 +99934,15 @@ }, { "name": "where", - "description": "Identifies documents in each stage to be published", + "description": "Document to publish", "type": { - "kind": "INPUT_OBJECT", - "name": "AssetManyWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventPassDelayedRevealedWhereUniqueInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -99835,7 +99950,7 @@ }, { "name": "withDefaultLocale", - "description": "Whether to include the default locale when publishBase is true", + "description": "Whether to include the default locale when publishBase is set", "type": { "kind": "SCALAR", "name": "Boolean", @@ -99847,128 +99962,20 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BatchPayload", - "ofType": null - } + "kind": "OBJECT", + "name": "EventPassDelayedRevealed", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishManyAssetsConnection", - "description": "Publish many Asset documents", + "name": "publishLoyaltyCard", + "description": "Publish one loyaltyCard", "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", + "description": "Publishing target stage", "type": { "kind": "NON_NULL", "name": null, @@ -99992,44 +99999,32 @@ }, { "name": "where", - "description": "Identifies documents in each stage to be published", + "description": "Document to publish", "type": { - "kind": "INPUT_OBJECT", - "name": "AssetManyWhereInput", - "ofType": null + "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 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 - } + "kind": "OBJECT", + "name": "LoyaltyCard", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishManyContentSpaces", - "description": "Publish many ContentSpace documents", + "name": "publishManyAssets", + "description": "Publish many Asset documents", "args": [ { "name": "locales", @@ -100092,7 +100087,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceManyWhereInput", + "name": "AssetManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100125,8 +100120,8 @@ "deprecationReason": null }, { - "name": "publishManyContentSpacesConnection", - "description": "Publish many ContentSpace documents", + "name": "publishManyAssetsConnection", + "description": "Publish many Asset documents", "args": [ { "name": "after", @@ -100261,7 +100256,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceManyWhereInput", + "name": "AssetManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100286,7 +100281,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ContentSpaceConnection", + "name": "AssetConnection", "ofType": null } }, @@ -100294,8 +100289,8 @@ "deprecationReason": null }, { - "name": "publishManyEventPasses", - "description": "Publish many EventPass documents", + "name": "publishManyContentSpaces", + "description": "Publish many ContentSpace documents", "args": [ { "name": "locales", @@ -100358,7 +100353,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventPassManyWhereInput", + "name": "ContentSpaceManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100391,8 +100386,8 @@ "deprecationReason": null }, { - "name": "publishManyEventPassesConnection", - "description": "Publish many EventPass documents", + "name": "publishManyContentSpacesConnection", + "description": "Publish many ContentSpace documents", "args": [ { "name": "after", @@ -100527,7 +100522,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventPassManyWhereInput", + "name": "ContentSpaceManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100552,7 +100547,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EventPassConnection", + "name": "ContentSpaceConnection", "ofType": null } }, @@ -100560,8 +100555,8 @@ "deprecationReason": null }, { - "name": "publishManyEventPassesDelayedRevealed", - "description": "Publish many EventPassDelayedRevealed documents", + "name": "publishManyEventPasses", + "description": "Publish many EventPass documents", "args": [ { "name": "locales", @@ -100624,7 +100619,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedManyWhereInput", + "name": "EventPassManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100657,8 +100652,8 @@ "deprecationReason": null }, { - "name": "publishManyEventPassesDelayedRevealedConnection", - "description": "Publish many EventPassDelayedRevealed documents", + "name": "publishManyEventPassesConnection", + "description": "Publish many EventPass documents", "args": [ { "name": "after", @@ -100793,7 +100788,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedManyWhereInput", + "name": "EventPassManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100818,7 +100813,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EventPassDelayedRevealedConnection", + "name": "EventPassConnection", "ofType": null } }, @@ -100826,8 +100821,8 @@ "deprecationReason": null }, { - "name": "publishManyEvents", - "description": "Publish many Event documents", + "name": "publishManyEventPassesDelayedRevealed", + "description": "Publish many EventPassDelayedRevealed documents", "args": [ { "name": "locales", @@ -100890,7 +100885,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventManyWhereInput", + "name": "EventPassDelayedRevealedManyWhereInput", "ofType": null }, "defaultValue": null, @@ -100923,8 +100918,8 @@ "deprecationReason": null }, { - "name": "publishManyEventsConnection", - "description": "Publish many Event documents", + "name": "publishManyEventPassesDelayedRevealedConnection", + "description": "Publish many EventPassDelayedRevealed documents", "args": [ { "name": "after", @@ -101059,7 +101054,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "EventManyWhereInput", + "name": "EventPassDelayedRevealedManyWhereInput", "ofType": null }, "defaultValue": null, @@ -101084,7 +101079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "EventConnection", + "name": "EventPassDelayedRevealedConnection", "ofType": null } }, @@ -101092,9 +101087,41 @@ "deprecationReason": null }, { - "name": "publishManyLoyaltyCards", - "description": "Publish many LoyaltyCard documents", + "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", @@ -101124,12 +101151,24 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "LoyaltyCardManyWhereInput", + "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": { @@ -101145,8 +101184,8 @@ "deprecationReason": null }, { - "name": "publishManyLoyaltyCardsConnection", - "description": "Publish many LoyaltyCard documents", + "name": "publishManyEventsConnection", + "description": "Publish many Event documents", "args": [ { "name": "after", @@ -101208,6 +101247,38 @@ "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, @@ -101249,12 +101320,24 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "LoyaltyCardManyWhereInput", + "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": { @@ -101262,7 +101345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LoyaltyCardConnection", + "name": "EventConnection", "ofType": null } }, @@ -101270,41 +101353,9 @@ "deprecationReason": null }, { - "name": "publishManyOrganizers", - "description": "Publish many Organizer documents", + "name": "publishManyLoyaltyCards", + "description": "Publish many LoyaltyCard 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", @@ -101334,24 +101385,12 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "OrganizerManyWhereInput", + "name": "LoyaltyCardManyWhereInput", "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": { @@ -101367,8 +101406,8 @@ "deprecationReason": null }, { - "name": "publishManyOrganizersConnection", - "description": "Publish many Organizer documents", + "name": "publishManyLoyaltyCardsConnection", + "description": "Publish many LoyaltyCard documents", "args": [ { "name": "after", @@ -101430,38 +101469,6 @@ "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, @@ -101503,24 +101510,12 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "OrganizerManyWhereInput", + "name": "LoyaltyCardManyWhereInput", "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": { @@ -101528,7 +101523,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OrganizerConnection", + "name": "LoyaltyCardConnection", "ofType": null } }, @@ -101536,8 +101531,8 @@ "deprecationReason": null }, { - "name": "publishManyPacks", - "description": "Publish many Pack documents", + "name": "publishManyOrganizers", + "description": "Publish many Organizer documents", "args": [ { "name": "locales", @@ -101600,7 +101595,7 @@ "description": "Identifies documents in each stage to be published", "type": { "kind": "INPUT_OBJECT", - "name": "PackManyWhereInput", + "name": "OrganizerManyWhereInput", "ofType": null }, "defaultValue": null, @@ -101633,8 +101628,8 @@ "deprecationReason": null }, { - "name": "publishManyPacksConnection", - "description": "Publish many Pack documents", + "name": "publishManyOrganizersConnection", + "description": "Publish many Organizer documents", "args": [ { "name": "after", @@ -101764,6 +101759,103 @@ "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", @@ -101794,7 +101886,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PackConnection", + "name": "BatchPayload", "ofType": null } }, @@ -101802,12 +101894,72 @@ "deprecationReason": null }, { - "name": "publishOrganizer", - "description": "Publish one organizer", + "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": "Optional localizations to publish", + "description": "Document localizations to publish", "type": { "kind": "LIST", "name": null, @@ -101837,9 +101989,21 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "to", - "description": "Publishing target stage", + "description": "Stages to publish documents to", "type": { "kind": "NON_NULL", "name": null, @@ -101863,15 +102027,11 @@ }, { "name": "where", - "description": "Document to publish", + "description": "Identifies documents in each stage to be published", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrganizerWhereUniqueInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PackManyWhereInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -101879,7 +102039,7 @@ }, { "name": "withDefaultLocale", - "description": "Whether to include the default locale when publishBase is set", + "description": "Whether to include the default locale when publishBase is true", "type": { "kind": "SCALAR", "name": "Boolean", @@ -101891,16 +102051,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "Organizer", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PackConnection", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishPack", - "description": "Publish one pack", + "name": "publishOrganizer", + "description": "Publish one organizer", "args": [ { "name": "locales", @@ -101966,7 +102130,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PackWhereUniqueInput", + "name": "OrganizerWhereUniqueInput", "ofType": null } }, @@ -101989,15 +102153,15 @@ ], "type": { "kind": "OBJECT", - "name": "Pack", + "name": "Organizer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishAsset", - "description": "Schedule to publish one asset", + "name": "publishPack", + "description": "Publish one pack", "args": [ { "name": "locales", @@ -102031,30 +102195,6 @@ "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", @@ -102087,7 +102227,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssetWhereUniqueInput", + "name": "PackWhereUniqueInput", "ofType": null } }, @@ -102110,15 +102250,15 @@ ], "type": { "kind": "OBJECT", - "name": "Asset", + "name": "Pack", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishContentSpace", - "description": "Schedule to publish one contentSpace", + "name": "schedulePublishAsset", + "description": "Schedule to publish one asset", "args": [ { "name": "locales", @@ -102208,7 +102348,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceWhereUniqueInput", + "name": "AssetWhereUniqueInput", "ofType": null } }, @@ -102231,15 +102371,15 @@ ], "type": { "kind": "OBJECT", - "name": "ContentSpace", + "name": "Asset", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishEvent", - "description": "Schedule to publish one event", + "name": "schedulePublishContentSpace", + "description": "Schedule to publish one contentSpace", "args": [ { "name": "locales", @@ -102329,7 +102469,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventWhereUniqueInput", + "name": "ContentSpaceWhereUniqueInput", "ofType": null } }, @@ -102352,15 +102492,15 @@ ], "type": { "kind": "OBJECT", - "name": "Event", + "name": "ContentSpace", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishEventPass", - "description": "Schedule to publish one eventPass", + "name": "schedulePublishEvent", + "description": "Schedule to publish one event", "args": [ { "name": "locales", @@ -102450,7 +102590,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassWhereUniqueInput", + "name": "EventWhereUniqueInput", "ofType": null } }, @@ -102473,15 +102613,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPass", + "name": "Event", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishEventPassDelayedRevealed", - "description": "Schedule to publish one eventPassDelayedRevealed", + "name": "schedulePublishEventPass", + "description": "Schedule to publish one eventPass", "args": [ { "name": "locales", @@ -102571,7 +102711,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedWhereUniqueInput", + "name": "EventPassWhereUniqueInput", "ofType": null } }, @@ -102594,92 +102734,15 @@ ], "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", + "name": "EventPass", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishOrganizer", - "description": "Schedule to publish one organizer", + "name": "schedulePublishEventPassDelayedRevealed", + "description": "Schedule to publish one eventPassDelayedRevealed", "args": [ { "name": "locales", @@ -102769,7 +102832,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "OrganizerWhereUniqueInput", + "name": "EventPassDelayedRevealedWhereUniqueInput", "ofType": null } }, @@ -102792,15 +102855,92 @@ ], "type": { "kind": "OBJECT", - "name": "Organizer", + "name": "EventPassDelayedRevealed", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "schedulePublishPack", - "description": "Schedule to publish one pack", + "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", @@ -102890,7 +103030,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PackWhereUniqueInput", + "name": "OrganizerWhereUniqueInput", "ofType": null } }, @@ -102913,43 +103053,19 @@ ], "type": { "kind": "OBJECT", - "name": "Pack", + "name": "Organizer", "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.", + "name": "schedulePublishPack", + "description": "Schedule to publish one pack", "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", + "description": "Optional localizations to publish", "type": { "kind": "LIST", "name": null, @@ -102967,6 +103083,18 @@ "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", @@ -102992,45 +103120,69 @@ "deprecationReason": null }, { - "name": "unpublishBase", - "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.", + "name": "to", + "description": "Publishing target stage", "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": "ENUM", + "name": "Stage", + "ofType": null + } + } + } }, - "defaultValue": "true", + "defaultValue": "[PUBLISHED]", "isDeprecated": false, "deprecationReason": null }, { "name": "where", - "description": "Document to unpublish", + "description": "Document to publish", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssetWhereUniqueInput", + "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": "Asset", + "name": "Pack", "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": "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", @@ -103120,7 +103272,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceWhereUniqueInput", + "name": "AssetWhereUniqueInput", "ofType": null } }, @@ -103131,15 +103283,15 @@ ], "type": { "kind": "OBJECT", - "name": "ContentSpace", + "name": "Asset", "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.", + "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", @@ -103229,7 +103381,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventWhereUniqueInput", + "name": "ContentSpaceWhereUniqueInput", "ofType": null } }, @@ -103240,15 +103392,15 @@ ], "type": { "kind": "OBJECT", - "name": "Event", + "name": "ContentSpace", "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.", + "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", @@ -103338,7 +103490,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassWhereUniqueInput", + "name": "EventWhereUniqueInput", "ofType": null } }, @@ -103349,15 +103501,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPass", + "name": "Event", "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.", + "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", @@ -103447,7 +103599,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedWhereUniqueInput", + "name": "EventPassWhereUniqueInput", "ofType": null } }, @@ -103458,15 +103610,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPassDelayedRevealed", + "name": "EventPass", "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.", + "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", @@ -103492,6 +103644,26 @@ "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", @@ -103516,6 +103688,18 @@ "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", @@ -103524,7 +103708,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LoyaltyCardWhereUniqueInput", + "name": "EventPassDelayedRevealedWhereUniqueInput", "ofType": null } }, @@ -103535,15 +103719,15 @@ ], "type": { "kind": "OBJECT", - "name": "LoyaltyCard", + "name": "EventPassDelayedRevealed", "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.", + "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", @@ -103569,26 +103753,6 @@ "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", @@ -103613,18 +103777,6 @@ "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", @@ -103633,7 +103785,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "OrganizerWhereUniqueInput", + "name": "LoyaltyCardWhereUniqueInput", "ofType": null } }, @@ -103644,15 +103796,15 @@ ], "type": { "kind": "OBJECT", - "name": "Organizer", + "name": "LoyaltyCard", "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.", + "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", @@ -103742,7 +103894,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PackWhereUniqueInput", + "name": "OrganizerWhereUniqueInput", "ofType": null } }, @@ -103753,15 +103905,15 @@ ], "type": { "kind": "OBJECT", - "name": "Pack", + "name": "Organizer", "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.", + "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", @@ -103808,85 +103960,24 @@ "deprecationReason": null }, { - "name": "unpublishBase", - "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.", + "name": "releaseAt", + "description": "Release at point in time, will create new release containing this operation", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "DateTime", "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", + "name": "releaseId", + "description": "Optionally attach this scheduled operation to an existing release", "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, @@ -103912,7 +104003,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ContentSpaceWhereUniqueInput", + "name": "PackWhereUniqueInput", "ofType": null } }, @@ -103923,15 +104014,15 @@ ], "type": { "kind": "OBJECT", - "name": "ContentSpace", + "name": "Pack", "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": "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", @@ -103997,7 +104088,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventWhereUniqueInput", + "name": "AssetWhereUniqueInput", "ofType": null } }, @@ -104008,15 +104099,15 @@ ], "type": { "kind": "OBJECT", - "name": "Event", + "name": "Asset", "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": "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", @@ -104082,7 +104173,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassWhereUniqueInput", + "name": "ContentSpaceWhereUniqueInput", "ofType": null } }, @@ -104093,15 +104184,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPass", + "name": "ContentSpace", "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": "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", @@ -104167,7 +104258,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "EventPassDelayedRevealedWhereUniqueInput", + "name": "EventWhereUniqueInput", "ofType": null } }, @@ -104178,15 +104269,15 @@ ], "type": { "kind": "OBJECT", - "name": "EventPassDelayedRevealed", + "name": "Event", "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.", + "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", @@ -104212,62 +104303,9 @@ "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", + "description": "Optional locales to unpublish. Unpublishing the default locale will completely remove the document from the selected stages", "type": { "kind": "LIST", "name": null, @@ -104287,7 +104325,7 @@ }, { "name": "unpublishBase", - "description": "Whether to unpublish the base document and default localization", + "description": "Unpublish complete document including default localization and relations from stages. Can be disabled.", "type": { "kind": "SCALAR", "name": "Boolean", @@ -104299,11 +104337,15 @@ }, { "name": "where", - "description": "Identifies documents in each stage", + "description": "Document to unpublish", "type": { - "kind": "INPUT_OBJECT", - "name": "AssetManyWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventPassWhereUniqueInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -104311,60 +104353,279 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BatchPayload", - "ofType": null - } + "kind": "OBJECT", + "name": "EventPass", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unpublishManyAssetsConnection", - "description": "Find many Asset documents that match criteria in specified stage and unpublish from target stages", + "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": "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", + "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, @@ -113783,6 +114044,211 @@ "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\"", @@ -155240,8 +155706,8 @@ "deprecationReason": null }, { - "name": "stampNft", - "description": "fetch data from the table: \"stampNft\"", + "name": "shopifyCustomer", + "description": "fetch data from the table: \"shopifyCustomer\"", "args": [ { "name": "distinct_on", @@ -155254,7 +155720,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNft_select_column", + "name": "shopifyCustomer_select_column", "ofType": null } } @@ -155298,7 +155764,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_order_by", + "name": "shopifyCustomer_order_by", "ofType": null } } @@ -155312,7 +155778,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -155331,7 +155797,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNft", + "name": "shopifyCustomer", "ofType": null } } @@ -155341,8 +155807,8 @@ "deprecationReason": null }, { - "name": "stampNftContract", - "description": "fetch data from the table: \"stampNftContract\"", + "name": "shopifyCustomer_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyCustomer\"", "args": [ { "name": "distinct_on", @@ -155355,7 +155821,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContract_select_column", + "name": "shopifyCustomer_select_column", "ofType": null } } @@ -155399,7 +155865,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_order_by", + "name": "shopifyCustomer_order_by", "ofType": null } } @@ -155413,7 +155879,100 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_bool_exp", + "name": "shopifyCustomer_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "shopifyCustomer_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shopifyDomain", + "description": "fetch data from the table: \"shopifyDomain\"", + "args": [ + { + "name": "distinct_on", + "description": "distinct select on columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "shopifyDomain_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": "shopifyDomain_order_by", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": "filter the rows returned", + "type": { + "kind": "INPUT_OBJECT", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -155432,7 +155991,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftContract", + "name": "shopifyDomain", "ofType": null } } @@ -155442,8 +156001,8 @@ "deprecationReason": null }, { - "name": "stampNftContractType", - "description": "fetch data from the table: \"stampNftContractType\"", + "name": "shopifyDomain_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyDomain\"", "args": [ { "name": "distinct_on", @@ -155456,7 +156015,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContractType_select_column", + "name": "shopifyDomain_select_column", "ofType": null } } @@ -155500,7 +156059,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_order_by", + "name": "shopifyDomain_order_by", "ofType": null } } @@ -155514,7 +156073,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -155526,25 +156085,46 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "shopifyDomain_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "OBJECT", - "name": "stampNftContractType", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "shopifyDomain", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stampNftContractType_aggregate", - "description": "fetch aggregated fields from the table: \"stampNftContractType\"", + "name": "stampNft", + "description": "fetch data from the table: \"stampNft\"", "args": [ { "name": "distinct_on", @@ -155557,7 +156137,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContractType_select_column", + "name": "stampNft_select_column", "ofType": null } } @@ -155601,7 +156181,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_order_by", + "name": "stampNft_order_by", "ofType": null } } @@ -155615,7 +156195,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "stampNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -155627,46 +156207,25 @@ "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": "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 + } } - ], - "type": { - "kind": "OBJECT", - "name": "stampNftContractType", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stampNftContract_aggregate", - "description": "fetch aggregated fields from the table: \"stampNftContract\"", + "name": "stampNftContract", + "description": "fetch data from the table: \"stampNftContract\"", "args": [ { "name": "distinct_on", @@ -155749,62 +156308,25 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "stampNftContract_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": 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": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "stampNftContract", "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "stampNftContract", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stampNftSupply", - "description": "fetch data from the table: \"stampNftSupply\"", + "name": "stampNftContractType", + "description": "fetch data from the table: \"stampNftContractType\"", "args": [ { "name": "distinct_on", @@ -155817,7 +156339,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftSupply_select_column", + "name": "stampNftContractType_select_column", "ofType": null } } @@ -155861,7 +156383,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_order_by", + "name": "stampNftContractType_order_by", "ofType": null } } @@ -155875,7 +156397,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -155894,7 +156416,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftSupply", + "name": "stampNftContractType", "ofType": null } } @@ -155904,8 +156426,8 @@ "deprecationReason": null }, { - "name": "stampNftSupply_aggregate", - "description": "fetch aggregated fields from the table: \"stampNftSupply\"", + "name": "stampNftContractType_aggregate", + "description": "fetch aggregated fields from the table: \"stampNftContractType\"", "args": [ { "name": "distinct_on", @@ -155918,7 +156440,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftSupply_select_column", + "name": "stampNftContractType_select_column", "ofType": null } } @@ -155962,7 +156484,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_order_by", + "name": "stampNftContractType_order_by", "ofType": null } } @@ -155976,7 +156498,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -155989,7 +156511,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftSupply_aggregate", + "name": "stampNftContractType_aggregate", "ofType": null } }, @@ -155997,18 +156519,18 @@ "deprecationReason": null }, { - "name": "stampNftSupply_by_pk", - "description": "fetch data from the table: \"stampNftSupply\" using primary key columns", + "name": "stampNftContractType_by_pk", + "description": "fetch data from the table: \"stampNftContractType\" using primary key columns", "args": [ { - "name": "id", - "description": null, + "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": "uuid", + "name": "String", "ofType": null } }, @@ -156019,15 +156541,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNftSupply", + "name": "stampNftContractType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stampNft_aggregate", - "description": "fetch aggregated fields from the table: \"stampNft\"", + "name": "stampNftContract_aggregate", + "description": "fetch aggregated fields from the table: \"stampNftContract\"", "args": [ { "name": "distinct_on", @@ -156040,7 +156562,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNft_select_column", + "name": "stampNftContract_select_column", "ofType": null } } @@ -156084,7 +156606,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_order_by", + "name": "stampNftContract_order_by", "ofType": null } } @@ -156098,7 +156620,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -156111,7 +156633,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNft_aggregate", + "name": "stampNftContract_aggregate", "ofType": null } }, @@ -156119,18 +156641,34 @@ "deprecationReason": null }, { - "name": "stampNft_by_pk", - "description": "fetch data from the table: \"stampNft\" 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 } }, @@ -156141,15 +156679,15 @@ ], "type": { "kind": "OBJECT", - "name": "stampNft", + "name": "stampNftContract", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCheckoutSession", - "description": "fetch data from the table: \"stripeCheckoutSession\"", + "name": "stampNftSupply", + "description": "fetch data from the table: \"stampNftSupply\"", "args": [ { "name": "distinct_on", @@ -156162,7 +156700,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSession_select_column", + "name": "stampNftSupply_select_column", "ofType": null } } @@ -156206,7 +156744,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_order_by", + "name": "stampNftSupply_order_by", "ofType": null } } @@ -156220,7 +156758,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -156239,7 +156777,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stripeCheckoutSession", + "name": "stampNftSupply", "ofType": null } } @@ -156249,8 +156787,8 @@ "deprecationReason": null }, { - "name": "stripeCheckoutSessionType", - "description": "fetch data from the table: \"stripeCheckoutSessionType\"", + "name": "stampNftSupply_aggregate", + "description": "fetch aggregated fields from the table: \"stampNftSupply\"", "args": [ { "name": "distinct_on", @@ -156263,7 +156801,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSessionType_select_column", + "name": "stampNftSupply_select_column", "ofType": null } } @@ -156307,7 +156845,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_order_by", + "name": "stampNftSupply_order_by", "ofType": null } } @@ -156321,7 +156859,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -156333,25 +156871,46 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "stampNftSupply_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": 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": "OBJECT", - "name": "stripeCheckoutSessionType", + "kind": "SCALAR", + "name": "uuid", "ofType": null } - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "stampNftSupply", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCheckoutSessionType_aggregate", - "description": "fetch aggregated fields from the table: \"stripeCheckoutSessionType\"", + "name": "stampNft_aggregate", + "description": "fetch aggregated fields from the table: \"stampNft\"", "args": [ { "name": "distinct_on", @@ -156364,7 +156923,331 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSessionType_select_column", + "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": "OBJECT", + "name": "stampNft_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "stampNft", + "ofType": 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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "stripeCheckoutSession", + "ofType": null + } + } + } + }, + "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 + } + ], + "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 + }, + { + "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 } } @@ -160093,7 +160976,7 @@ }, { "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. It can be \"SHOPIFY\" or \"EXTERNAL\".", + "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", @@ -160642,7 +161525,7 @@ }, { "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. It can be \"SHOPIFY\" or \"EXTERNAL\".", + "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", @@ -161492,7 +162375,7 @@ }, { "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. It can be \"SHOPIFY\" or \"EXTERNAL\".", + "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", @@ -161698,7 +162581,7 @@ }, { "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. It can be \"SHOPIFY\" or \"EXTERNAL\".", + "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", @@ -164007,28 +164890,12 @@ }, { "kind": "OBJECT", - "name": "stampNft", - "description": "Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata.", + "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": "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, + "name": "address", + "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.", "args": [], "type": { "kind": "NON_NULL", @@ -164044,155 +164911,19 @@ }, { "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.", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "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": "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": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "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": "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.", + "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", @@ -164207,36 +164938,24 @@ "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "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, + "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": "NON_NULL", @@ -164250,61 +164969,14 @@ "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 - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -164317,8 +164989,8 @@ }, { "kind": "OBJECT", - "name": "stampNftContractType_aggregate", - "description": "aggregated selection of \"stampNftContractType\"", + "name": "shopifyCustomer_aggregate", + "description": "aggregated selection of \"shopifyCustomer\"", "fields": [ { "name": "aggregate", @@ -164326,7 +164998,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContractType_aggregate_fields", + "name": "shopifyCustomer_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -164347,7 +165019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftContractType", + "name": "shopifyCustomer", "ofType": null } } @@ -164364,8 +165036,8 @@ }, { "kind": "OBJECT", - "name": "stampNftContractType_aggregate_fields", - "description": "aggregate fields of \"stampNftContractType\"", + "name": "shopifyCustomer_aggregate_fields", + "description": "aggregate fields of \"shopifyCustomer\"", "fields": [ { "name": "count", @@ -164382,7 +165054,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContractType_select_column", + "name": "shopifyCustomer_select_column", "ofType": null } } @@ -164422,7 +165094,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContractType_max_fields", + "name": "shopifyCustomer_max_fields", "ofType": null }, "isDeprecated": false, @@ -164434,7 +165106,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContractType_min_fields", + "name": "shopifyCustomer_min_fields", "ofType": null }, "isDeprecated": false, @@ -164448,8 +165120,8 @@ }, { "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'.", + "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": [ { @@ -164463,7 +165135,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null } } @@ -164477,7 +165149,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -164495,7 +165167,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null } } @@ -164505,7 +165177,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "address", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -164515,40 +165187,83 @@ "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\"", + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerId", + "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": "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": "stampNftContractType_enum", - "description": null, + "name": "shopifyCustomer_constraint", + "description": "unique or primary key constraints on table \"shopifyCustomer\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "SHOPIFY_PURCHASE_COMPLETED", - "description": null, + "name": "shopifyCustomer_address_organizerId_customerId_key", + "description": "unique or primary key constraint on columns \"customerId\", \"address\", \"organizerId\"", "isDeprecated": false, "deprecationReason": null } @@ -164557,16 +165272,16 @@ }, { "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'.", + "name": "shopifyCustomer_insert_input", + "description": "input type for inserting data into table \"shopifyCustomer\"", "fields": null, "inputFields": [ { - "name": "_eq", - "description": null, + "name": "address", + "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.", "type": { - "kind": "ENUM", - "name": "stampNftContractType_enum", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -164574,31 +165289,23 @@ "deprecationReason": null }, { - "name": "_in", - "description": null, + "name": "created_at", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "stampNftContractType_enum", - "ofType": null - } - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_is_null", - "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": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -164606,11 +165313,11 @@ "deprecationReason": null }, { - "name": "_neq", - "description": null, + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", "type": { - "kind": "ENUM", - "name": "stampNftContractType_enum", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -164618,42 +165325,23 @@ "deprecationReason": null }, { - "name": "_nin", - "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": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "stampNftContractType_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": "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.", + "name": "updated_at", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -164667,12 +165355,12 @@ }, { "kind": "OBJECT", - "name": "stampNftContractType_max_fields", + "name": "shopifyCustomer_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.", + "name": "address", + "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.", "args": [], "type": { "kind": "SCALAR", @@ -164681,21 +165369,22 @@ }, "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.", + "name": "created_at", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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", @@ -164704,54 +165393,39 @@ }, "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", + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", + "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "stampNftContractType", - "ofType": null - } - } - } + "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 @@ -164763,24 +165437,158 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stampNftContractType_on_conflict", - "description": "on_conflict condition type for table \"stampNftContractType\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "shopifyCustomer_min_fields", + "description": "aggregate min on columns", + "fields": [ { - "name": "constraint", - "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": "ENUM", - "name": "stampNftContractType_constraint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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 + }, + "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": "shopifyCustomer_mutation_response", + "description": "response of any mutation on the table \"shopifyCustomer\"", + "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": "shopifyCustomer", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "shopifyCustomer_on_conflict", + "description": "on_conflict condition type for table \"shopifyCustomer\"", + "fields": null, + "inputFields": [ + { + "name": "constraint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "shopifyCustomer_constraint", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, @@ -164798,7 +165606,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContractType_update_column", + "name": "shopifyCustomer_update_column", "ofType": null } } @@ -164813,7 +165621,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -164827,12 +165635,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_order_by", - "description": "Ordering options when selecting data from \"stampNftContractType\".", + "name": "shopifyCustomer_order_by", + "description": "Ordering options when selecting data from \"shopifyCustomer\".", "fields": null, "inputFields": [ { - "name": "value", + "name": "address", "description": null, "type": { "kind": "ENUM", @@ -164842,29 +165650,62 @@ "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.", + "name": "created_at", + "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": "customerId", + "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": "updated_at", + "description": null, + "type": { + "kind": "ENUM", + "name": "order_by", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -164877,14 +165718,44 @@ }, { "kind": "ENUM", - "name": "stampNftContractType_select_column", - "description": "select columns of table \"stampNftContractType\"", + "name": "shopifyCustomer_select_column", + "description": "select columns of table \"shopifyCustomer\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "value", + "name": "address", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerId", + "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": "updated_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -164894,13 +165765,61 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_set_input", - "description": "input type for updating data in table \"stampNftContractType\"", + "name": "shopifyCustomer_set_input", + "description": "input type for updating data in table \"shopifyCustomer\"", "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.", + "name": "address", + "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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, + "isDeprecated": false, + "deprecationReason": 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", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", @@ -164909,6 +165828,18 @@ "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, @@ -164917,8 +165848,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_stream_cursor_input", - "description": "Streaming cursor of the table \"stampNftContractType\"", + "name": "shopifyCustomer_stream_cursor_input", + "description": "Streaming cursor of the table \"shopifyCustomer\"", "fields": null, "inputFields": [ { @@ -164929,7 +165860,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_stream_cursor_value_input", + "name": "shopifyCustomer_stream_cursor_value_input", "ofType": null } }, @@ -164956,13 +165887,61 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_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": "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.", + "name": "address", + "description": "Reference to the account table, ensuring that customer data is associated with a unique account address.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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, + "isDeprecated": false, + "deprecationReason": 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", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "Unique identifier for each entry, generated automatically as a UUID.", + "type": { + "kind": "SCALAR", + "name": "uuid", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": 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", @@ -164971,6 +165950,18 @@ "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, @@ -164979,14 +165970,44 @@ }, { "kind": "ENUM", - "name": "stampNftContractType_update_column", - "description": "update columns of table \"stampNftContractType\"", + "name": "shopifyCustomer_update_column", + "description": "update columns of table \"shopifyCustomer\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "value", + "name": "address", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerId", + "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": "updated_at", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -164996,7 +166017,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_updates", + "name": "shopifyCustomer_updates", "description": null, "fields": null, "inputFields": [ @@ -165005,7 +166026,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_set_input", + "name": "shopifyCustomer_set_input", "ofType": null }, "defaultValue": null, @@ -165020,7 +166041,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContractType_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null } }, @@ -165035,8 +166056,63 @@ }, { "kind": "OBJECT", - "name": "stampNftContract_aggregate", - "description": "aggregated selection of \"stampNftContract\"", + "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": "created_at", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": 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": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "shopifyDomain_aggregate", + "description": "aggregated selection of \"shopifyDomain\"", "fields": [ { "name": "aggregate", @@ -165044,7 +166120,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContract_aggregate_fields", + "name": "shopifyDomain_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -165065,7 +166141,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftContract", + "name": "shopifyDomain", "ofType": null } } @@ -165082,8 +166158,8 @@ }, { "kind": "OBJECT", - "name": "stampNftContract_aggregate_fields", - "description": "aggregate fields of \"stampNftContract\"", + "name": "shopifyDomain_aggregate_fields", + "description": "aggregate fields of \"shopifyDomain\"", "fields": [ { "name": "count", @@ -165100,7 +166176,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContract_select_column", + "name": "shopifyDomain_select_column", "ofType": null } } @@ -165140,7 +166216,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContract_max_fields", + "name": "shopifyDomain_max_fields", "ofType": null }, "isDeprecated": false, @@ -165152,7 +166228,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftContract_min_fields", + "name": "shopifyDomain_min_fields", "ofType": null }, "isDeprecated": false, @@ -165166,8 +166242,8 @@ }, { "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'.", + "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": [ { @@ -165181,7 +166257,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null } } @@ -165195,7 +166271,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -165213,7 +166289,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null } } @@ -165223,11 +166299,11 @@ "deprecationReason": null }, { - "name": "campaignId", + "name": "created_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -165235,7 +166311,7 @@ "deprecationReason": null }, { - "name": "chainId", + "name": "domain", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -165247,7 +166323,7 @@ "deprecationReason": null }, { - "name": "contractAddress", + "name": "organizerId", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -165257,13 +166333,41 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "shopifyDomain_constraint", + "description": "unique or primary key constraints on table \"shopifyDomain\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "shopifyDomain_pkey", + "description": "unique or primary key constraint on columns \"domain\"", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "shopifyDomain_insert_input", + "description": "input type for inserting data into table \"shopifyDomain\"", + "fields": null, + "inputFields": [ { "name": "created_at", - "description": null, + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -165271,11 +166375,11 @@ "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.", "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -165284,158 +166388,10 @@ }, { "name": "organizerId", - "description": null, + "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": "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_pkey", - "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "stampNftContract_insert_input", - "description": "input type for inserting data into table \"stampNftContract\"", - "fields": null, - "inputFields": [ - { - "name": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", - "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": "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", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -165449,48 +166405,12 @@ }, { "kind": "OBJECT", - "name": "stampNftContract_max_fields", + "name": "shopifyDomain_max_fields", "description": "aggregate max on columns", "fields": [ - { - "name": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", - "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, + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "args": [], "type": { "kind": "SCALAR", @@ -165501,12 +166421,12 @@ "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": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -165514,7 +166434,7 @@ }, { "name": "organizerId", - "description": null, + "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", @@ -165523,18 +166443,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -165544,48 +166452,12 @@ }, { "kind": "OBJECT", - "name": "stampNftContract_min_fields", + "name": "shopifyDomain_min_fields", "description": "aggregate min on columns", "fields": [ - { - "name": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", - "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, + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "args": [], "type": { "kind": "SCALAR", @@ -165596,12 +166468,12 @@ "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": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -165609,7 +166481,7 @@ }, { "name": "organizerId", - "description": null, + "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", @@ -165618,18 +166490,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -165639,8 +166499,8 @@ }, { "kind": "OBJECT", - "name": "stampNftContract_mutation_response", - "description": "response of any mutation on the table \"stampNftContract\"", + "name": "shopifyDomain_mutation_response", + "description": "response of any mutation on the table \"shopifyDomain\"", "fields": [ { "name": "affected_rows", @@ -165673,7 +166533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftContract", + "name": "shopifyDomain", "ofType": null } } @@ -165690,8 +166550,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContract_on_conflict", - "description": "on_conflict condition type for table \"stampNftContract\"", + "name": "shopifyDomain_on_conflict", + "description": "on_conflict condition type for table \"shopifyDomain\"", "fields": null, "inputFields": [ { @@ -165702,7 +166562,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContract_constraint", + "name": "shopifyDomain_constraint", "ofType": null } }, @@ -165724,7 +166584,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftContract_update_column", + "name": "shopifyDomain_update_column", "ofType": null } } @@ -165739,7 +166599,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -165753,46 +166613,10 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContract_order_by", - "description": "Ordering options when selecting data from \"stampNftContract\".", + "name": "shopifyDomain_order_by", + "description": "Ordering options when selecting data from \"shopifyDomain\".", "fields": null, "inputFields": [ - { - "name": "campaignId", - "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, @@ -165806,7 +166630,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "domain", "description": null, "type": { "kind": "ENUM", @@ -165828,30 +166652,6 @@ "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, @@ -165860,29 +166660,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContract_pk_columns_input", - "description": "primary key columns input for table: stampNftContract", + "name": "shopifyDomain_pk_columns_input", + "description": "primary key columns input for table: shopifyDomain", "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": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contractAddress", - "description": "The blockchain address of the stamp NFT contract.", + "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, @@ -165903,30 +166687,12 @@ }, { "kind": "ENUM", - "name": "stampNftContract_select_column", - "description": "select columns of table \"stampNftContract\"", + "name": "shopifyDomain_select_column", + "description": "select columns of table \"shopifyDomain\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ - { - "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", @@ -165934,7 +166700,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "domain", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -165944,67 +166710,19 @@ "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\"", + "name": "shopifyDomain_set_input", + "description": "input type for updating data in table \"shopifyDomain\"", "fields": null, "inputFields": [ - { - "name": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", - "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, + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "type": { "kind": "SCALAR", "name": "timestamptz", @@ -166015,11 +166733,11 @@ "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.", "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null, @@ -166028,7 +166746,7 @@ }, { "name": "organizerId", - "description": null, + "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", @@ -166037,30 +166755,6 @@ "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, @@ -166069,8 +166763,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContract_stream_cursor_input", - "description": "Streaming cursor of the table \"stampNftContract\"", + "name": "shopifyDomain_stream_cursor_input", + "description": "Streaming cursor of the table \"shopifyDomain\"", "fields": null, "inputFields": [ { @@ -166081,7 +166775,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftContract_stream_cursor_value_input", + "name": "shopifyDomain_stream_cursor_value_input", "ofType": null } }, @@ -166108,16 +166802,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftContract_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": "campaignId", - "description": "A unique identifier for the marketing campaign associated with this contract.", + "name": "created_at", + "description": "Timestamp indicating when the record was initially created, set automatically by the system.", "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -166125,8 +166819,8 @@ "deprecationReason": null }, { - "name": "chainId", - "description": "The identifier of the blockchain network where the contract is deployed.", + "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", @@ -166137,8 +166831,8 @@ "deprecationReason": null }, { - "name": "contractAddress", - "description": "The blockchain address of the stamp NFT contract.", + "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", @@ -166147,37 +166841,53 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "shopifyDomain_update_column", + "description": "update columns of table \"shopifyDomain\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "created_at", - "description": null, - "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null - }, - "defaultValue": null, + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "uuid", - "ofType": null - }, - "defaultValue": null, + "name": "domain", + "description": "column name", "isDeprecated": false, "deprecationReason": null }, { "name": "organizerId", - "description": null, + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "shopifyDomain_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": "shopifyDomain_set_input", "ofType": null }, "defaultValue": null, @@ -166185,24 +166895,16 @@ "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, + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "shopifyDomain_bool_exp", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -166214,118 +166916,168 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "stampNftContract_update_column", - "description": "update columns of table \"stampNftContract\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "campaignId", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "stampNft", + "description": "Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata.", + "fields": [ { "name": "chainId", - "description": "column name", + "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", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { "name": "created_at", - "description": "column name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "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": "organizerId", - "description": "column name", + "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": "type", - "description": "column name", + "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": "updated_at", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "stampNftContract_updates", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "tokenUri", + "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "stampNftContract_set_input", + "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": "stampNftContract_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": "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.", + "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": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -166334,7 +167086,7 @@ }, { "name": "chainId", - "description": null, + "description": "The identifier of the blockchain network where the contract is deployed.", "args": [], "type": { "kind": "NON_NULL", @@ -166350,7 +167102,7 @@ }, { "name": "contractAddress", - "description": null, + "description": "The blockchain address of the stamp NFT contract.", "args": [], "type": { "kind": "NON_NULL", @@ -166381,35 +167133,19 @@ "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", + "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": { @@ -166417,7 +167153,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -166425,31 +167161,23 @@ "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, + "name": "type", + "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.", "args": [], "type": { - "kind": "ENUM", - "name": "nftStatus_enum", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "stampNftContractType_enum", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "name": "updated_at", "description": null, "args": [], "type": { @@ -166457,23 +167185,34 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "bigint", + "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": "updated_at", - "description": null, + "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": "timestamptz", + "name": "String", "ofType": null } }, @@ -166488,8 +167227,8 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_aggregate", - "description": "aggregated selection of \"stampNftSupply\"", + "name": "stampNftContractType_aggregate", + "description": "aggregated selection of \"stampNftContractType\"", "fields": [ { "name": "aggregate", @@ -166497,7 +167236,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftSupply_aggregate_fields", + "name": "stampNftContractType_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -166518,7 +167257,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftSupply", + "name": "stampNftContractType", "ofType": null } } @@ -166535,21 +167274,9 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_aggregate_fields", - "description": "aggregate fields of \"stampNftSupply\"", + "name": "stampNftContractType_aggregate_fields", + "description": "aggregate fields of \"stampNftContractType\"", "fields": [ - { - "name": "avg", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "stampNftSupply_avg_fields", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "count", "description": null, @@ -166565,7 +167292,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftSupply_select_column", + "name": "stampNftContractType_select_column", "ofType": null } } @@ -166605,7 +167332,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNftSupply_max_fields", + "name": "stampNftContractType_max_fields", "ofType": null }, "isDeprecated": false, @@ -166617,126 +167344,7 @@ "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", + "name": "stampNftContractType_min_fields", "ofType": null }, "isDeprecated": false, @@ -166750,8 +167358,8 @@ }, { "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'.", + "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": [ { @@ -166765,7 +167373,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null } } @@ -166779,7 +167387,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -166797,7 +167405,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null } } @@ -166807,47 +167415,68 @@ "deprecationReason": null }, { - "name": "amount", + "name": "value", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "Int_comparison_exp", + "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": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": null, + "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": "contractAddress", + "name": "SHOPIFY_PURCHASE_COMPLETED", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null - }, - "defaultValue": 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": "created_at", + "name": "_eq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "ENUM", + "name": "stampNftContractType_enum", "ofType": null }, "defaultValue": null, @@ -166855,23 +167484,31 @@ "deprecationReason": null }, { - "name": "currentOwnerAddress", + "name": "_in", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", - "ofType": null + "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": "error", + "name": "_is_null", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -166879,11 +167516,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "_neq", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "uuid_comparison_exp", + "kind": "ENUM", + "name": "stampNftContractType_enum", "ofType": null }, "defaultValue": null, @@ -166891,106 +167528,20 @@ "deprecationReason": null }, { - "name": "lastNftTransferId", + "name": "_nin", "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 + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "stampNftContractType_enum", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -167003,73 +167554,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_insert_input", - "description": "input type for inserting data into table \"stampNftSupply\"", + "name": "stampNftContractType_insert_input", + "description": "input type for inserting data into table \"stampNftContractType\"", "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, + "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", @@ -167078,66 +167569,6 @@ "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, @@ -167146,72 +167577,12 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_max_fields", + "name": "stampNftContractType_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, + "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", @@ -167220,54 +167591,6 @@ }, "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, @@ -167277,72 +167600,12 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_min_fields", + "name": "stampNftContractType_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, + "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", @@ -167351,54 +167614,6 @@ }, "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, @@ -167408,8 +167623,8 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_mutation_response", - "description": "response of any mutation on the table \"stampNftSupply\"", + "name": "stampNftContractType_mutation_response", + "description": "response of any mutation on the table \"stampNftContractType\"", "fields": [ { "name": "affected_rows", @@ -167442,7 +167657,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNftSupply", + "name": "stampNftContractType", "ofType": null } } @@ -167459,8 +167674,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_on_conflict", - "description": "on_conflict condition type for table \"stampNftSupply\"", + "name": "stampNftContractType_on_conflict", + "description": "on_conflict condition type for table \"stampNftContractType\"", "fields": null, "inputFields": [ { @@ -167471,7 +167686,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftSupply_constraint", + "name": "stampNftContractType_constraint", "ofType": null } }, @@ -167493,7 +167708,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNftSupply_update_column", + "name": "stampNftContractType_update_column", "ofType": null } } @@ -167508,7 +167723,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", + "name": "stampNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -167522,12 +167737,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_order_by", - "description": "Ordering options when selecting data from \"stampNftSupply\".", + "name": "stampNftContractType_order_by", + "description": "Ordering options when selecting data from \"stampNftContractType\".", "fields": null, "inputFields": [ { - "name": "amount", + "name": "value", "description": null, "type": { "kind": "ENUM", @@ -167537,85 +167752,170 @@ "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": "chainId", - "description": null, + "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": "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": "stampNftContractType_select_column", + "description": "select columns of table \"stampNftContractType\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "contractAddress", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "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": "created_at", - "description": null, + "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": "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": "stampNftContractType_stream_cursor_input", + "description": "Streaming cursor of the table \"stampNftContractType\"", + "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": "stampNftContractType_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": "stampNftContractType_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": "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": "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": "stampNftContractType_update_column", + "description": "update columns of table \"stampNftContractType\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "lastNftTransferId", - "description": null, + "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": "ENUM", - "name": "order_by", + "kind": "INPUT_OBJECT", + "name": "stampNftContractType_set_input", "ofType": null }, "defaultValue": null, @@ -167623,144 +167923,327 @@ "deprecationReason": null }, { - "name": "status", - "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": "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": "tokenId", + "name": "aggregate", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "order_by", + "kind": "OBJECT", + "name": "stampNftContract_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "nodes", "description": null, + "args": [], "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": "stampNftContract", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_pk_columns_input", - "description": "primary key columns input for table: stampNftSupply", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "stampNftContract_aggregate_fields", + "description": "aggregate fields of \"stampNftContract\"", + "fields": [ { - "name": "id", + "name": "count", "description": null, + "args": [ + { + "name": "columns", + "description": null, + "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": "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": "uuid", + "name": "Int", "ofType": null } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "max", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "stampNftContract_max_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "min", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "stampNftContract_min_fields", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "stampNftSupply_select_column", - "description": "select columns of table \"stampNftSupply\"", + "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": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "amount", - "description": "column name", + "name": "_and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stampNftContract_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "chainId", - "description": "column name", + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "stampNftContract_bool_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "contractAddress", - "description": "column name", + "name": "_or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stampNftContract_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": "column name", + "name": "campaignId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "currentOwnerAddress", - "description": "column name", + "name": "chainId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "error", - "description": "column name", + "name": "contractAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "column name", + "name": "created_at", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "lastNftTransferId", - "description": "column name", + "name": "id", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", - "description": "column name", + "name": "organizerId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", - "description": "column name", + "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": "column name", + "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_pkey", + "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\"", "isDeprecated": false, "deprecationReason": null } @@ -167769,16 +168252,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_set_input", - "description": "input type for updating data in table \"stampNftSupply\"", + "name": "stampNftContract_insert_input", + "description": "input type for inserting data into table \"stampNftContract\"", "fields": null, "inputFields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -167787,7 +168270,7 @@ }, { "name": "chainId", - "description": null, + "description": "The identifier of the blockchain network where the contract is deployed.", "type": { "kind": "SCALAR", "name": "String", @@ -167799,7 +168282,7 @@ }, { "name": "contractAddress", - "description": null, + "description": "The blockchain address of the stamp NFT contract.", "type": { "kind": "SCALAR", "name": "String", @@ -167821,30 +168304,6 @@ "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, @@ -167858,11 +168317,11 @@ "deprecationReason": null }, { - "name": "lastNftTransferId", - "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", + "name": "organizerId", + "description": null, "type": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null }, "defaultValue": null, @@ -167870,23 +168329,11 @@ "deprecationReason": null }, { - "name": "status", - "description": null, + "name": "type", + "description": "The type of marketing campaign the contract is associated with, e.g., SHOPIFY_PURCHASE_COMPLETED.", "type": { "kind": "ENUM", - "name": "nftStatus_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "bigint", + "name": "stampNftContractType_enum", "ofType": null }, "defaultValue": null, @@ -167912,63 +168359,88 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_stddev_fields", - "description": "aggregate stddev on columns", + "name": "stampNftContract_max_fields", + "description": "aggregate max on columns", "fields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", - "description": null, + "name": "chainId", + "description": "The identifier of the blockchain network where the contract is deployed.", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "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": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "contractAddress", + "description": "The blockchain address of the stamp NFT contract.", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "name": "created_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "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, @@ -167982,28 +168454,88 @@ }, { "kind": "OBJECT", - "name": "stampNftSupply_stddev_samp_fields", - "description": "aggregate stddev_samp on columns", + "name": "stampNftContract_min_fields", + "description": "aggregate min on columns", "fields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "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": "Float", + "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, @@ -168016,92 +168548,131 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_stream_cursor_input", - "description": "Streaming cursor of the table \"stampNftSupply\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "stampNftContract_mutation_response", + "description": "response of any mutation on the table \"stampNftContract\"", + "fields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "affected_rows", + "description": "number of rows affected by the mutation", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_stream_cursor_value_input", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ordering", - "description": "cursor ordering", + "name": "returning", + "description": "data from the rows affected by the mutation", + "args": [], "type": { - "kind": "ENUM", - "name": "cursor_ordering", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "stampNftContract", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "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", + "name": "stampNftContract_on_conflict", + "description": "on_conflict condition type for table \"stampNftContract\"", "fields": null, "inputFields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", + "name": "constraint", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "stampNftContract_constraint", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "chainId", + "name": "update_columns", "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": "ENUM", + "name": "stampNftContract_update_column", + "ofType": null + } + } + } }, - "defaultValue": null, + "defaultValue": "[]", "isDeprecated": false, "deprecationReason": null }, { - "name": "contractAddress", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "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": "created_at", + "name": "campaignId", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168109,11 +168680,11 @@ "deprecationReason": null }, { - "name": "currentOwnerAddress", - "description": "The blockchain address of the current owner of the token.", + "name": "chainId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168121,11 +168692,11 @@ "deprecationReason": null }, { - "name": "error", + "name": "contractAddress", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168133,11 +168704,11 @@ "deprecationReason": null }, { - "name": "id", + "name": "created_at", "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168145,11 +168716,11 @@ "deprecationReason": null }, { - "name": "lastNftTransferId", - "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", + "name": "id", + "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168157,11 +168728,11 @@ "deprecationReason": null }, { - "name": "status", + "name": "organizerId", "description": null, "type": { "kind": "ENUM", - "name": "nftStatus_enum", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168169,11 +168740,11 @@ "deprecationReason": null }, { - "name": "tokenId", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168184,8 +168755,8 @@ "name": "updated_at", "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "order_by", "ofType": null }, "defaultValue": null, @@ -168198,50 +168769,58 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "stampNftSupply_sum_fields", - "description": "aggregate sum on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "stampNftContract_pk_columns_input", + "description": "primary key columns input for table: stampNftContract", + "fields": null, + "inputFields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", - "args": [], + "name": "chainId", + "description": "The identifier of the blockchain network where the contract is deployed.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", - "description": null, - "args": [], + "name": "contractAddress", + "description": "The blockchain address of the stamp NFT contract.", "type": { - "kind": "SCALAR", - "name": "bigint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "stampNftSupply_update_column", - "description": "update columns of table \"stampNftSupply\"", + "name": "stampNftContract_select_column", + "description": "select columns of table \"stampNftContract\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "amount", + "name": "campaignId", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -168264,18 +168843,6 @@ "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", @@ -168283,19 +168850,13 @@ "deprecationReason": null }, { - "name": "lastNftTransferId", - "description": "column name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", + "name": "organizerId", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "name": "type", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -168311,16 +168872,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNftSupply_updates", - "description": null, + "name": "stampNftContract_set_input", + "description": "input type for updating data in table \"stampNftContract\"", "fields": null, "inputFields": [ { - "name": "_inc", - "description": "increments the numeric columns with given value of the filtered values", + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "type": { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_inc_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -168328,11 +168889,11 @@ "deprecationReason": null }, { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "chainId", + "description": "The identifier of the blockchain network where the contract is deployed.", "type": { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_set_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -168340,155 +168901,525 @@ "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "name": "contractAddress", + "description": "The blockchain address of the stamp NFT contract.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "stampNftSupply_bool_exp", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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": "amount", - "description": "The quantity of the token held by the current owner.", - "args": [], + "name": "created_at", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "timestamptz", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "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": "stampNftSupply_var_samp_fields", - "description": "aggregate var_samp on columns", - "fields": [ + }, { - "name": "amount", - "description": "The quantity of the token held by the current owner.", - "args": [], + "name": "organizerId", + "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "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, - "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": "OBJECT", - "name": "stampNftSupply_variance_fields", - "description": "aggregate variance on columns", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "stampNftContract_stream_cursor_input", + "description": "Streaming cursor of the table \"stampNftContract\"", + "fields": null, + "inputFields": [ { - "name": "amount", - "description": "The quantity of the token held by the current owner.", - "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": "stampNftContract_stream_cursor_value_input", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", - "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 } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "stampNft_aggregate", - "description": "aggregated selection of \"stampNft\"", - "fields": [ + "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": "aggregate", - "description": null, - "args": [], + "name": "campaignId", + "description": "A unique identifier for the marketing campaign associated with this contract.", "type": { - "kind": "OBJECT", - "name": "stampNft_aggregate_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodes", - "description": null, - "args": [], + "name": "chainId", + "description": "The identifier of the blockchain network where the contract is deployed.", "type": { - "kind": "NON_NULL", - "name": null, + "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": "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": "ENUM", + "name": "stampNftContract_update_column", + "description": "update columns of table \"stampNftContract\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "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": "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": "_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 + } + ], + "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": "amount", + "description": "The quantity of the token held by the current owner.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "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": "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": "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, "ofType": { "kind": "LIST", "name": null, @@ -168497,7 +169428,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNft", + "name": "stampNftSupply", "ofType": null } } @@ -168514,8 +169445,8 @@ }, { "kind": "OBJECT", - "name": "stampNft_aggregate_fields", - "description": "aggregate fields of \"stampNft\"", + "name": "stampNftSupply_aggregate_fields", + "description": "aggregate fields of \"stampNftSupply\"", "fields": [ { "name": "avg", @@ -168523,7 +169454,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_avg_fields", + "name": "stampNftSupply_avg_fields", "ofType": null }, "isDeprecated": false, @@ -168544,7 +169475,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNft_select_column", + "name": "stampNftSupply_select_column", "ofType": null } } @@ -168584,7 +169515,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_max_fields", + "name": "stampNftSupply_max_fields", "ofType": null }, "isDeprecated": false, @@ -168596,7 +169527,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_min_fields", + "name": "stampNftSupply_min_fields", "ofType": null }, "isDeprecated": false, @@ -168608,7 +169539,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_stddev_fields", + "name": "stampNftSupply_stddev_fields", "ofType": null }, "isDeprecated": false, @@ -168620,7 +169551,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_stddev_pop_fields", + "name": "stampNftSupply_stddev_pop_fields", "ofType": null }, "isDeprecated": false, @@ -168632,7 +169563,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_stddev_samp_fields", + "name": "stampNftSupply_stddev_samp_fields", "ofType": null }, "isDeprecated": false, @@ -168644,7 +169575,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_sum_fields", + "name": "stampNftSupply_sum_fields", "ofType": null }, "isDeprecated": false, @@ -168656,7 +169587,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_var_pop_fields", + "name": "stampNftSupply_var_pop_fields", "ofType": null }, "isDeprecated": false, @@ -168668,7 +169599,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_var_samp_fields", + "name": "stampNftSupply_var_samp_fields", "ofType": null }, "isDeprecated": false, @@ -168680,7 +169611,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stampNft_variance_fields", + "name": "stampNftSupply_variance_fields", "ofType": null }, "isDeprecated": false, @@ -168693,36 +169624,25 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stampNft_append_input", - "description": "append existing jsonb value of filtered columns with new jsonb value", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "stampNftSupply_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "amount", + "description": "The quantity of the token held by the current owner.", + "args": [], "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "Float", "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.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -168740,8 +169660,8 @@ }, { "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'.", + "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": [ { @@ -168755,7 +169675,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null } } @@ -168769,7 +169689,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -168787,7 +169707,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null } } @@ -168796,6 +169716,18 @@ "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, @@ -168832,6 +169764,30 @@ "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, @@ -168845,11 +169801,11 @@ "deprecationReason": null }, { - "name": "metadata", + "name": "lastNftTransferId", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "jsonb_comparison_exp", + "name": "uuid_comparison_exp", "ofType": null }, "defaultValue": null, @@ -168857,11 +169813,11 @@ "deprecationReason": null }, { - "name": "tokenId", + "name": "status", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "bigint_comparison_exp", + "name": "nftStatus_enum_comparison_exp", "ofType": null }, "defaultValue": null, @@ -168869,11 +169825,11 @@ "deprecationReason": null }, { - "name": "tokenUri", + "name": "tokenId", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "name": "bigint_comparison_exp", "ofType": null }, "defaultValue": null, @@ -168899,21 +169855,21 @@ }, { "kind": "ENUM", - "name": "stampNft_constraint", - "description": "unique or primary key constraints on table \"stampNft\"", + "name": "stampNftSupply_constraint", + "description": "unique or primary key constraints on table \"stampNftSupply\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "stampNft_contractAddress_tokenId_chainId_key", - "description": "unique or primary key constraint on columns \"chainId\", \"contractAddress\", \"tokenId\"", + "name": "stampNftSupply_pkey", + "description": "unique or primary key constraint on columns \"id\"", "isDeprecated": false, "deprecationReason": null }, { - "name": "stampNft_pkey", - "description": "unique or primary key constraint on columns \"id\"", + "name": "stampNftSupply_tokenId_contractAddress_chainId_currentOwner_key", + "description": "unique or primary key constraint on columns \"currentOwnerAddress\", \"chainId\", \"contractAddress\", \"tokenId\"", "isDeprecated": false, "deprecationReason": null } @@ -168922,47 +169878,28 @@ }, { "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)", + "name": "stampNftSupply_inc_input", + "description": "input type for incrementing numeric columns in table \"stampNftSupply\"", "fields": null, "inputFields": [ { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "amount", + "description": "The quantity of the token held by the current owner.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": 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.", + "name": "tokenId", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -168976,58 +169913,36 @@ }, { "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", + "name": "stampNftSupply_insert_input", + "description": "input type for inserting data into table \"stampNftSupply\"", "fields": null, "inputFields": [ { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "amount", + "description": "The quantity of the token held by the current owner.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "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.", + "name": "chainId", + "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": "stampNft_insert_input", - "description": "input type for inserting data into table \"stampNft\"", - "fields": null, - "inputFields": [ + }, { - "name": "chainId", + "name": "contractAddress", "description": null, "type": { "kind": "SCALAR", @@ -169039,8 +169954,20 @@ "deprecationReason": null }, { - "name": "contractAddress", + "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", @@ -169051,11 +169978,11 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "error", "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -169075,11 +170002,11 @@ "deprecationReason": null }, { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "lastNftTransferId", + "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -169087,11 +170014,11 @@ "deprecationReason": null }, { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "nftStatus_enum", "ofType": null }, "defaultValue": null, @@ -169099,11 +170026,11 @@ "deprecationReason": null }, { - "name": "tokenUri", - "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", + "name": "tokenId", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -169129,9 +170056,21 @@ }, { "kind": "OBJECT", - "name": "stampNft_max_fields", + "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, @@ -169168,6 +170107,30 @@ "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, @@ -169181,24 +170144,24 @@ "deprecationReason": null }, { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "lastNftTransferId", + "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "uuid", "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.", + "name": "tokenId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "isDeprecated": false, @@ -169224,9 +170187,21 @@ }, { "kind": "OBJECT", - "name": "stampNft_min_fields", + "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, @@ -169263,6 +170238,30 @@ "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, @@ -169276,24 +170275,24 @@ "deprecationReason": null }, { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "lastNftTransferId", + "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", "args": [], "type": { "kind": "SCALAR", - "name": "bigint", + "name": "uuid", "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.", + "name": "tokenId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "isDeprecated": false, @@ -169319,8 +170318,8 @@ }, { "kind": "OBJECT", - "name": "stampNft_mutation_response", - "description": "response of any mutation on the table \"stampNft\"", + "name": "stampNftSupply_mutation_response", + "description": "response of any mutation on the table \"stampNftSupply\"", "fields": [ { "name": "affected_rows", @@ -169353,7 +170352,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stampNft", + "name": "stampNftSupply", "ofType": null } } @@ -169370,8 +170369,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_on_conflict", - "description": "on_conflict condition type for table \"stampNft\"", + "name": "stampNftSupply_on_conflict", + "description": "on_conflict condition type for table \"stampNftSupply\"", "fields": null, "inputFields": [ { @@ -169382,7 +170381,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNft_constraint", + "name": "stampNftSupply_constraint", "ofType": null } }, @@ -169404,7 +170403,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stampNft_update_column", + "name": "stampNftSupply_update_column", "ofType": null } } @@ -169419,7 +170418,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -169433,10 +170432,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_order_by", - "description": "Ordering options when selecting data from \"stampNft\".", + "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, @@ -169473,6 +170484,30 @@ "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, @@ -169486,7 +170521,7 @@ "deprecationReason": null }, { - "name": "metadata", + "name": "lastNftTransferId", "description": null, "type": { "kind": "ENUM", @@ -169498,7 +170533,7 @@ "deprecationReason": null }, { - "name": "tokenId", + "name": "status", "description": null, "type": { "kind": "ENUM", @@ -169510,7 +170545,7 @@ "deprecationReason": null }, { - "name": "tokenUri", + "name": "tokenId", "description": null, "type": { "kind": "ENUM", @@ -169540,8 +170575,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_pk_columns_input", - "description": "primary key columns input for table: stampNft", + "name": "stampNftSupply_pk_columns_input", + "description": "primary key columns input for table: stampNftSupply", "fields": null, "inputFields": [ { @@ -169565,37 +170600,20 @@ "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\"", + "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": "chainId", "description": "column name", @@ -169614,6 +170632,18 @@ "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", @@ -169621,19 +170651,19 @@ "deprecationReason": null }, { - "name": "metadata", + "name": "lastNftTransferId", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "name": "status", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenUri", + "name": "tokenId", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -169649,10 +170679,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_set_input", - "description": "input type for updating data in table \"stampNft\"", + "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": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "chainId", "description": null, @@ -169689,6 +170731,30 @@ "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, @@ -169702,11 +170768,11 @@ "deprecationReason": null }, { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "lastNftTransferId", + "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -169714,11 +170780,11 @@ "deprecationReason": null }, { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "nftStatus_enum", "ofType": null }, "defaultValue": null, @@ -169726,11 +170792,11 @@ "deprecationReason": null }, { - "name": "tokenUri", - "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", + "name": "tokenId", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -169756,12 +170822,24 @@ }, { "kind": "OBJECT", - "name": "stampNft_stddev_fields", + "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": "tokenId", - "description": "The unique identifier of the token within its contract.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -169779,12 +170857,24 @@ }, { "kind": "OBJECT", - "name": "stampNft_stddev_pop_fields", + "name": "stampNftSupply_stddev_pop_fields", "description": "aggregate stddev_pop 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": "The unique identifier of the token within its contract.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -169802,12 +170892,24 @@ }, { "kind": "OBJECT", - "name": "stampNft_stddev_samp_fields", + "name": "stampNftSupply_stddev_samp_fields", "description": "aggregate stddev_samp 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": "The unique identifier of the token within its contract.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -169825,8 +170927,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_stream_cursor_input", - "description": "Streaming cursor of the table \"stampNft\"", + "name": "stampNftSupply_stream_cursor_input", + "description": "Streaming cursor of the table \"stampNftSupply\"", "fields": null, "inputFields": [ { @@ -169837,7 +170939,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_stream_cursor_value_input", + "name": "stampNftSupply_stream_cursor_value_input", "ofType": null } }, @@ -169864,10 +170966,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_stream_cursor_value_input", + "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": "chainId", "description": null, @@ -169904,6 +171018,30 @@ "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, @@ -169917,11 +171055,11 @@ "deprecationReason": null }, { - "name": "metadata", - "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", + "name": "lastNftTransferId", + "description": "Reference to the last transfer event for this token, providing a link to detailed transfer information.", "type": { "kind": "SCALAR", - "name": "jsonb", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -169929,11 +171067,11 @@ "deprecationReason": null }, { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "status", + "description": null, "type": { - "kind": "SCALAR", - "name": "bigint", + "kind": "ENUM", + "name": "nftStatus_enum", "ofType": null }, "defaultValue": null, @@ -169941,11 +171079,11 @@ "deprecationReason": null }, { - "name": "tokenUri", - "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", + "name": "tokenId", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -169971,12 +171109,24 @@ }, { "kind": "OBJECT", - "name": "stampNft_sum_fields", + "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": "tokenId", - "description": "The unique identifier of the token within its contract.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -169994,12 +171144,18 @@ }, { "kind": "ENUM", - "name": "stampNft_update_column", - "description": "update columns of table \"stampNft\"", + "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": "chainId", "description": "column name", @@ -170018,6 +171174,18 @@ "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", @@ -170025,19 +171193,19 @@ "deprecationReason": null }, { - "name": "metadata", + "name": "lastNftTransferId", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenId", + "name": "status", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tokenUri", + "name": "tokenId", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -170053,76 +171221,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stampNft_updates", + "name": "stampNftSupply_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": "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", + "name": "stampNftSupply_inc_input", "ofType": null }, "defaultValue": null, @@ -170134,7 +171242,7 @@ "description": "sets the columns of the filtered rows to the given values", "type": { "kind": "INPUT_OBJECT", - "name": "stampNft_set_input", + "name": "stampNftSupply_set_input", "ofType": null }, "defaultValue": null, @@ -170149,7 +171257,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stampNft_bool_exp", + "name": "stampNftSupply_bool_exp", "ofType": null } }, @@ -170164,12 +171272,24 @@ }, { "kind": "OBJECT", - "name": "stampNft_var_pop_fields", + "name": "stampNftSupply_var_pop_fields", "description": "aggregate var_pop 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": "The unique identifier of the token within its contract.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -170187,12 +171307,12 @@ }, { "kind": "OBJECT", - "name": "stampNft_var_samp_fields", + "name": "stampNftSupply_var_samp_fields", "description": "aggregate var_samp on columns", "fields": [ { - "name": "tokenId", - "description": "The unique identifier of the token within its contract.", + "name": "amount", + "description": "The quantity of the token held by the current owner.", "args": [], "type": { "kind": "SCALAR", @@ -170201,21 +171321,10 @@ }, "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.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -170233,112 +171342,29 @@ }, { "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.", + "name": "stampNftSupply_variance_fields", + "description": "aggregate variance on columns", "fields": [ { - "name": "created_at", - "description": "Timestamp automatically set when the row is created.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": 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": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "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.", + "name": "amount", + "description": "The quantity of the token held by the current owner.", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "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 - } - }, - "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.", + "name": "tokenId", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -170351,8 +171377,8 @@ }, { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_aggregate", - "description": "aggregated selection of \"stripeCheckoutSessionType\"", + "name": "stampNft_aggregate", + "description": "aggregated selection of \"stampNft\"", "fields": [ { "name": "aggregate", @@ -170360,7 +171386,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_aggregate_fields", + "name": "stampNft_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -170381,7 +171407,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType", + "name": "stampNft", "ofType": null } } @@ -170398,9 +171424,21 @@ }, { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_aggregate_fields", - "description": "aggregate fields of \"stripeCheckoutSessionType\"", + "name": "stampNft_aggregate_fields", + "description": "aggregate fields of \"stampNft\"", "fields": [ + { + "name": "avg", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "stampNft_avg_fields", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "count", "description": null, @@ -170416,7 +171454,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSessionType_select_column", + "name": "stampNft_select_column", "ofType": null } } @@ -170456,7 +171494,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_max_fields", + "name": "stampNft_max_fields", "ofType": null }, "isDeprecated": false, @@ -170468,147 +171506,156 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCheckoutSessionType_min_fields", + "name": "stampNft_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", + "name": "stddev", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_bool_exp", - "ofType": null - } - } + "kind": "OBJECT", + "name": "stampNft_stddev_fields", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "_not", + "name": "stddev_pop", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_bool_exp", + "kind": "OBJECT", + "name": "stampNft_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": "stripeCheckoutSessionType_bool_exp", - "ofType": null - } - } + "kind": "OBJECT", + "name": "stampNft_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": "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 }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_constraint", - "description": "unique or primary key constraints on table \"stripeCheckoutSessionType\"", + "kind": "INPUT_OBJECT", + "name": "stampNft_append_input", + "description": "append existing jsonb value of filtered columns with new jsonb value", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "stripeCheckoutSessionType_pkey", - "description": "unique or primary key constraint on columns \"value\"", + "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": "stripeCheckoutSessionType_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "stampNft_avg_fields", + "description": "aggregate avg on columns", + "fields": [ { - "name": "event_pass_order", - "description": 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": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_enum_comparison_exp", - "description": "Boolean expression to compare columns of type \"stripeCheckoutSessionType_enum\". All fields are combined with logical 'AND'.", + "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": "_eq", - "description": null, - "type": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_in", + "name": "_and", "description": null, "type": { "kind": "LIST", @@ -170617,8 +171664,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "kind": "INPUT_OBJECT", + "name": "stampNft_bool_exp", "ofType": null } } @@ -170628,23 +171675,11 @@ "deprecationReason": null }, { - "name": "_is_null", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_neq", + "name": "_not", "description": null, "type": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "kind": "INPUT_OBJECT", + "name": "stampNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -170652,7 +171687,7 @@ "deprecationReason": null }, { - "name": "_nin", + "name": "_or", "description": null, "type": { "kind": "LIST", @@ -170661,8 +171696,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "kind": "INPUT_OBJECT", + "name": "stampNft_bool_exp", "ofType": null } } @@ -170670,184 +171705,97 @@ "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.", + "name": "chainId", + "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": "stripeCheckoutSessionType_max_fields", - "description": "aggregate max on columns", - "fields": [ + }, { - "name": "value", - "description": "Type value.", - "args": [], + "name": "contractAddress", + "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": "stripeCheckoutSessionType_min_fields", - "description": "aggregate min on columns", - "fields": [ + }, { - "name": "value", - "description": "Type value.", - "args": [], + "name": "created_at", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "timestamptz_comparison_exp", "ofType": null }, + "defaultValue": 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": [], + "name": "id", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "uuid_comparison_exp", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "returning", - "description": "data from the rows affected by the mutation", - "args": [], + "name": "metadata", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "stripeCheckoutSessionType", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "jsonb_comparison_exp", + "ofType": null }, + "defaultValue": 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", + "name": "tokenId", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_constraint", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "bigint_comparison_exp", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update_columns", + "name": "tokenUri", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_update_column", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "String_comparison_exp", + "ofType": null }, - "defaultValue": "[]", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "updated_at", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_bool_exp", + "name": "timestamptz_comparison_exp", "ofType": null }, "defaultValue": null, @@ -170860,44 +171808,48 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_order_by", - "description": "Ordering options when selecting data from \"stripeCheckoutSessionType\".", + "kind": "ENUM", + "name": "stampNft_constraint", + "description": "unique or primary key constraints on table \"stampNft\"", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "value", - "description": null, - "type": { - "kind": "ENUM", - "name": "order_by", - "ofType": null - }, - "defaultValue": null, + "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 } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_pk_columns_input", - "description": "primary key columns input for table: stripeCheckoutSessionType", + "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": "value", - "description": "Type value.", + "name": "metadata", + "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -170909,35 +171861,18 @@ "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\"", + "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": "value", - "description": "Type value.", + "name": "metadata", + "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -170951,32 +171886,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_stream_cursor_input", - "description": "Streaming cursor of the table \"stripeCheckoutSessionType\"", + "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": "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", + "name": "metadata", + "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", "type": { - "kind": "ENUM", - "name": "cursor_ordering", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -170990,16 +171909,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_stream_cursor_value_input", - "description": "Initial value of the column from where the streaming should start", + "name": "stampNft_inc_input", + "description": "input type for incrementing numeric columns in table \"stampNft\"", "fields": null, "inputFields": [ { - "name": "value", - "description": "Type value.", + "name": "tokenId", + "description": "The unique identifier of the token within its contract.", "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -171011,35 +171930,18 @@ "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, + "name": "stampNft_insert_input", + "description": "input type for inserting data into table \"stampNft\"", "fields": null, "inputFields": [ { - "name": "_set", - "description": "sets the columns of the filtered rows to the given values", + "name": "chainId", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_set_input", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -171047,189 +171949,35 @@ "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, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "stripeCheckoutSession", - "ofType": null - } - } - } - }, - "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, - "args": [ - { - "name": "columns", - "description": null, - "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": "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": "contractAddress", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "stripeCheckoutSession_max_fields", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "created_at", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "stripeCheckoutSession_min_fields", + "kind": "SCALAR", + "name": "timestamptz", "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 }, { - "name": "_not", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_bool_exp", + "kind": "SCALAR", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -171237,31 +171985,23 @@ "deprecationReason": null }, { - "name": "_or", - "description": null, + "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": "INPUT_OBJECT", - "name": "stripeCheckoutSession_bool_exp", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": null, + "name": "tokenId", + "description": "The unique identifier of the token within its contract.", "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "bigint", "ofType": null }, "defaultValue": null, @@ -171269,11 +172009,11 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": null, + "name": "tokenUri", + "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -171281,154 +172021,125 @@ "deprecationReason": null }, { - "name": "stripeSessionId", + "name": "updated_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "String_comparison_exp", + "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": "type", + "name": "chainId", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSessionType_enum_comparison_exp", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "contractAddress", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "timestamptz_comparison_exp", + "kind": "SCALAR", + "name": "String", "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.", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "timestamptz", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Stripe Customer ID referencing to the stripeCustomer table.", + "name": "id", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "name": "tokenId", + "description": "The unique identifier of the token within its contract.", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "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": "tokenUri", + "description": "URI pointing to the token metadata, which may include details such as the item associated with the token.", + "args": [], "type": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "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": "stripeCheckoutSession_max_fields", - "description": "aggregate max on columns", + "name": "stampNft_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.", + "name": "chainId", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -171439,8 +172150,8 @@ "deprecationReason": null }, { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "name": "contractAddress", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -171451,8 +172162,8 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "name": "created_at", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -171461,45 +172172,34 @@ }, "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.", + "name": "id", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "uuid", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Stripe Customer ID referencing to the stripeCustomer table.", + "name": "tokenId", + "description": "The unique identifier of the token within its contract.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "bigint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "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", @@ -171511,7 +172211,7 @@ }, { "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -171529,8 +172229,8 @@ }, { "kind": "OBJECT", - "name": "stripeCheckoutSession_mutation_response", - "description": "response of any mutation on the table \"stripeCheckoutSession\"", + "name": "stampNft_mutation_response", + "description": "response of any mutation on the table \"stampNft\"", "fields": [ { "name": "affected_rows", @@ -171563,7 +172263,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stripeCheckoutSession", + "name": "stampNft", "ofType": null } } @@ -171580,8 +172280,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_on_conflict", - "description": "on_conflict condition type for table \"stripeCheckoutSession\"", + "name": "stampNft_on_conflict", + "description": "on_conflict condition type for table \"stampNft\"", "fields": null, "inputFields": [ { @@ -171592,7 +172292,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSession_constraint", + "name": "stampNft_constraint", "ofType": null } }, @@ -171614,7 +172314,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCheckoutSession_update_column", + "name": "stampNft_update_column", "ofType": null } } @@ -171629,7 +172329,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_bool_exp", + "name": "stampNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -171643,10 +172343,34 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_order_by", - "description": "Ordering options when selecting data from \"stripeCheckoutSession\".", + "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, @@ -171660,7 +172384,7 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", + "name": "id", "description": null, "type": { "kind": "ENUM", @@ -171672,7 +172396,7 @@ "deprecationReason": null }, { - "name": "stripeSessionId", + "name": "metadata", "description": null, "type": { "kind": "ENUM", @@ -171684,7 +172408,19 @@ "deprecationReason": null }, { - "name": "type", + "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", @@ -171714,19 +172450,19 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_pk_columns_input", - "description": "primary key columns input for table: stripeCheckoutSession", + "name": "stampNft_pk_columns_input", + "description": "primary key columns input for table: stampNft", "fields": null, "inputFields": [ { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "name": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -171739,14 +172475,49 @@ "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": "stripeCheckoutSession_select_column", - "description": "select columns of table \"stripeCheckoutSession\"", + "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", @@ -171754,19 +172525,25 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeSessionId", + "name": "metadata", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "tokenId", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenUri", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -171782,16 +172559,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_set_input", - "description": "input type for updating data in table \"stripeCheckoutSession\"", + "name": "stampNft_set_input", + "description": "input type for updating data in table \"stampNft\"", "fields": null, "inputFields": [ { - "name": "created_at", - "description": "Timestamp automatically set when the row is created.", + "name": "chainId", + "description": null, "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "defaultValue": null, @@ -171799,8 +172576,8 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Stripe Customer ID referencing to the stripeCustomer table.", + "name": "contractAddress", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -171811,11 +172588,11 @@ "deprecationReason": null }, { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "name": "created_at", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null }, "defaultValue": null, @@ -171823,11 +172600,47 @@ "deprecationReason": null }, { - "name": "type", - "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.", + "name": "id", + "description": null, "type": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "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, @@ -171836,7 +172649,7 @@ }, { "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "description": null, "type": { "kind": "SCALAR", "name": "timestamptz", @@ -171851,10 +172664,79 @@ "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": "stripeCheckoutSession_stream_cursor_input", - "description": "Streaming cursor of the table \"stripeCheckoutSession\"", + "name": "stampNft_stream_cursor_input", + "description": "Streaming cursor of the table \"stampNft\"", "fields": null, "inputFields": [ { @@ -171865,7 +172747,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_stream_cursor_value_input", + "name": "stampNft_stream_cursor_value_input", "ofType": null } }, @@ -171892,13 +172774,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_stream_cursor_value_input", + "name": "stampNft_stream_cursor_value_input", "description": "Initial value of the column from where the streaming should start", "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": "Timestamp automatically set when the row is created.", + "description": null, "type": { "kind": "SCALAR", "name": "timestamptz", @@ -171909,11 +172815,11 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Stripe Customer ID referencing to the stripeCustomer table.", + "name": "id", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null }, "defaultValue": null, @@ -171921,11 +172827,11 @@ "deprecationReason": null }, { - "name": "stripeSessionId", - "description": "Unique identifier for the Stripe Checkout Session.", + "name": "metadata", + "description": "Structured metadata associated with the token, stored in a JSONB format for flexibility.", "type": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null }, "defaultValue": null, @@ -171933,11 +172839,23 @@ "deprecationReason": null }, { - "name": "type", - "description": "Type of the Stripe Checkout Session. Default is event_pass_order. References to the stripeCheckoutSessionType table.", + "name": "tokenId", + "description": "The unique identifier of the token within its contract.", "type": { - "kind": "ENUM", - "name": "stripeCheckoutSessionType_enum", + "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, @@ -171946,7 +172864,7 @@ }, { "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "description": null, "type": { "kind": "SCALAR", "name": "timestamptz", @@ -171961,14 +172879,49 @@ "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": "stripeCheckoutSession_update_column", - "description": "update columns of table \"stripeCheckoutSession\"", + "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": "contractAddress", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created_at", "description": "column name", @@ -171976,19 +172929,25 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", + "name": "id", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeSessionId", + "name": "metadata", "description": "column name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "tokenId", + "description": "column name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenUri", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -172004,16 +172963,88 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_updates", + "name": "stampNft_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": "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": "stripeCheckoutSession_set_input", + "name": "stampNft_set_input", "ofType": null }, "defaultValue": null, @@ -172028,7 +173059,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCheckoutSession_bool_exp", + "name": "stampNft_bool_exp", "ofType": null } }, @@ -172043,19 +173074,88 @@ }, { "kind": "OBJECT", - "name": "stripeCustomer", - "description": "Table to store Stripe Customer IDs for tracking user payment processes.", + "name": "stampNft_var_pop_fields", + "description": "aggregate var_pop on columns", "fields": [ { - "name": "accountId", - "description": "UUID referencing to the account ID in the existing accounts table.", + "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_var_samp_fields", + "description": "aggregate var_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": "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": "SCALAR", - "name": "uuid", + "name": "timestamptz", "ofType": null } }, @@ -172063,15 +173163,15 @@ "deprecationReason": null }, { - "name": "created_at", - "description": "Timestamp automatically set when the row is created.", + "name": "stripeCustomerId", + "description": "Stripe Customer ID referencing to the stripeCustomer table.", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null } }, @@ -172079,8 +173179,8 @@ "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", + "name": "stripeSessionId", + "description": "Unique identifier for the Stripe Checkout Session.", "args": [], "type": { "kind": "NON_NULL", @@ -172094,6 +173194,22 @@ "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": "ENUM", + "name": "stripeCheckoutSessionType_enum", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "updated_at", "description": "Timestamp automatically updated whenever the row changes.", @@ -172118,8 +173234,35 @@ }, { "kind": "OBJECT", - "name": "stripeCustomer_aggregate", - "description": "aggregated selection of \"stripeCustomer\"", + "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", + "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", @@ -172127,7 +173270,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCustomer_aggregate_fields", + "name": "stripeCheckoutSessionType_aggregate_fields", "ofType": null }, "isDeprecated": false, @@ -172148,7 +173291,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stripeCustomer", + "name": "stripeCheckoutSessionType", "ofType": null } } @@ -172165,8 +173308,8 @@ }, { "kind": "OBJECT", - "name": "stripeCustomer_aggregate_fields", - "description": "aggregate fields of \"stripeCustomer\"", + "name": "stripeCheckoutSessionType_aggregate_fields", + "description": "aggregate fields of \"stripeCheckoutSessionType\"", "fields": [ { "name": "count", @@ -172183,7 +173326,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCustomer_select_column", + "name": "stripeCheckoutSessionType_select_column", "ofType": null } } @@ -172223,7 +173366,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCustomer_max_fields", + "name": "stripeCheckoutSessionType_max_fields", "ofType": null }, "isDeprecated": false, @@ -172235,7 +173378,7 @@ "args": [], "type": { "kind": "OBJECT", - "name": "stripeCustomer_min_fields", + "name": "stripeCheckoutSessionType_min_fields", "ofType": null }, "isDeprecated": false, @@ -172249,8 +173392,8 @@ }, { "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'.", + "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": [ { @@ -172264,7 +173407,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_bool_exp", + "name": "stripeCheckoutSessionType_bool_exp", "ofType": null } } @@ -172278,7 +173421,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_bool_exp", + "name": "stripeCheckoutSessionType_bool_exp", "ofType": null }, "defaultValue": null, @@ -172296,7 +173439,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_bool_exp", + "name": "stripeCheckoutSessionType_bool_exp", "ofType": null } } @@ -172306,31 +173449,7 @@ "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", + "name": "value", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -172340,18 +173459,6 @@ "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, @@ -172360,15 +173467,32 @@ }, { "kind": "ENUM", - "name": "stripeCustomer_constraint", - "description": "unique or primary key constraints on table \"stripeCustomer\"", + "name": "stripeCheckoutSessionType_constraint", + "description": "unique or primary key constraints on table \"stripeCheckoutSessionType\"", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "stripeCustomer_pkey", - "description": "unique or primary key constraint on columns \"stripeCustomerId\"", + "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 } @@ -172377,16 +173501,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_insert_input", - "description": "input type for inserting data into table \"stripeCustomer\"", + "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": "accountId", - "description": "UUID referencing to the account ID in the existing accounts table.", + "name": "_eq", + "description": null, "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "ENUM", + "name": "stripeCheckoutSessionType_enum", "ofType": null }, "defaultValue": null, @@ -172394,23 +173518,31 @@ "deprecationReason": null }, { - "name": "created_at", - "description": "Timestamp automatically set when the row is 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": "stripeCheckoutSessionType_enum", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", + "name": "_is_null", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -172418,16 +173550,36 @@ "deprecationReason": null }, { - "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "name": "_neq", + "description": null, "type": { - "kind": "SCALAR", - "name": "timestamptz", + "kind": "ENUM", + "name": "stripeCheckoutSessionType_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": "stripeCheckoutSessionType_enum", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -172435,53 +173587,40 @@ "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 - }, + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSessionType_insert_input", + "description": "input type for inserting data into table \"stripeCheckoutSessionType\"", + "fields": null, + "inputFields": [ { - "name": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", - "args": [], + "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": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "name": "value", + "description": "Type value.", "args": [], "type": { "kind": "SCALAR", - "name": "timestamptz", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -172495,36 +173634,12 @@ }, { "kind": "OBJECT", - "name": "stripeCustomer_min_fields", + "name": "stripeCheckoutSessionType_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.", + "name": "value", + "description": "Type value.", "args": [], "type": { "kind": "SCALAR", @@ -172533,18 +173648,6 @@ }, "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, @@ -172554,8 +173657,8 @@ }, { "kind": "OBJECT", - "name": "stripeCustomer_mutation_response", - "description": "response of any mutation on the table \"stripeCustomer\"", + "name": "stripeCheckoutSessionType_mutation_response", + "description": "response of any mutation on the table \"stripeCheckoutSessionType\"", "fields": [ { "name": "affected_rows", @@ -172588,7 +173691,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "stripeCustomer", + "name": "stripeCheckoutSessionType", "ofType": null } } @@ -172605,47 +173708,8 @@ }, { "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\"", + "name": "stripeCheckoutSessionType_on_conflict", + "description": "on_conflict condition type for table \"stripeCheckoutSessionType\"", "fields": null, "inputFields": [ { @@ -172656,7 +173720,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCustomer_constraint", + "name": "stripeCheckoutSessionType_constraint", "ofType": null } }, @@ -172678,7 +173742,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "stripeCustomer_update_column", + "name": "stripeCheckoutSessionType_update_column", "ofType": null } } @@ -172693,7 +173757,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_bool_exp", + "name": "stripeCheckoutSessionType_bool_exp", "ofType": null }, "defaultValue": null, @@ -172707,12 +173771,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_order_by", - "description": "Ordering options when selecting data from \"stripeCustomer\".", + "name": "stripeCheckoutSessionType_order_by", + "description": "Ordering options when selecting data from \"stripeCheckoutSessionType\".", "fields": null, "inputFields": [ { - "name": "accountId", + "name": "value", "description": null, "type": { "kind": "ENUM", @@ -172722,37 +173786,107 @@ "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": "created_at", - "description": null, + "name": "value", + "description": "Type value.", "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": "stripeCheckoutSessionType_select_column", + "description": "select columns of table \"stripeCheckoutSessionType\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "stripeCustomerId", - "description": null, + "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": "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": "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": "updated_at", - "description": null, + "name": "ordering", + "description": "cursor ordering", "type": { "kind": "ENUM", - "name": "order_by", + "name": "cursor_ordering", "ofType": null }, "defaultValue": null, @@ -172766,21 +173900,17 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_pk_columns_input", - "description": "primary key columns input for table: stripeCustomer", + "name": "stripeCheckoutSessionType_stream_cursor_value_input", + "description": "Initial value of the column from where the streaming should start", "fields": null, "inputFields": [ { - "name": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", + "name": "value", + "description": "Type value.", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -172793,32 +173923,14 @@ }, { "kind": "ENUM", - "name": "stripeCustomer_select_column", - "description": "select columns of table \"stripeCustomer\"", + "name": "stripeCheckoutSessionType_update_column", + "description": "update columns of table \"stripeCheckoutSessionType\"", "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", + "name": "value", "description": "column name", "isDeprecated": false, "deprecationReason": null @@ -172828,16 +173940,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "stripeCustomer_set_input", - "description": "input type for updating data in table \"stripeCustomer\"", + "name": "stripeCheckoutSessionType_updates", + "description": null, "fields": null, "inputFields": [ { - "name": "accountId", - "description": "UUID referencing to the account ID in the existing accounts table.", + "name": "_set", + "description": "sets the columns of the filtered rows to the given values", "type": { - "kind": "SCALAR", - "name": "uuid", + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSessionType_set_input", "ofType": null }, "defaultValue": null, @@ -172845,226 +173957,2912 @@ "deprecationReason": null }, { - "name": "created_at", - "description": "Timestamp automatically set when the row is created.", + "name": "where", + "description": "filter the rows which have to be updated", "type": { - "kind": "SCALAR", - "name": "timestamptz", - "ofType": null + "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": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", + "name": "aggregate", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "stripeCheckoutSession_aggregate_fields", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "name": "nodes", + "description": null, + "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": "stripeCheckoutSession", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "stripeCustomer_stream_cursor_input", - "description": "Streaming cursor of the table \"stripeCustomer\"", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "stripeCheckoutSession_aggregate_fields", + "description": "aggregate fields of \"stripeCheckoutSession\"", + "fields": [ { - "name": "initial_value", - "description": "Stream column input with initial value", + "name": "count", + "description": null, + "args": [ + { + "name": "columns", + "description": null, + "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": "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": "stripeCheckoutSession_max_fields", + "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": { + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSession_bool_exp", + "ofType": 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", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCheckoutSession_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": "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, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "stripeCheckoutSession", + "ofType": null + } + } + } + }, + "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, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "stripeCheckoutSession_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": "stripeCheckoutSession_update_column", + "ofType": 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", + "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": "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": "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.", + "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": "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 + } + ], + "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.", + "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": "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", + "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 + } + ], + "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": "Timestamp automatically set when the row is created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stripeCustomerId", + "description": "Unique identifier for the Stripe Customer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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 + } + }, + "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": [], + "type": { + "kind": "OBJECT", + "name": "stripeCustomer_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": "stripeCustomer", + "ofType": null + } + } + } + }, + "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, + "args": [ + { + "name": "columns", + "description": null, + "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": "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": "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, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_bool_exp", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_not", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_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": "stripeCustomer_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": "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 + } + }, + "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": "stripeCustomer", + "ofType": null + } + } + } + }, + "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 + } + }, + "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": "stripeCustomer_update_column", + "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.", + "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": "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.", + "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": "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", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_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": "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", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "stripeCustomer_bool_exp", + "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\"", + "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": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "account_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "account", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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": "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": "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": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "apiKeyStatus", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": 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": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "stripeCustomer_stream_cursor_value_input", + "kind": "OBJECT", + "name": "apiKeyStatus_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": "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.", + "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": "uuid", + "kind": "OBJECT", + "name": "apiKeyStatus", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", - "description": "Timestamp automatically set when the row is created.", + "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": "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": "apiKeyStatus", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "stripeCustomerId", - "description": "Unique identifier for the Stripe Customer.", + "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": "String", - "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 + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", - "description": "Timestamp automatically updated whenever the row changes.", + "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": "SCALAR", - "name": "timestamptz", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "apiKeyType_aggregate", + "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", + "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": "INPUT_OBJECT", - "name": "stripeCustomer_set_input", + "kind": "OBJECT", + "name": "apiKeyType", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": "filter the rows which have to be updated", + "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": "INPUT_OBJECT", - "name": "stripeCustomer_bool_exp", - "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "subscription_root", - "description": null, - "fields": [ + }, { - "name": "account", - "description": "fetch data from the table: \"account\"", + "name": "contentSpaceParameters", + "description": "fetch data from the table: \"contentSpaceParameters\"", "args": [ { "name": "distinct_on", @@ -173077,7 +176875,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "account_select_column", + "name": "contentSpaceParameters_select_column", "ofType": null } } @@ -173121,7 +176919,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "account_order_by", + "name": "contentSpaceParameters_order_by", "ofType": null } } @@ -173135,7 +176933,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "account_bool_exp", + "name": "contentSpaceParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -173154,7 +176952,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "account", + "name": "contentSpaceParameters", "ofType": null } } @@ -173164,8 +176962,8 @@ "deprecationReason": null }, { - "name": "account_aggregate", - "description": "fetch aggregated fields from the table: \"account\"", + "name": "contentSpaceParameters_aggregate", + "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"", "args": [ { "name": "distinct_on", @@ -173178,7 +176976,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "account_select_column", + "name": "contentSpaceParameters_select_column", "ofType": null } } @@ -173222,7 +177020,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "account_order_by", + "name": "contentSpaceParameters_order_by", "ofType": null } } @@ -173236,7 +177034,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "account_bool_exp", + "name": "contentSpaceParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -173249,7 +177047,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "account_aggregate", + "name": "contentSpaceParameters_aggregate", "ofType": null } }, @@ -173257,8 +177055,8 @@ "deprecationReason": null }, { - "name": "account_by_pk", - "description": "fetch data from the table: \"account\" using primary key columns", + "name": "contentSpaceParameters_by_pk", + "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns", "args": [ { "name": "id", @@ -173279,15 +177077,15 @@ ], "type": { "kind": "OBJECT", - "name": "account", + "name": "contentSpaceParameters", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "account_stream", - "description": "fetch data from the table in a streaming manner: \"account\"", + "name": "contentSpaceParameters_stream", + "description": "fetch data from the table in a streaming manner: \"contentSpaceParameters\"", "args": [ { "name": "batch_size", @@ -173316,7 +177114,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "account_stream_cursor_input", + "name": "contentSpaceParameters_stream_cursor_input", "ofType": null } } @@ -173330,7 +177128,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "account_bool_exp", + "name": "contentSpaceParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -173349,7 +177147,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "account", + "name": "contentSpaceParameters", "ofType": null } } @@ -173359,8 +177157,8 @@ "deprecationReason": null }, { - "name": "apiKeyStatus", - "description": "fetch data from the table: \"apiKeyStatus\"", + "name": "contentSpaceStatus", + "description": "fetch data from the table: \"contentSpaceStatus\"", "args": [ { "name": "distinct_on", @@ -173373,7 +177171,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "apiKeyStatus_select_column", + "name": "contentSpaceStatus_select_column", "ofType": null } } @@ -173417,7 +177215,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_order_by", + "name": "contentSpaceStatus_order_by", "ofType": null } } @@ -173431,7 +177229,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_bool_exp", + "name": "contentSpaceStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -173450,7 +177248,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyStatus", + "name": "contentSpaceStatus", "ofType": null } } @@ -173460,8 +177258,8 @@ "deprecationReason": null }, { - "name": "apiKeyStatus_aggregate", - "description": "fetch aggregated fields from the table: \"apiKeyStatus\"", + "name": "contentSpaceStatus_aggregate", + "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"", "args": [ { "name": "distinct_on", @@ -173474,7 +177272,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "apiKeyStatus_select_column", + "name": "contentSpaceStatus_select_column", "ofType": null } } @@ -173518,7 +177316,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_order_by", + "name": "contentSpaceStatus_order_by", "ofType": null } } @@ -173532,7 +177330,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_bool_exp", + "name": "contentSpaceStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -173545,7 +177343,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyStatus_aggregate", + "name": "contentSpaceStatus_aggregate", "ofType": null } }, @@ -173553,12 +177351,12 @@ "deprecationReason": null }, { - "name": "apiKeyStatus_by_pk", - "description": "fetch data from the table: \"apiKeyStatus\" using primary key columns", + "name": "contentSpaceStatus_by_pk", + "description": "fetch data from the table: \"contentSpaceStatus\" using primary key columns", "args": [ { "name": "value", - "description": "The status value for API keys. It can be \"ACTIVE\" (default), \"DISABLED\", or \"EXPIRED\".", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -173575,15 +177373,15 @@ ], "type": { "kind": "OBJECT", - "name": "apiKeyStatus", + "name": "contentSpaceStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiKeyStatus_stream", - "description": "fetch data from the table in a streaming manner: \"apiKeyStatus\"", + "name": "contentSpaceStatus_stream", + "description": "fetch data from the table in a streaming manner: \"contentSpaceStatus\"", "args": [ { "name": "batch_size", @@ -173612,7 +177410,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_stream_cursor_input", + "name": "contentSpaceStatus_stream_cursor_input", "ofType": null } } @@ -173626,7 +177424,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyStatus_bool_exp", + "name": "contentSpaceStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -173645,7 +177443,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyStatus", + "name": "contentSpaceStatus", "ofType": null } } @@ -173655,8 +177453,8 @@ "deprecationReason": null }, { - "name": "apiKeyType", - "description": "fetch data from the table: \"apiKeyType\"", + "name": "currency", + "description": "fetch data from the table: \"currency\"", "args": [ { "name": "distinct_on", @@ -173669,7 +177467,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "apiKeyType_select_column", + "name": "currency_select_column", "ofType": null } } @@ -173713,7 +177511,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_order_by", + "name": "currency_order_by", "ofType": null } } @@ -173727,7 +177525,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_bool_exp", + "name": "currency_bool_exp", "ofType": null }, "defaultValue": null, @@ -173746,7 +177544,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyType", + "name": "currency", "ofType": null } } @@ -173756,8 +177554,8 @@ "deprecationReason": null }, { - "name": "apiKeyType_aggregate", - "description": "fetch aggregated fields from the table: \"apiKeyType\"", + "name": "currency_aggregate", + "description": "fetch aggregated fields from the table: \"currency\"", "args": [ { "name": "distinct_on", @@ -173770,7 +177568,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "apiKeyType_select_column", + "name": "currency_select_column", "ofType": null } } @@ -173814,7 +177612,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_order_by", + "name": "currency_order_by", "ofType": null } } @@ -173828,7 +177626,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_bool_exp", + "name": "currency_bool_exp", "ofType": null }, "defaultValue": null, @@ -173841,7 +177639,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyType_aggregate", + "name": "currency_aggregate", "ofType": null } }, @@ -173849,12 +177647,12 @@ "deprecationReason": null }, { - "name": "apiKeyType_by_pk", - "description": "fetch data from the table: \"apiKeyType\" using primary key columns", + "name": "currency_by_pk", + "description": "fetch data from the table: \"currency\" using primary key columns", "args": [ { "name": "value", - "description": "The type of the API key", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -173871,15 +177669,15 @@ ], "type": { "kind": "OBJECT", - "name": "apiKeyType", + "name": "currency", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiKeyType_stream", - "description": "fetch data from the table in a streaming manner: \"apiKeyType\"", + "name": "currency_stream", + "description": "fetch data from the table in a streaming manner: \"currency\"", "args": [ { "name": "batch_size", @@ -173908,7 +177706,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_stream_cursor_input", + "name": "currency_stream_cursor_input", "ofType": null } } @@ -173922,7 +177720,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "apiKeyType_bool_exp", + "name": "currency_bool_exp", "ofType": null }, "defaultValue": null, @@ -173941,7 +177739,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "apiKeyType", + "name": "currency", "ofType": null } } @@ -173951,8 +177749,8 @@ "deprecationReason": null }, { - "name": "contentSpaceParameters", - "description": "fetch data from the table: \"contentSpaceParameters\"", + "name": "eventParameters", + "description": "fetch data from the table: \"eventParameters\"", "args": [ { "name": "distinct_on", @@ -173965,7 +177763,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "contentSpaceParameters_select_column", + "name": "eventParameters_select_column", "ofType": null } } @@ -174009,7 +177807,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_order_by", + "name": "eventParameters_order_by", "ofType": null } } @@ -174023,7 +177821,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_bool_exp", + "name": "eventParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -174042,7 +177840,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "contentSpaceParameters", + "name": "eventParameters", "ofType": null } } @@ -174052,8 +177850,8 @@ "deprecationReason": null }, { - "name": "contentSpaceParameters_aggregate", - "description": "fetch aggregated fields from the table: \"contentSpaceParameters\"", + "name": "eventParameters_aggregate", + "description": "fetch aggregated fields from the table: \"eventParameters\"", "args": [ { "name": "distinct_on", @@ -174066,7 +177864,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "contentSpaceParameters_select_column", + "name": "eventParameters_select_column", "ofType": null } } @@ -174110,7 +177908,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_order_by", + "name": "eventParameters_order_by", "ofType": null } } @@ -174124,7 +177922,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_bool_exp", + "name": "eventParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -174137,7 +177935,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "contentSpaceParameters_aggregate", + "name": "eventParameters_aggregate", "ofType": null } }, @@ -174145,8 +177943,8 @@ "deprecationReason": null }, { - "name": "contentSpaceParameters_by_pk", - "description": "fetch data from the table: \"contentSpaceParameters\" using primary key columns", + "name": "eventParameters_by_pk", + "description": "fetch data from the table: \"eventParameters\" using primary key columns", "args": [ { "name": "id", @@ -174167,15 +177965,15 @@ ], "type": { "kind": "OBJECT", - "name": "contentSpaceParameters", + "name": "eventParameters", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentSpaceParameters_stream", - "description": "fetch data from the table in a streaming manner: \"contentSpaceParameters\"", + "name": "eventParameters_stream", + "description": "fetch data from the table in a streaming manner: \"eventParameters\"", "args": [ { "name": "batch_size", @@ -174204,7 +178002,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_stream_cursor_input", + "name": "eventParameters_stream_cursor_input", "ofType": null } } @@ -174218,7 +178016,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "contentSpaceParameters_bool_exp", + "name": "eventParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -174237,7 +178035,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "contentSpaceParameters", + "name": "eventParameters", "ofType": null } } @@ -174247,8 +178045,8 @@ "deprecationReason": null }, { - "name": "contentSpaceStatus", - "description": "fetch data from the table: \"contentSpaceStatus\"", + "name": "eventPassNft", + "description": "fetch data from the table: \"eventPassNft\"", "args": [ { "name": "distinct_on", @@ -174261,7 +178059,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "contentSpaceStatus_select_column", + "name": "eventPassNft_select_column", "ofType": null } } @@ -174305,7 +178103,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "contentSpaceStatus_order_by", + "name": "eventPassNft_order_by", "ofType": null } } @@ -174319,7 +178117,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "contentSpaceStatus_bool_exp", + "name": "eventPassNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -174338,7 +178136,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "contentSpaceStatus", + "name": "eventPassNft", "ofType": null } } @@ -174348,8 +178146,8 @@ "deprecationReason": null }, { - "name": "contentSpaceStatus_aggregate", - "description": "fetch aggregated fields from the table: \"contentSpaceStatus\"", + "name": "eventPassNftContract", + "description": "fetch data from the table: \"eventPassNftContract\"", "args": [ { "name": "distinct_on", @@ -174362,7 +178160,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "contentSpaceStatus_select_column", + "name": "eventPassNftContract_select_column", "ofType": null } } @@ -174406,101 +178204,7 @@ "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": "OBJECT", - "name": "contentSpaceStatus_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "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 - } - ], - "type": { - "kind": "OBJECT", - "name": "contentSpaceStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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", + "name": "eventPassNftContract_order_by", "ofType": null } } @@ -174514,7 +178218,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "contentSpaceStatus_bool_exp", + "name": "eventPassNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -174533,7 +178237,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "contentSpaceStatus", + "name": "eventPassNftContract", "ofType": null } } @@ -174543,8 +178247,8 @@ "deprecationReason": null }, { - "name": "currency", - "description": "fetch data from the table: \"currency\"", + "name": "eventPassNftContractType", + "description": "fetch data from the table: \"eventPassNftContractType\"", "args": [ { "name": "distinct_on", @@ -174557,7 +178261,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "currency_select_column", + "name": "eventPassNftContractType_select_column", "ofType": null } } @@ -174601,7 +178305,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "currency_order_by", + "name": "eventPassNftContractType_order_by", "ofType": null } } @@ -174615,7 +178319,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "currency_bool_exp", + "name": "eventPassNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -174634,7 +178338,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "currency", + "name": "eventPassNftContractType", "ofType": null } } @@ -174644,8 +178348,8 @@ "deprecationReason": null }, { - "name": "currency_aggregate", - "description": "fetch aggregated fields from the table: \"currency\"", + "name": "eventPassNftContractType_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"", "args": [ { "name": "distinct_on", @@ -174658,7 +178362,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "currency_select_column", + "name": "eventPassNftContractType_select_column", "ofType": null } } @@ -174702,7 +178406,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "currency_order_by", + "name": "eventPassNftContractType_order_by", "ofType": null } } @@ -174716,7 +178420,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "currency_bool_exp", + "name": "eventPassNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -174729,7 +178433,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "currency_aggregate", + "name": "eventPassNftContractType_aggregate", "ofType": null } }, @@ -174737,12 +178441,12 @@ "deprecationReason": null }, { - "name": "currency_by_pk", - "description": "fetch data from the table: \"currency\" using primary key columns", + "name": "eventPassNftContractType_by_pk", + "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns", "args": [ { "name": "value", - "description": null, + "description": "Type name for event pass NFT contract.", "type": { "kind": "NON_NULL", "name": null, @@ -174759,15 +178463,15 @@ ], "type": { "kind": "OBJECT", - "name": "currency", + "name": "eventPassNftContractType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "currency_stream", - "description": "fetch data from the table in a streaming manner: \"currency\"", + "name": "eventPassNftContractType_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassNftContractType\"", "args": [ { "name": "batch_size", @@ -174796,108 +178500,7 @@ "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, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "currency", - "ofType": 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", + "name": "eventPassNftContractType_stream_cursor_input", "ofType": null } } @@ -174911,7 +178514,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventParameters_bool_exp", + "name": "eventPassNftContractType_bool_exp", "ofType": null }, "defaultValue": null, @@ -174930,7 +178533,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventParameters", + "name": "eventPassNftContractType", "ofType": null } } @@ -174940,8 +178543,8 @@ "deprecationReason": null }, { - "name": "eventParameters_aggregate", - "description": "fetch aggregated fields from the table: \"eventParameters\"", + "name": "eventPassNftContract_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassNftContract\"", "args": [ { "name": "distinct_on", @@ -174954,7 +178557,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventParameters_select_column", + "name": "eventPassNftContract_select_column", "ofType": null } } @@ -174998,7 +178601,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventParameters_order_by", + "name": "eventPassNftContract_order_by", "ofType": null } } @@ -175012,7 +178615,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventParameters_bool_exp", + "name": "eventPassNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -175025,7 +178628,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventParameters_aggregate", + "name": "eventPassNftContract_aggregate", "ofType": null } }, @@ -175033,8 +178636,8 @@ "deprecationReason": null }, { - "name": "eventParameters_by_pk", - "description": "fetch data from the table: \"eventParameters\" using primary key columns", + "name": "eventPassNftContract_by_pk", + "description": "fetch data from the table: \"eventPassNftContract\" using primary key columns", "args": [ { "name": "id", @@ -175055,15 +178658,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventParameters", + "name": "eventPassNftContract", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventParameters_stream", - "description": "fetch data from the table in a streaming manner: \"eventParameters\"", + "name": "eventPassNftContract_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassNftContract\"", "args": [ { "name": "batch_size", @@ -175092,7 +178695,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventParameters_stream_cursor_input", + "name": "eventPassNftContract_stream_cursor_input", "ofType": null } } @@ -175106,7 +178709,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventParameters_bool_exp", + "name": "eventPassNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -175125,7 +178728,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventParameters", + "name": "eventPassNftContract", "ofType": null } } @@ -175135,8 +178738,8 @@ "deprecationReason": null }, { - "name": "eventPassNft", - "description": "fetch data from the table: \"eventPassNft\"", + "name": "eventPassNft_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassNft\"", "args": [ { "name": "distinct_on", @@ -175219,82 +178822,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": "eventPassNft_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassNftContract", - "description": "fetch data from the table: \"eventPassNftContract\"", + "name": "eventPassNft_by_pk", + "description": "fetch data from the table: \"eventPassNft\" 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": "eventPassNft", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventPassNft_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassNft\"", + "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": "eventPassNft_stream_cursor_input", "ofType": null } } @@ -175308,7 +178904,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContract_bool_exp", + "name": "eventPassNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -175327,7 +178923,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNftContract", + "name": "eventPassNft", "ofType": null } } @@ -175337,8 +178933,8 @@ "deprecationReason": null }, { - "name": "eventPassNftContractType", - "description": "fetch data from the table: \"eventPassNftContractType\"", + "name": "eventPassOrderSums", + "description": "fetch data from the table: \"eventPassOrderSums\"", "args": [ { "name": "distinct_on", @@ -175351,7 +178947,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassNftContractType_select_column", + "name": "eventPassOrderSums_select_column", "ofType": null } } @@ -175395,7 +178991,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_order_by", + "name": "eventPassOrderSums_order_by", "ofType": null } } @@ -175409,7 +179005,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_bool_exp", + "name": "eventPassOrderSums_bool_exp", "ofType": null }, "defaultValue": null, @@ -175428,7 +179024,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNftContractType", + "name": "eventPassOrderSums", "ofType": null } } @@ -175438,8 +179034,8 @@ "deprecationReason": null }, { - "name": "eventPassNftContractType_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassNftContractType\"", + "name": "eventPassOrderSums_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"", "args": [ { "name": "distinct_on", @@ -175452,7 +179048,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassNftContractType_select_column", + "name": "eventPassOrderSums_select_column", "ofType": null } } @@ -175496,7 +179092,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_order_by", + "name": "eventPassOrderSums_order_by", "ofType": null } } @@ -175510,7 +179106,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_bool_exp", + "name": "eventPassOrderSums_bool_exp", "ofType": null }, "defaultValue": null, @@ -175523,7 +179119,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNftContractType_aggregate", + "name": "eventPassOrderSums_aggregate", "ofType": null } }, @@ -175531,12 +179127,12 @@ "deprecationReason": null }, { - "name": "eventPassNftContractType_by_pk", - "description": "fetch data from the table: \"eventPassNftContractType\" using primary key columns", + "name": "eventPassOrderSums_by_pk", + "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns", "args": [ { - "name": "value", - "description": "Type name for event pass NFT contract.", + "name": "eventPassId", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -175553,15 +179149,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventPassNftContractType", + "name": "eventPassOrderSums", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassNftContractType_stream", - "description": "fetch data from the table in a streaming manner: \"eventPassNftContractType\"", + "name": "eventPassOrderSums_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassOrderSums\"", "args": [ { "name": "batch_size", @@ -175590,7 +179186,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_stream_cursor_input", + "name": "eventPassOrderSums_stream_cursor_input", "ofType": null } } @@ -175604,7 +179200,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContractType_bool_exp", + "name": "eventPassOrderSums_bool_exp", "ofType": null }, "defaultValue": null, @@ -175623,7 +179219,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNftContractType", + "name": "eventPassOrderSums", "ofType": null } } @@ -175633,8 +179229,8 @@ "deprecationReason": null }, { - "name": "eventPassNftContract_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassNftContract\"", + "name": "eventPassType", + "description": "fetch data from the table: \"eventPassType\"", "args": [ { "name": "distinct_on", @@ -175647,7 +179243,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassNftContract_select_column", + "name": "eventPassType_select_column", "ofType": null } } @@ -175691,101 +179287,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": "eventPassType_order_by", "ofType": null } } @@ -175799,7 +179301,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNftContract_bool_exp", + "name": "eventPassType_bool_exp", "ofType": null }, "defaultValue": null, @@ -175818,7 +179320,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNftContract", + "name": "eventPassType", "ofType": null } } @@ -175828,8 +179330,8 @@ "deprecationReason": null }, { - "name": "eventPassNft_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassNft\"", + "name": "eventPassType_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassType\"", "args": [ { "name": "distinct_on", @@ -175842,7 +179344,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassNft_select_column", + "name": "eventPassType_select_column", "ofType": null } } @@ -175886,7 +179388,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassNft_order_by", + "name": "eventPassType_order_by", "ofType": null } } @@ -175900,7 +179402,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNft_bool_exp", + "name": "eventPassType_bool_exp", "ofType": null }, "defaultValue": null, @@ -175913,7 +179415,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNft_aggregate", + "name": "eventPassType_aggregate", "ofType": null } }, @@ -175921,18 +179423,18 @@ "deprecationReason": null }, { - "name": "eventPassNft_by_pk", - "description": "fetch data from the table: \"eventPassNft\" using primary key columns", + "name": "eventPassType_by_pk", + "description": "fetch data from the table: \"eventPassType\" using primary key columns", "args": [ { - "name": "id", - "description": null, + "name": "value", + "description": "Type name for event pass.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -175943,15 +179445,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventPassNft", + "name": "eventPassType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassNft_stream", - "description": "fetch data from the table in a streaming manner: \"eventPassNft\"", + "name": "eventPassType_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassType\"", "args": [ { "name": "batch_size", @@ -175980,7 +179482,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassNft_stream_cursor_input", + "name": "eventPassType_stream_cursor_input", "ofType": null } } @@ -175994,7 +179496,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassNft_bool_exp", + "name": "eventPassType_bool_exp", "ofType": null }, "defaultValue": null, @@ -176013,7 +179515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassNft", + "name": "eventPassType", "ofType": null } } @@ -176023,8 +179525,8 @@ "deprecationReason": null }, { - "name": "eventPassOrderSums", - "description": "fetch data from the table: \"eventPassOrderSums\"", + "name": "eventPassValidationType", + "description": "fetch data from the table: \"eventPassValidationType\"", "args": [ { "name": "distinct_on", @@ -176037,7 +179539,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassOrderSums_select_column", + "name": "eventPassValidationType_select_column", "ofType": null } } @@ -176081,7 +179583,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_order_by", + "name": "eventPassValidationType_order_by", "ofType": null } } @@ -176095,7 +179597,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_bool_exp", + "name": "eventPassValidationType_bool_exp", "ofType": null }, "defaultValue": null, @@ -176114,7 +179616,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassOrderSums", + "name": "eventPassValidationType", "ofType": null } } @@ -176124,8 +179626,8 @@ "deprecationReason": null }, { - "name": "eventPassOrderSums_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassOrderSums\"", + "name": "eventPassValidationType_aggregate", + "description": "fetch aggregated fields from the table: \"eventPassValidationType\"", "args": [ { "name": "distinct_on", @@ -176138,7 +179640,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassOrderSums_select_column", + "name": "eventPassValidationType_select_column", "ofType": null } } @@ -176182,7 +179684,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_order_by", + "name": "eventPassValidationType_order_by", "ofType": null } } @@ -176196,7 +179698,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_bool_exp", + "name": "eventPassValidationType_bool_exp", "ofType": null }, "defaultValue": null, @@ -176209,7 +179711,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassOrderSums_aggregate", + "name": "eventPassValidationType_aggregate", "ofType": null } }, @@ -176217,12 +179719,12 @@ "deprecationReason": null }, { - "name": "eventPassOrderSums_by_pk", - "description": "fetch data from the table: \"eventPassOrderSums\" using primary key columns", + "name": "eventPassValidationType_by_pk", + "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns", "args": [ { - "name": "eventPassId", - "description": null, + "name": "value", + "description": "Type name for event pass validation.", "type": { "kind": "NON_NULL", "name": null, @@ -176239,15 +179741,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventPassOrderSums", + "name": "eventPassValidationType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassOrderSums_stream", - "description": "fetch data from the table in a streaming manner: \"eventPassOrderSums\"", + "name": "eventPassValidationType_stream", + "description": "fetch data from the table in a streaming manner: \"eventPassValidationType\"", "args": [ { "name": "batch_size", @@ -176276,7 +179778,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_stream_cursor_input", + "name": "eventPassValidationType_stream_cursor_input", "ofType": null } } @@ -176290,7 +179792,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassOrderSums_bool_exp", + "name": "eventPassValidationType_bool_exp", "ofType": null }, "defaultValue": null, @@ -176309,7 +179811,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassOrderSums", + "name": "eventPassValidationType", "ofType": null } } @@ -176319,8 +179821,8 @@ "deprecationReason": null }, { - "name": "eventPassType", - "description": "fetch data from the table: \"eventPassType\"", + "name": "eventStatus", + "description": "fetch data from the table: \"eventStatus\"", "args": [ { "name": "distinct_on", @@ -176333,7 +179835,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassType_select_column", + "name": "eventStatus_select_column", "ofType": null } } @@ -176377,7 +179879,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassType_order_by", + "name": "eventStatus_order_by", "ofType": null } } @@ -176391,7 +179893,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassType_bool_exp", + "name": "eventStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -176410,7 +179912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassType", + "name": "eventStatus", "ofType": null } } @@ -176420,8 +179922,8 @@ "deprecationReason": null }, { - "name": "eventPassType_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassType\"", + "name": "eventStatus_aggregate", + "description": "fetch aggregated fields from the table: \"eventStatus\"", "args": [ { "name": "distinct_on", @@ -176434,7 +179936,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassType_select_column", + "name": "eventStatus_select_column", "ofType": null } } @@ -176478,7 +179980,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassType_order_by", + "name": "eventStatus_order_by", "ofType": null } } @@ -176492,7 +179994,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassType_bool_exp", + "name": "eventStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -176505,7 +180007,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassType_aggregate", + "name": "eventStatus_aggregate", "ofType": null } }, @@ -176513,12 +180015,12 @@ "deprecationReason": null }, { - "name": "eventPassType_by_pk", - "description": "fetch data from the table: \"eventPassType\" using primary key columns", + "name": "eventStatus_by_pk", + "description": "fetch data from the table: \"eventStatus\" using primary key columns", "args": [ { "name": "value", - "description": "Type name for event pass.", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -176535,15 +180037,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventPassType", + "name": "eventStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassType_stream", - "description": "fetch data from the table in a streaming manner: \"eventPassType\"", + "name": "eventStatus_stream", + "description": "fetch data from the table in a streaming manner: \"eventStatus\"", "args": [ { "name": "batch_size", @@ -176572,7 +180074,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassType_stream_cursor_input", + "name": "eventStatus_stream_cursor_input", "ofType": null } } @@ -176586,7 +180088,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassType_bool_exp", + "name": "eventStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -176605,7 +180107,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassType", + "name": "eventStatus", "ofType": null } } @@ -176615,8 +180117,8 @@ "deprecationReason": null }, { - "name": "eventPassValidationType", - "description": "fetch data from the table: \"eventPassValidationType\"", + "name": "follow", + "description": "fetch data from the table: \"follow\"", "args": [ { "name": "distinct_on", @@ -176629,7 +180131,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassValidationType_select_column", + "name": "follow_select_column", "ofType": null } } @@ -176673,7 +180175,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_order_by", + "name": "follow_order_by", "ofType": null } } @@ -176687,7 +180189,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_bool_exp", + "name": "follow_bool_exp", "ofType": null }, "defaultValue": null, @@ -176706,7 +180208,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassValidationType", + "name": "follow", "ofType": null } } @@ -176716,8 +180218,8 @@ "deprecationReason": null }, { - "name": "eventPassValidationType_aggregate", - "description": "fetch aggregated fields from the table: \"eventPassValidationType\"", + "name": "follow_aggregate", + "description": "fetch aggregated fields from the table: \"follow\"", "args": [ { "name": "distinct_on", @@ -176730,7 +180232,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventPassValidationType_select_column", + "name": "follow_select_column", "ofType": null } } @@ -176774,7 +180276,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_order_by", + "name": "follow_order_by", "ofType": null } } @@ -176788,7 +180290,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_bool_exp", + "name": "follow_bool_exp", "ofType": null }, "defaultValue": null, @@ -176801,7 +180303,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassValidationType_aggregate", + "name": "follow_aggregate", "ofType": null } }, @@ -176809,12 +180311,28 @@ "deprecationReason": null }, { - "name": "eventPassValidationType_by_pk", - "description": "fetch data from the table: \"eventPassValidationType\" using primary key columns", + "name": "follow_by_pk", + "description": "fetch data from the table: \"follow\" using primary key columns", "args": [ { - "name": "value", - "description": "Type name for event pass validation.", + "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, @@ -176831,15 +180349,15 @@ ], "type": { "kind": "OBJECT", - "name": "eventPassValidationType", + "name": "follow", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventPassValidationType_stream", - "description": "fetch data from the table in a streaming manner: \"eventPassValidationType\"", + "name": "follow_stream", + "description": "fetch data from the table in a streaming manner: \"follow\"", "args": [ { "name": "batch_size", @@ -176868,7 +180386,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_stream_cursor_input", + "name": "follow_stream_cursor_input", "ofType": null } } @@ -176882,7 +180400,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventPassValidationType_bool_exp", + "name": "follow_bool_exp", "ofType": null }, "defaultValue": null, @@ -176901,7 +180419,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventPassValidationType", + "name": "follow", "ofType": null } } @@ -176911,8 +180429,8 @@ "deprecationReason": null }, { - "name": "eventStatus", - "description": "fetch data from the table: \"eventStatus\"", + "name": "kyc", + "description": "fetch data from the table: \"kyc\"", "args": [ { "name": "distinct_on", @@ -176925,7 +180443,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventStatus_select_column", + "name": "kyc_select_column", "ofType": null } } @@ -176969,7 +180487,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventStatus_order_by", + "name": "kyc_order_by", "ofType": null } } @@ -176983,7 +180501,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventStatus_bool_exp", + "name": "kyc_bool_exp", "ofType": null }, "defaultValue": null, @@ -177002,7 +180520,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "eventStatus", + "name": "kyc", "ofType": null } } @@ -177012,8 +180530,8 @@ "deprecationReason": null }, { - "name": "eventStatus_aggregate", - "description": "fetch aggregated fields from the table: \"eventStatus\"", + "name": "kycLevelName", + "description": "fetch data from the table: \"kycLevelName\"", "args": [ { "name": "distinct_on", @@ -177026,7 +180544,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "eventStatus_select_column", + "name": "kycLevelName_select_column", "ofType": null } } @@ -177070,7 +180588,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "eventStatus_order_by", + "name": "kycLevelName_order_by", "ofType": null } } @@ -177084,7 +180602,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventStatus_bool_exp", + "name": "kycLevelName_bool_exp", "ofType": null }, "defaultValue": null, @@ -177096,75 +180614,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": "kycLevelName", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "eventStatus_by_pk", - "description": "fetch data from the table: \"eventStatus\" using primary key columns", + "name": "kycLevelName_aggregate", + "description": "fetch aggregated fields from the table: \"kycLevelName\"", "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": "kycLevelName_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": "kycLevelName_order_by", "ofType": null } } @@ -177178,7 +180703,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "eventStatus_bool_exp", + "name": "kycLevelName_bool_exp", "ofType": null }, "defaultValue": null, @@ -177190,82 +180715,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": "kycLevelName_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "follow", - "description": "fetch data from the table: \"follow\"", + "name": "kycLevelName_by_pk", + "description": "fetch data from the table: \"kycLevelName\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "name": "value", + "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.", "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": "kycLevelName", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kycLevelName_stream", + "description": "fetch data from the table in a streaming manner: \"kycLevelName\"", + "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": "kycLevelName_stream_cursor_input", "ofType": null } } @@ -177279,7 +180797,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "follow_bool_exp", + "name": "kycLevelName_bool_exp", "ofType": null }, "defaultValue": null, @@ -177298,7 +180816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "follow", + "name": "kycLevelName", "ofType": null } } @@ -177308,8 +180826,8 @@ "deprecationReason": null }, { - "name": "follow_aggregate", - "description": "fetch aggregated fields from the table: \"follow\"", + "name": "kycStatus", + "description": "fetch data from the table: \"kycStatus\"", "args": [ { "name": "distinct_on", @@ -177322,7 +180840,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "follow_select_column", + "name": "kycStatus_select_column", "ofType": null } } @@ -177366,117 +180884,7 @@ "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "follow_aggregate", - "ofType": null - } - }, - "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 - } - ], - "type": { - "kind": "OBJECT", - "name": "follow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": 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", + "name": "kycStatus_order_by", "ofType": null } } @@ -177490,7 +180898,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "follow_bool_exp", + "name": "kycStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -177509,7 +180917,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "follow", + "name": "kycStatus", "ofType": null } } @@ -177519,8 +180927,8 @@ "deprecationReason": null }, { - "name": "kyc", - "description": "fetch data from the table: \"kyc\"", + "name": "kycStatus_aggregate", + "description": "fetch aggregated fields from the table: \"kycStatus\"", "args": [ { "name": "distinct_on", @@ -177533,7 +180941,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "kyc_select_column", + "name": "kycStatus_select_column", "ofType": null } } @@ -177577,7 +180985,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kyc_order_by", + "name": "kycStatus_order_by", "ofType": null } } @@ -177591,7 +180999,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kyc_bool_exp", + "name": "kycStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -177603,82 +181011,75 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "kyc", - "ofType": null - } - } + "kind": "OBJECT", + "name": "kycStatus_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kycLevelName", - "description": "fetch data from the table: \"kycLevelName\"", + "name": "kycStatus_by_pk", + "description": "fetch data from the table: \"kycStatus\" using primary key columns", "args": [ { - "name": "distinct_on", - "description": "distinct select on columns", + "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": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "kycLevelName_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": "kycStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kycStatus_stream", + "description": "fetch data from the table in a streaming manner: \"kycStatus\"", + "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": "kycLevelName_order_by", + "name": "kycStatus_stream_cursor_input", "ofType": null } } @@ -177692,7 +181093,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycLevelName_bool_exp", + "name": "kycStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -177711,7 +181112,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycLevelName", + "name": "kycStatus", "ofType": null } } @@ -177721,8 +181122,8 @@ "deprecationReason": null }, { - "name": "kycLevelName_aggregate", - "description": "fetch aggregated fields from the table: \"kycLevelName\"", + "name": "kyc_aggregate", + "description": "fetch aggregated fields from the table: \"kyc\"", "args": [ { "name": "distinct_on", @@ -177735,7 +181136,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "kycLevelName_select_column", + "name": "kyc_select_column", "ofType": null } } @@ -177779,7 +181180,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kycLevelName_order_by", + "name": "kyc_order_by", "ofType": null } } @@ -177793,7 +181194,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycLevelName_bool_exp", + "name": "kyc_bool_exp", "ofType": null }, "defaultValue": null, @@ -177806,7 +181207,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycLevelName_aggregate", + "name": "kyc_aggregate", "ofType": null } }, @@ -177814,18 +181215,18 @@ "deprecationReason": null }, { - "name": "kycLevelName_by_pk", - "description": "fetch data from the table: \"kycLevelName\" using primary key columns", + "name": "kyc_by_pk", + "description": "fetch data from the table: \"kyc\" using primary key columns", "args": [ { - "name": "value", - "description": "basic_kyc_level: Basic level of KYC verification.\nadvanced_kyc_level: Advanced level of KYC verification.", + "name": "externalUserId", + "description": "UUID referencing the user ID in the existing accounts table.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -177836,15 +181237,15 @@ ], "type": { "kind": "OBJECT", - "name": "kycLevelName", + "name": "kyc", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kycLevelName_stream", - "description": "fetch data from the table in a streaming manner: \"kycLevelName\"", + "name": "kyc_stream", + "description": "fetch data from the table in a streaming manner: \"kyc\"", "args": [ { "name": "batch_size", @@ -177873,7 +181274,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kycLevelName_stream_cursor_input", + "name": "kyc_stream_cursor_input", "ofType": null } } @@ -177887,7 +181288,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycLevelName_bool_exp", + "name": "kyc_bool_exp", "ofType": null }, "defaultValue": null, @@ -177906,7 +181307,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycLevelName", + "name": "kyc", "ofType": null } } @@ -177916,8 +181317,8 @@ "deprecationReason": null }, { - "name": "kycStatus", - "description": "fetch data from the table: \"kycStatus\"", + "name": "lotteryParameters", + "description": "fetch data from the table: \"lotteryParameters\"", "args": [ { "name": "distinct_on", @@ -177930,7 +181331,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "kycStatus_select_column", + "name": "lotteryParameters_select_column", "ofType": null } } @@ -177974,7 +181375,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kycStatus_order_by", + "name": "lotteryParameters_order_by", "ofType": null } } @@ -177988,7 +181389,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycStatus_bool_exp", + "name": "lotteryParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -178007,7 +181408,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycStatus", + "name": "lotteryParameters", "ofType": null } } @@ -178017,8 +181418,8 @@ "deprecationReason": null }, { - "name": "kycStatus_aggregate", - "description": "fetch aggregated fields from the table: \"kycStatus\"", + "name": "lotteryParameters_aggregate", + "description": "fetch aggregated fields from the table: \"lotteryParameters\"", "args": [ { "name": "distinct_on", @@ -178031,7 +181432,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "kycStatus_select_column", + "name": "lotteryParameters_select_column", "ofType": null } } @@ -178075,7 +181476,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kycStatus_order_by", + "name": "lotteryParameters_order_by", "ofType": null } } @@ -178089,7 +181490,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycStatus_bool_exp", + "name": "lotteryParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -178102,7 +181503,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycStatus_aggregate", + "name": "lotteryParameters_aggregate", "ofType": null } }, @@ -178110,18 +181511,18 @@ "deprecationReason": null }, { - "name": "kycStatus_by_pk", - "description": "fetch data from the table: \"kycStatus\" using primary key columns", + "name": "lotteryParameters_by_pk", + "description": "fetch data from the table: \"lotteryParameters\" 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": "id", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -178132,15 +181533,15 @@ ], "type": { "kind": "OBJECT", - "name": "kycStatus", + "name": "lotteryParameters", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kycStatus_stream", - "description": "fetch data from the table in a streaming manner: \"kycStatus\"", + "name": "lotteryParameters_stream", + "description": "fetch data from the table in a streaming manner: \"lotteryParameters\"", "args": [ { "name": "batch_size", @@ -178169,7 +181570,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kycStatus_stream_cursor_input", + "name": "lotteryParameters_stream_cursor_input", "ofType": null } } @@ -178183,7 +181584,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kycStatus_bool_exp", + "name": "lotteryParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -178202,7 +181603,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kycStatus", + "name": "lotteryParameters", "ofType": null } } @@ -178212,8 +181613,8 @@ "deprecationReason": null }, { - "name": "kyc_aggregate", - "description": "fetch aggregated fields from the table: \"kyc\"", + "name": "lotteryStatus", + "description": "fetch data from the table: \"lotteryStatus\"", "args": [ { "name": "distinct_on", @@ -178226,7 +181627,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "kyc_select_column", + "name": "lotteryStatus_select_column", "ofType": null } } @@ -178270,7 +181671,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kyc_order_by", + "name": "lotteryStatus_order_by", "ofType": null } } @@ -178284,7 +181685,108 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kyc_bool_exp", + "name": "lotteryStatus_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": "lotteryStatus", + "ofType": 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, @@ -178297,7 +181799,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kyc_aggregate", + "name": "lotteryStatus_aggregate", "ofType": null } }, @@ -178305,18 +181807,18 @@ "deprecationReason": null }, { - "name": "kyc_by_pk", - "description": "fetch data from the table: \"kyc\" using primary key columns", + "name": "lotteryStatus_by_pk", + "description": "fetch data from the table: \"lotteryStatus\" using primary key columns", "args": [ { - "name": "externalUserId", - "description": "UUID referencing the user ID in the existing accounts table.", + "name": "value", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -178327,15 +181829,15 @@ ], "type": { "kind": "OBJECT", - "name": "kyc", + "name": "lotteryStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kyc_stream", - "description": "fetch data from the table in a streaming manner: \"kyc\"", + "name": "lotteryStatus_stream", + "description": "fetch data from the table in a streaming manner: \"lotteryStatus\"", "args": [ { "name": "batch_size", @@ -178364,7 +181866,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "kyc_stream_cursor_input", + "name": "lotteryStatus_stream_cursor_input", "ofType": null } } @@ -178378,7 +181880,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "kyc_bool_exp", + "name": "lotteryStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -178397,7 +181899,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "kyc", + "name": "lotteryStatus", "ofType": null } } @@ -178407,8 +181909,8 @@ "deprecationReason": null }, { - "name": "lotteryParameters", - "description": "fetch data from the table: \"lotteryParameters\"", + "name": "loyaltyCardNft", + "description": "fetch data from the table: \"loyaltyCardNft\"", "args": [ { "name": "distinct_on", @@ -178421,7 +181923,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "lotteryParameters_select_column", + "name": "loyaltyCardNft_select_column", "ofType": null } } @@ -178465,7 +181967,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "lotteryParameters_order_by", + "name": "loyaltyCardNft_order_by", "ofType": null } } @@ -178479,7 +181981,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "lotteryParameters_bool_exp", + "name": "loyaltyCardNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -178498,7 +182000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "lotteryParameters", + "name": "loyaltyCardNft", "ofType": null } } @@ -178508,8 +182010,8 @@ "deprecationReason": null }, { - "name": "lotteryParameters_aggregate", - "description": "fetch aggregated fields from the table: \"lotteryParameters\"", + "name": "loyaltyCardNftContract", + "description": "fetch data from the table: \"loyaltyCardNftContract\"", "args": [ { "name": "distinct_on", @@ -178522,7 +182024,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "lotteryParameters_select_column", + "name": "loyaltyCardNftContract_select_column", "ofType": null } } @@ -178566,7 +182068,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "lotteryParameters_order_by", + "name": "loyaltyCardNftContract_order_by", "ofType": null } } @@ -178580,7 +182082,108 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "lotteryParameters_bool_exp", + "name": "loyaltyCardNftContract_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": "loyaltyCardNftContract", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": 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, @@ -178593,7 +182196,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "lotteryParameters_aggregate", + "name": "loyaltyCardNftContract_aggregate", "ofType": null } }, @@ -178601,8 +182204,8 @@ "deprecationReason": null }, { - "name": "lotteryParameters_by_pk", - "description": "fetch data from the table: \"lotteryParameters\" using primary key columns", + "name": "loyaltyCardNftContract_by_pk", + "description": "fetch data from the table: \"loyaltyCardNftContract\" using primary key columns", "args": [ { "name": "id", @@ -178623,15 +182226,15 @@ ], "type": { "kind": "OBJECT", - "name": "lotteryParameters", + "name": "loyaltyCardNftContract", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "lotteryParameters_stream", - "description": "fetch data from the table in a streaming manner: \"lotteryParameters\"", + "name": "loyaltyCardNftContract_stream", + "description": "fetch data from the table in a streaming manner: \"loyaltyCardNftContract\"", "args": [ { "name": "batch_size", @@ -178660,108 +182263,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "lotteryParameters_stream_cursor_input", - "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": "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 - }, - { - "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", + "name": "loyaltyCardNftContract_stream_cursor_input", "ofType": null } } @@ -178775,7 +182277,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "lotteryStatus_bool_exp", + "name": "loyaltyCardNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -178794,7 +182296,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "lotteryStatus", + "name": "loyaltyCardNftContract", "ofType": null } } @@ -178804,8 +182306,8 @@ "deprecationReason": null }, { - "name": "lotteryStatus_aggregate", - "description": "fetch aggregated fields from the table: \"lotteryStatus\"", + "name": "loyaltyCardNft_aggregate", + "description": "fetch aggregated fields from the table: \"loyaltyCardNft\"", "args": [ { "name": "distinct_on", @@ -178818,7 +182320,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "lotteryStatus_select_column", + "name": "loyaltyCardNft_select_column", "ofType": null } } @@ -178862,7 +182364,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "lotteryStatus_order_by", + "name": "loyaltyCardNft_order_by", "ofType": null } } @@ -178876,7 +182378,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "lotteryStatus_bool_exp", + "name": "loyaltyCardNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -178889,7 +182391,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "lotteryStatus_aggregate", + "name": "loyaltyCardNft_aggregate", "ofType": null } }, @@ -178897,18 +182399,18 @@ "deprecationReason": null }, { - "name": "lotteryStatus_by_pk", - "description": "fetch data from the table: \"lotteryStatus\" using primary key columns", + "name": "loyaltyCardNft_by_pk", + "description": "fetch data from the table: \"loyaltyCardNft\" using primary key columns", "args": [ { - "name": "value", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -178919,15 +182421,15 @@ ], "type": { "kind": "OBJECT", - "name": "lotteryStatus", + "name": "loyaltyCardNft", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "lotteryStatus_stream", - "description": "fetch data from the table in a streaming manner: \"lotteryStatus\"", + "name": "loyaltyCardNft_stream", + "description": "fetch data from the table in a streaming manner: \"loyaltyCardNft\"", "args": [ { "name": "batch_size", @@ -178956,7 +182458,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "lotteryStatus_stream_cursor_input", + "name": "loyaltyCardNft_stream_cursor_input", "ofType": null } } @@ -178970,7 +182472,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "lotteryStatus_bool_exp", + "name": "loyaltyCardNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -178989,7 +182491,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "lotteryStatus", + "name": "loyaltyCardNft", "ofType": null } } @@ -178999,8 +182501,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardNft", - "description": "fetch data from the table: \"loyaltyCardNft\"", + "name": "loyaltyCardParameters", + "description": "fetch data from the table: \"loyaltyCardParameters\"", "args": [ { "name": "distinct_on", @@ -179013,7 +182515,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardNft_select_column", + "name": "loyaltyCardParameters_select_column", "ofType": null } } @@ -179057,7 +182559,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_order_by", + "name": "loyaltyCardParameters_order_by", "ofType": null } } @@ -179071,7 +182573,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_bool_exp", + "name": "loyaltyCardParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -179090,7 +182592,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardNft", + "name": "loyaltyCardParameters", "ofType": null } } @@ -179100,8 +182602,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardNftContract", - "description": "fetch data from the table: \"loyaltyCardNftContract\"", + "name": "loyaltyCardParameters_aggregate", + "description": "fetch aggregated fields from the table: \"loyaltyCardParameters\"", "args": [ { "name": "distinct_on", @@ -179114,7 +182616,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardNftContract_select_column", + "name": "loyaltyCardParameters_select_column", "ofType": null } } @@ -179158,7 +182660,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNftContract_order_by", + "name": "loyaltyCardParameters_order_by", "ofType": null } } @@ -179172,7 +182674,101 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNftContract_bool_exp", + "name": "loyaltyCardParameters_bool_exp", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "loyaltyCardParameters_aggregate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": 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": "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": "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": "loyaltyCardParameters_stream_cursor_input", + "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, @@ -179191,7 +182787,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardNftContract", + "name": "loyaltyCardParameters", "ofType": null } } @@ -179201,8 +182797,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardNftContract_aggregate", - "description": "fetch aggregated fields from the table: \"loyaltyCardNftContract\"", + "name": "loyaltyCardStatus", + "description": "fetch data from the table: \"loyaltyCardStatus\"", "args": [ { "name": "distinct_on", @@ -179215,7 +182811,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardNftContract_select_column", + "name": "loyaltyCardStatus_select_column", "ofType": null } } @@ -179259,101 +182855,7 @@ "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "loyaltyCardNftContract_aggregate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": 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": "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": "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": "loyaltyCardNftContract_stream_cursor_input", + "name": "loyaltyCardStatus_order_by", "ofType": null } } @@ -179367,7 +182869,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNftContract_bool_exp", + "name": "loyaltyCardStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -179386,7 +182888,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardNftContract", + "name": "loyaltyCardStatus", "ofType": null } } @@ -179396,8 +182898,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardNft_aggregate", - "description": "fetch aggregated fields from the table: \"loyaltyCardNft\"", + "name": "loyaltyCardStatus_aggregate", + "description": "fetch aggregated fields from the table: \"loyaltyCardStatus\"", "args": [ { "name": "distinct_on", @@ -179410,7 +182912,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardNft_select_column", + "name": "loyaltyCardStatus_select_column", "ofType": null } } @@ -179454,7 +182956,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_order_by", + "name": "loyaltyCardStatus_order_by", "ofType": null } } @@ -179468,7 +182970,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_bool_exp", + "name": "loyaltyCardStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -179481,7 +182983,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardNft_aggregate", + "name": "loyaltyCardStatus_aggregate", "ofType": null } }, @@ -179489,18 +182991,18 @@ "deprecationReason": null }, { - "name": "loyaltyCardNft_by_pk", - "description": "fetch data from the table: \"loyaltyCardNft\" using primary key columns", + "name": "loyaltyCardStatus_by_pk", + "description": "fetch data from the table: \"loyaltyCardStatus\" 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 } }, @@ -179511,15 +183013,15 @@ ], "type": { "kind": "OBJECT", - "name": "loyaltyCardNft", + "name": "loyaltyCardStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "loyaltyCardNft_stream", - "description": "fetch data from the table in a streaming manner: \"loyaltyCardNft\"", + "name": "loyaltyCardStatus_stream", + "description": "fetch data from the table in a streaming manner: \"loyaltyCardStatus\"", "args": [ { "name": "batch_size", @@ -179548,7 +183050,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_stream_cursor_input", + "name": "loyaltyCardStatus_stream_cursor_input", "ofType": null } } @@ -179562,7 +183064,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardNft_bool_exp", + "name": "loyaltyCardStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -179581,7 +183083,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardNft", + "name": "loyaltyCardStatus", "ofType": null } } @@ -179591,8 +183093,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardParameters", - "description": "fetch data from the table: \"loyaltyCardParameters\"", + "name": "minterTemporaryWallet", + "description": "fetch data from the table: \"minterTemporaryWallet\"", "args": [ { "name": "distinct_on", @@ -179605,7 +183107,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardParameters_select_column", + "name": "minterTemporaryWallet_select_column", "ofType": null } } @@ -179649,7 +183151,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_order_by", + "name": "minterTemporaryWallet_order_by", "ofType": null } } @@ -179663,7 +183165,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_bool_exp", + "name": "minterTemporaryWallet_bool_exp", "ofType": null }, "defaultValue": null, @@ -179682,7 +183184,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardParameters", + "name": "minterTemporaryWallet", "ofType": null } } @@ -179692,8 +183194,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardParameters_aggregate", - "description": "fetch aggregated fields from the table: \"loyaltyCardParameters\"", + "name": "minterTemporaryWallet_aggregate", + "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"", "args": [ { "name": "distinct_on", @@ -179706,7 +183208,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardParameters_select_column", + "name": "minterTemporaryWallet_select_column", "ofType": null } } @@ -179750,7 +183252,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_order_by", + "name": "minterTemporaryWallet_order_by", "ofType": null } } @@ -179764,7 +183266,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_bool_exp", + "name": "minterTemporaryWallet_bool_exp", "ofType": null }, "defaultValue": null, @@ -179777,7 +183279,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardParameters_aggregate", + "name": "minterTemporaryWallet_aggregate", "ofType": null } }, @@ -179785,18 +183287,18 @@ "deprecationReason": null }, { - "name": "loyaltyCardParameters_by_pk", - "description": "fetch data from the table: \"loyaltyCardParameters\" 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 } }, @@ -179807,15 +183309,15 @@ ], "type": { "kind": "OBJECT", - "name": "loyaltyCardParameters", + "name": "minterTemporaryWallet", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "loyaltyCardParameters_stream", - "description": "fetch data from the table in a streaming manner: \"loyaltyCardParameters\"", + "name": "minterTemporaryWallet_stream", + "description": "fetch data from the table in a streaming manner: \"minterTemporaryWallet\"", "args": [ { "name": "batch_size", @@ -179844,7 +183346,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_stream_cursor_input", + "name": "minterTemporaryWallet_stream_cursor_input", "ofType": null } } @@ -179858,7 +183360,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardParameters_bool_exp", + "name": "minterTemporaryWallet_bool_exp", "ofType": null }, "defaultValue": null, @@ -179877,7 +183379,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardParameters", + "name": "minterTemporaryWallet", "ofType": null } } @@ -179887,8 +183389,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardStatus", - "description": "fetch data from the table: \"loyaltyCardStatus\"", + "name": "nftMintPassword", + "description": "fetch data from the table: \"nftMintPassword\"", "args": [ { "name": "distinct_on", @@ -179901,7 +183403,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardStatus_select_column", + "name": "nftMintPassword_select_column", "ofType": null } } @@ -179945,7 +183447,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_order_by", + "name": "nftMintPassword_order_by", "ofType": null } } @@ -179959,7 +183461,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_bool_exp", + "name": "nftMintPassword_bool_exp", "ofType": null }, "defaultValue": null, @@ -179978,7 +183480,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardStatus", + "name": "nftMintPassword", "ofType": null } } @@ -179988,8 +183490,8 @@ "deprecationReason": null }, { - "name": "loyaltyCardStatus_aggregate", - "description": "fetch aggregated fields from the table: \"loyaltyCardStatus\"", + "name": "nftMintPassword_aggregate", + "description": "fetch aggregated fields from the table: \"nftMintPassword\"", "args": [ { "name": "distinct_on", @@ -180002,7 +183504,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "loyaltyCardStatus_select_column", + "name": "nftMintPassword_select_column", "ofType": null } } @@ -180046,7 +183548,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_order_by", + "name": "nftMintPassword_order_by", "ofType": null } } @@ -180060,7 +183562,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_bool_exp", + "name": "nftMintPassword_bool_exp", "ofType": null }, "defaultValue": null, @@ -180073,7 +183575,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardStatus_aggregate", + "name": "nftMintPassword_aggregate", "ofType": null } }, @@ -180081,18 +183583,18 @@ "deprecationReason": null }, { - "name": "loyaltyCardStatus_by_pk", - "description": "fetch data from the table: \"loyaltyCardStatus\" using primary key columns", + "name": "nftMintPassword_by_pk", + "description": "fetch data from the table: \"nftMintPassword\" using primary key columns", "args": [ { - "name": "value", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -180103,15 +183605,15 @@ ], "type": { "kind": "OBJECT", - "name": "loyaltyCardStatus", + "name": "nftMintPassword", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "loyaltyCardStatus_stream", - "description": "fetch data from the table in a streaming manner: \"loyaltyCardStatus\"", + "name": "nftMintPassword_stream", + "description": "fetch data from the table in a streaming manner: \"nftMintPassword\"", "args": [ { "name": "batch_size", @@ -180140,7 +183642,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_stream_cursor_input", + "name": "nftMintPassword_stream_cursor_input", "ofType": null } } @@ -180154,7 +183656,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "loyaltyCardStatus_bool_exp", + "name": "nftMintPassword_bool_exp", "ofType": null }, "defaultValue": null, @@ -180173,7 +183675,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "loyaltyCardStatus", + "name": "nftMintPassword", "ofType": null } } @@ -180183,8 +183685,8 @@ "deprecationReason": null }, { - "name": "minterTemporaryWallet", - "description": "fetch data from the table: \"minterTemporaryWallet\"", + "name": "nftStatus", + "description": "fetch data from the table: \"nftStatus\"", "args": [ { "name": "distinct_on", @@ -180197,7 +183699,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "minterTemporaryWallet_select_column", + "name": "nftStatus_select_column", "ofType": null } } @@ -180241,7 +183743,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_order_by", + "name": "nftStatus_order_by", "ofType": null } } @@ -180255,7 +183757,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_bool_exp", + "name": "nftStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -180274,7 +183776,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "minterTemporaryWallet", + "name": "nftStatus", "ofType": null } } @@ -180284,8 +183786,8 @@ "deprecationReason": null }, { - "name": "minterTemporaryWallet_aggregate", - "description": "fetch aggregated fields from the table: \"minterTemporaryWallet\"", + "name": "nftStatus_aggregate", + "description": "fetch aggregated fields from the table: \"nftStatus\"", "args": [ { "name": "distinct_on", @@ -180298,7 +183800,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "minterTemporaryWallet_select_column", + "name": "nftStatus_select_column", "ofType": null } } @@ -180342,7 +183844,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_order_by", + "name": "nftStatus_order_by", "ofType": null } } @@ -180356,7 +183858,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_bool_exp", + "name": "nftStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -180369,7 +183871,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "minterTemporaryWallet_aggregate", + "name": "nftStatus_aggregate", "ofType": null } }, @@ -180377,12 +183879,12 @@ "deprecationReason": null }, { - "name": "minterTemporaryWallet_by_pk", - "description": "fetch data from the table: \"minterTemporaryWallet\" using primary key columns", + "name": "nftStatus_by_pk", + "description": "fetch data from the table: \"nftStatus\" using primary key columns", "args": [ { - "name": "address", - "description": "The blockchain address of the temporary wallet.", + "name": "value", + "description": null, "type": { "kind": "NON_NULL", "name": null, @@ -180399,15 +183901,15 @@ ], "type": { "kind": "OBJECT", - "name": "minterTemporaryWallet", + "name": "nftStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "minterTemporaryWallet_stream", - "description": "fetch data from the table in a streaming manner: \"minterTemporaryWallet\"", + "name": "nftStatus_stream", + "description": "fetch data from the table in a streaming manner: \"nftStatus\"", "args": [ { "name": "batch_size", @@ -180436,7 +183938,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_stream_cursor_input", + "name": "nftStatus_stream_cursor_input", "ofType": null } } @@ -180450,7 +183952,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "minterTemporaryWallet_bool_exp", + "name": "nftStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -180469,7 +183971,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "minterTemporaryWallet", + "name": "nftStatus", "ofType": null } } @@ -180479,8 +183981,8 @@ "deprecationReason": null }, { - "name": "nftMintPassword", - "description": "fetch data from the table: \"nftMintPassword\"", + "name": "nftTransfer", + "description": "fetch data from the table: \"nftTransfer\"", "args": [ { "name": "distinct_on", @@ -180493,7 +183995,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nftMintPassword_select_column", + "name": "nftTransfer_select_column", "ofType": null } } @@ -180537,7 +184039,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_order_by", + "name": "nftTransfer_order_by", "ofType": null } } @@ -180551,7 +184053,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_bool_exp", + "name": "nftTransfer_bool_exp", "ofType": null }, "defaultValue": null, @@ -180570,7 +184072,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftMintPassword", + "name": "nftTransfer", "ofType": null } } @@ -180580,8 +184082,8 @@ "deprecationReason": null }, { - "name": "nftMintPassword_aggregate", - "description": "fetch aggregated fields from the table: \"nftMintPassword\"", + "name": "nftTransfer_aggregate", + "description": "fetch aggregated fields from the table: \"nftTransfer\"", "args": [ { "name": "distinct_on", @@ -180594,7 +184096,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nftMintPassword_select_column", + "name": "nftTransfer_select_column", "ofType": null } } @@ -180638,7 +184140,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_order_by", + "name": "nftTransfer_order_by", "ofType": null } } @@ -180652,7 +184154,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_bool_exp", + "name": "nftTransfer_bool_exp", "ofType": null }, "defaultValue": null, @@ -180665,7 +184167,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftMintPassword_aggregate", + "name": "nftTransfer_aggregate", "ofType": null } }, @@ -180673,8 +184175,8 @@ "deprecationReason": null }, { - "name": "nftMintPassword_by_pk", - "description": "fetch data from the table: \"nftMintPassword\" using primary key columns", + "name": "nftTransfer_by_pk", + "description": "fetch data from the table: \"nftTransfer\" using primary key columns", "args": [ { "name": "id", @@ -180695,15 +184197,15 @@ ], "type": { "kind": "OBJECT", - "name": "nftMintPassword", + "name": "nftTransfer", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nftMintPassword_stream", - "description": "fetch data from the table in a streaming manner: \"nftMintPassword\"", + "name": "nftTransfer_stream", + "description": "fetch data from the table in a streaming manner: \"nftTransfer\"", "args": [ { "name": "batch_size", @@ -180732,7 +184234,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_stream_cursor_input", + "name": "nftTransfer_stream_cursor_input", "ofType": null } } @@ -180746,7 +184248,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftMintPassword_bool_exp", + "name": "nftTransfer_bool_exp", "ofType": null }, "defaultValue": null, @@ -180765,7 +184267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftMintPassword", + "name": "nftTransfer", "ofType": null } } @@ -180775,8 +184277,8 @@ "deprecationReason": null }, { - "name": "nftStatus", - "description": "fetch data from the table: \"nftStatus\"", + "name": "order", + "description": "fetch data from the table: \"order\"", "args": [ { "name": "distinct_on", @@ -180789,7 +184291,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nftStatus_select_column", + "name": "order_select_column", "ofType": null } } @@ -180833,7 +184335,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftStatus_order_by", + "name": "order_order_by", "ofType": null } } @@ -180847,7 +184349,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftStatus_bool_exp", + "name": "order_bool_exp", "ofType": null }, "defaultValue": null, @@ -180866,7 +184368,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftStatus", + "name": "order", "ofType": null } } @@ -180876,8 +184378,8 @@ "deprecationReason": null }, { - "name": "nftStatus_aggregate", - "description": "fetch aggregated fields from the table: \"nftStatus\"", + "name": "orderStatus", + "description": "fetch data from the table: \"orderStatus\"", "args": [ { "name": "distinct_on", @@ -180890,7 +184392,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nftStatus_select_column", + "name": "orderStatus_select_column", "ofType": null } } @@ -180934,7 +184436,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftStatus_order_by", + "name": "orderStatus_order_by", "ofType": null } } @@ -180948,7 +184450,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftStatus_bool_exp", + "name": "orderStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -180960,75 +184462,82 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "nftStatus_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": "nftStatus_by_pk", - "description": "fetch data from the table: \"nftStatus\" 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": "nftStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nftStatus_stream", - "description": "fetch data from the table in a streaming manner: \"nftStatus\"", - "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": "nftStatus_stream_cursor_input", + "name": "orderStatus_order_by", "ofType": null } } @@ -181042,7 +184551,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftStatus_bool_exp", + "name": "orderStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -181054,82 +184563,75 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "nftStatus", - "ofType": null - } - } + "kind": "OBJECT", + "name": "orderStatus_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nftTransfer", - "description": "fetch data from the table: \"nftTransfer\"", + "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": "nftTransfer_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": "nftTransfer_order_by", + "name": "orderStatus_stream_cursor_input", "ofType": null } } @@ -181143,7 +184645,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftTransfer_bool_exp", + "name": "orderStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -181162,7 +184664,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftTransfer", + "name": "orderStatus", "ofType": null } } @@ -181172,8 +184674,8 @@ "deprecationReason": null }, { - "name": "nftTransfer_aggregate", - "description": "fetch aggregated fields from the table: \"nftTransfer\"", + "name": "order_aggregate", + "description": "fetch aggregated fields from the table: \"order\"", "args": [ { "name": "distinct_on", @@ -181186,7 +184688,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "nftTransfer_select_column", + "name": "order_select_column", "ofType": null } } @@ -181230,7 +184732,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftTransfer_order_by", + "name": "order_order_by", "ofType": null } } @@ -181244,7 +184746,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftTransfer_bool_exp", + "name": "order_bool_exp", "ofType": null }, "defaultValue": null, @@ -181257,7 +184759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftTransfer_aggregate", + "name": "order_aggregate", "ofType": null } }, @@ -181265,8 +184767,8 @@ "deprecationReason": null }, { - "name": "nftTransfer_by_pk", - "description": "fetch data from the table: \"nftTransfer\" using primary key columns", + "name": "order_by_pk", + "description": "fetch data from the table: \"order\" using primary key columns", "args": [ { "name": "id", @@ -181287,15 +184789,15 @@ ], "type": { "kind": "OBJECT", - "name": "nftTransfer", + "name": "order", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "nftTransfer_stream", - "description": "fetch data from the table in a streaming manner: \"nftTransfer\"", + "name": "order_stream", + "description": "fetch data from the table in a streaming manner: \"order\"", "args": [ { "name": "batch_size", @@ -181324,7 +184826,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "nftTransfer_stream_cursor_input", + "name": "order_stream_cursor_input", "ofType": null } } @@ -181338,7 +184840,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "nftTransfer_bool_exp", + "name": "order_bool_exp", "ofType": null }, "defaultValue": null, @@ -181357,7 +184859,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "nftTransfer", + "name": "order", "ofType": null } } @@ -181367,8 +184869,8 @@ "deprecationReason": null }, { - "name": "order", - "description": "fetch data from the table: \"order\"", + "name": "packEventPassNft", + "description": "fetch data from the table: \"packEventPassNft\"", "args": [ { "name": "distinct_on", @@ -181381,7 +184883,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "order_select_column", + "name": "packEventPassNft_select_column", "ofType": null } } @@ -181425,7 +184927,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "order_order_by", + "name": "packEventPassNft_order_by", "ofType": null } } @@ -181439,7 +184941,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "order_bool_exp", + "name": "packEventPassNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -181458,7 +184960,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "order", + "name": "packEventPassNft", "ofType": null } } @@ -181468,8 +184970,8 @@ "deprecationReason": null }, { - "name": "orderStatus", - "description": "fetch data from the table: \"orderStatus\"", + "name": "packEventPassNft_aggregate", + "description": "fetch aggregated fields from the table: \"packEventPassNft\"", "args": [ { "name": "distinct_on", @@ -181482,7 +184984,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "orderStatus_select_column", + "name": "packEventPassNft_select_column", "ofType": null } } @@ -181526,7 +185028,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderStatus_order_by", + "name": "packEventPassNft_order_by", "ofType": null } } @@ -181540,7 +185042,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orderStatus_bool_exp", + "name": "packEventPassNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -181552,84 +185054,28 @@ "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": "packEventPassNft_aggregate", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderStatus_aggregate", - "description": "fetch aggregated fields from the table: \"orderStatus\"", + "name": "packEventPassNft_by_pk", + "description": "fetch data from the table: \"packEventPassNft\" 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": "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", + "name": "eventPassNftId", + "description": "Identifier for the event pass NFT.", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "orderStatus_order_by", - "ofType": null - } + "kind": "SCALAR", + "name": "uuid", + "ofType": null } }, "defaultValue": null, @@ -181637,43 +185083,14 @@ "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "orderStatus_aggregate", - "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, + "name": "packNftSupplyId", + "description": "Identifier for the pack NFT supply.", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -181684,15 +185101,15 @@ ], "type": { "kind": "OBJECT", - "name": "orderStatus", + "name": "packEventPassNft", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orderStatus_stream", - "description": "fetch data from the table in a streaming manner: \"orderStatus\"", + "name": "packEventPassNft_stream", + "description": "fetch data from the table in a streaming manner: \"packEventPassNft\"", "args": [ { "name": "batch_size", @@ -181721,7 +185138,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "orderStatus_stream_cursor_input", + "name": "packEventPassNft_stream_cursor_input", "ofType": null } } @@ -181735,7 +185152,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "orderStatus_bool_exp", + "name": "packEventPassNft_bool_exp", "ofType": null }, "defaultValue": null, @@ -181754,7 +185171,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "orderStatus", + "name": "packEventPassNft", "ofType": null } } @@ -181764,8 +185181,8 @@ "deprecationReason": null }, { - "name": "order_aggregate", - "description": "fetch aggregated fields from the table: \"order\"", + "name": "packNftContract", + "description": "fetch data from the table: \"packNftContract\"", "args": [ { "name": "distinct_on", @@ -181778,7 +185195,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "order_select_column", + "name": "packNftContract_select_column", "ofType": null } } @@ -181822,101 +185239,7 @@ "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": "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": "OBJECT", - "name": "order", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order_stream", - "description": "fetch data from the table in a streaming manner: \"order\"", - "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": "order_stream_cursor_input", + "name": "packNftContract_order_by", "ofType": null } } @@ -181930,7 +185253,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "order_bool_exp", + "name": "packNftContract_bool_exp", "ofType": null }, "defaultValue": null, @@ -181949,7 +185272,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "order", + "name": "packNftContract", "ofType": null } } @@ -181959,8 +185282,8 @@ "deprecationReason": null }, { - "name": "packEventPassNft", - "description": "fetch data from the table: \"packEventPassNft\"", + "name": "packNftContractEventPass", + "description": "fetch data from the table: \"packNftContractEventPass\"", "args": [ { "name": "distinct_on", @@ -181973,7 +185296,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packEventPassNft_select_column", + "name": "packNftContractEventPass_select_column", "ofType": null } } @@ -182017,7 +185340,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_order_by", + "name": "packNftContractEventPass_order_by", "ofType": null } } @@ -182031,7 +185354,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_bool_exp", + "name": "packNftContractEventPass_bool_exp", "ofType": null }, "defaultValue": null, @@ -182050,7 +185373,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packEventPassNft", + "name": "packNftContractEventPass", "ofType": null } } @@ -182060,8 +185383,8 @@ "deprecationReason": null }, { - "name": "packEventPassNft_aggregate", - "description": "fetch aggregated fields from the table: \"packEventPassNft\"", + "name": "packNftContractEventPass_aggregate", + "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"", "args": [ { "name": "distinct_on", @@ -182074,7 +185397,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packEventPassNft_select_column", + "name": "packNftContractEventPass_select_column", "ofType": null } } @@ -182118,7 +185441,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_order_by", + "name": "packNftContractEventPass_order_by", "ofType": null } } @@ -182132,7 +185455,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_bool_exp", + "name": "packNftContractEventPass_bool_exp", "ofType": null }, "defaultValue": null, @@ -182145,7 +185468,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packEventPassNft_aggregate", + "name": "packNftContractEventPass_aggregate", "ofType": null } }, @@ -182153,18 +185476,18 @@ "deprecationReason": null }, { - "name": "packEventPassNft_by_pk", - "description": "fetch data from the table: \"packEventPassNft\" using primary key columns", + "name": "packNftContractEventPass_by_pk", + "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns", "args": [ { - "name": "eventPassNftId", - "description": "Identifier for the event pass NFT.", + "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": "uuid", + "name": "String", "ofType": null } }, @@ -182173,8 +185496,8 @@ "deprecationReason": null }, { - "name": "packNftSupplyId", - "description": "Identifier for the pack NFT supply.", + "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, @@ -182191,15 +185514,15 @@ ], "type": { "kind": "OBJECT", - "name": "packEventPassNft", + "name": "packNftContractEventPass", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "packEventPassNft_stream", - "description": "fetch data from the table in a streaming manner: \"packEventPassNft\"", + "name": "packNftContractEventPass_stream", + "description": "fetch data from the table in a streaming manner: \"packNftContractEventPass\"", "args": [ { "name": "batch_size", @@ -182228,7 +185551,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_stream_cursor_input", + "name": "packNftContractEventPass_stream_cursor_input", "ofType": null } } @@ -182242,7 +185565,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packEventPassNft_bool_exp", + "name": "packNftContractEventPass_bool_exp", "ofType": null }, "defaultValue": null, @@ -182261,7 +185584,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packEventPassNft", + "name": "packNftContractEventPass", "ofType": null } } @@ -182271,8 +185594,8 @@ "deprecationReason": null }, { - "name": "packNftContract", - "description": "fetch data from the table: \"packNftContract\"", + "name": "packNftContract_aggregate", + "description": "fetch aggregated fields from the table: \"packNftContract\"", "args": [ { "name": "distinct_on", @@ -182351,6 +185674,100 @@ "deprecationReason": null } ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "packNftContract_aggregate", + "ofType": 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 + } + ], + "type": { + "kind": "OBJECT", + "name": "packNftContract", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "packNftContract_stream", + "description": "fetch data from the table in a streaming manner: \"packNftContract\"", + "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": "packNftContract_stream_cursor_input", + "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, @@ -182372,8 +185789,8 @@ "deprecationReason": null }, { - "name": "packNftContractEventPass", - "description": "fetch data from the table: \"packNftContractEventPass\"", + "name": "packNftSupply", + "description": "fetch data from the table: \"packNftSupply\"", "args": [ { "name": "distinct_on", @@ -182386,7 +185803,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packNftContractEventPass_select_column", + "name": "packNftSupply_select_column", "ofType": null } } @@ -182430,7 +185847,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_order_by", + "name": "packNftSupply_order_by", "ofType": null } } @@ -182444,7 +185861,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_bool_exp", + "name": "packNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -182463,7 +185880,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftContractEventPass", + "name": "packNftSupply", "ofType": null } } @@ -182473,8 +185890,8 @@ "deprecationReason": null }, { - "name": "packNftContractEventPass_aggregate", - "description": "fetch aggregated fields from the table: \"packNftContractEventPass\"", + "name": "packNftSupply_aggregate", + "description": "fetch aggregated fields from the table: \"packNftSupply\"", "args": [ { "name": "distinct_on", @@ -182487,7 +185904,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packNftContractEventPass_select_column", + "name": "packNftSupply_select_column", "ofType": null } } @@ -182531,7 +185948,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_order_by", + "name": "packNftSupply_order_by", "ofType": null } } @@ -182545,7 +185962,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_bool_exp", + "name": "packNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -182558,7 +185975,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftContractEventPass_aggregate", + "name": "packNftSupply_aggregate", "ofType": null } }, @@ -182566,28 +185983,12 @@ "deprecationReason": null }, { - "name": "packNftContractEventPass_by_pk", - "description": "fetch data from the table: \"packNftContractEventPass\" using primary key columns", + "name": "packNftSupply_by_pk", + "description": "fetch data from the table: \"packNftSupply\" 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, @@ -182604,15 +186005,15 @@ ], "type": { "kind": "OBJECT", - "name": "packNftContractEventPass", + "name": "packNftSupply", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "packNftContractEventPass_stream", - "description": "fetch data from the table in a streaming manner: \"packNftContractEventPass\"", + "name": "packNftSupply_stream", + "description": "fetch data from the table in a streaming manner: \"packNftSupply\"", "args": [ { "name": "batch_size", @@ -182641,7 +186042,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_stream_cursor_input", + "name": "packNftSupply_stream_cursor_input", "ofType": null } } @@ -182655,7 +186056,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftContractEventPass_bool_exp", + "name": "packNftSupply_bool_exp", "ofType": null }, "defaultValue": null, @@ -182674,7 +186075,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftContractEventPass", + "name": "packNftSupply", "ofType": null } } @@ -182684,8 +186085,8 @@ "deprecationReason": null }, { - "name": "packNftContract_aggregate", - "description": "fetch aggregated fields from the table: \"packNftContract\"", + "name": "packOrderSums", + "description": "fetch data from the table: \"packOrderSums\"", "args": [ { "name": "distinct_on", @@ -182698,7 +186099,108 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packNftContract_select_column", + "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": "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 + }, + { + "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 } } @@ -182742,7 +186244,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftContract_order_by", + "name": "packOrderSums_order_by", "ofType": null } } @@ -182756,7 +186258,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftContract_bool_exp", + "name": "packOrderSums_bool_exp", "ofType": null }, "defaultValue": null, @@ -182769,7 +186271,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftContract_aggregate", + "name": "packOrderSums_aggregate", "ofType": null } }, @@ -182777,18 +186279,18 @@ "deprecationReason": null }, { - "name": "packNftContract_by_pk", - "description": "fetch data from the table: \"packNftContract\" using primary key columns", + "name": "packOrderSums_by_pk", + "description": "fetch data from the table: \"packOrderSums\" using primary key columns", "args": [ { - "name": "id", - "description": "Unique identifier for each pack NFT contract.", + "name": "packId", + "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -182799,15 +186301,15 @@ ], "type": { "kind": "OBJECT", - "name": "packNftContract", + "name": "packOrderSums", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "packNftContract_stream", - "description": "fetch data from the table in a streaming manner: \"packNftContract\"", + "name": "packOrderSums_stream", + "description": "fetch data from the table in a streaming manner: \"packOrderSums\"", "args": [ { "name": "batch_size", @@ -182836,7 +186338,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftContract_stream_cursor_input", + "name": "packOrderSums_stream_cursor_input", "ofType": null } } @@ -182850,7 +186352,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftContract_bool_exp", + "name": "packOrderSums_bool_exp", "ofType": null }, "defaultValue": null, @@ -182869,7 +186371,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftContract", + "name": "packOrderSums", "ofType": null } } @@ -182879,8 +186381,8 @@ "deprecationReason": null }, { - "name": "packNftSupply", - "description": "fetch data from the table: \"packNftSupply\"", + "name": "passAmount", + "description": "fetch data from the table: \"passAmount\"", "args": [ { "name": "distinct_on", @@ -182893,7 +186395,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packNftSupply_select_column", + "name": "passAmount_select_column", "ofType": null } } @@ -182937,7 +186439,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_order_by", + "name": "passAmount_order_by", "ofType": null } } @@ -182951,7 +186453,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_bool_exp", + "name": "passAmount_bool_exp", "ofType": null }, "defaultValue": null, @@ -182970,7 +186472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftSupply", + "name": "passAmount", "ofType": null } } @@ -182980,8 +186482,8 @@ "deprecationReason": null }, { - "name": "packNftSupply_aggregate", - "description": "fetch aggregated fields from the table: \"packNftSupply\"", + "name": "passAmount_aggregate", + "description": "fetch aggregated fields from the table: \"passAmount\"", "args": [ { "name": "distinct_on", @@ -182994,7 +186496,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packNftSupply_select_column", + "name": "passAmount_select_column", "ofType": null } } @@ -183038,7 +186540,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_order_by", + "name": "passAmount_order_by", "ofType": null } } @@ -183052,7 +186554,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_bool_exp", + "name": "passAmount_bool_exp", "ofType": null }, "defaultValue": null, @@ -183065,7 +186567,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftSupply_aggregate", + "name": "passAmount_aggregate", "ofType": null } }, @@ -183073,8 +186575,8 @@ "deprecationReason": null }, { - "name": "packNftSupply_by_pk", - "description": "fetch data from the table: \"packNftSupply\" using primary key columns", + "name": "passAmount_by_pk", + "description": "fetch data from the table: \"passAmount\" using primary key columns", "args": [ { "name": "id", @@ -183095,15 +186597,15 @@ ], "type": { "kind": "OBJECT", - "name": "packNftSupply", + "name": "passAmount", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "packNftSupply_stream", - "description": "fetch data from the table in a streaming manner: \"packNftSupply\"", + "name": "passAmount_stream", + "description": "fetch data from the table in a streaming manner: \"passAmount\"", "args": [ { "name": "batch_size", @@ -183132,7 +186634,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_stream_cursor_input", + "name": "passAmount_stream_cursor_input", "ofType": null } } @@ -183146,7 +186648,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packNftSupply_bool_exp", + "name": "passAmount_bool_exp", "ofType": null }, "defaultValue": null, @@ -183165,7 +186667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packNftSupply", + "name": "passAmount", "ofType": null } } @@ -183175,8 +186677,8 @@ "deprecationReason": null }, { - "name": "packOrderSums", - "description": "fetch data from the table: \"packOrderSums\"", + "name": "passPricing", + "description": "fetch data from the table: \"passPricing\"", "args": [ { "name": "distinct_on", @@ -183189,7 +186691,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packOrderSums_select_column", + "name": "passPricing_select_column", "ofType": null } } @@ -183233,7 +186735,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_order_by", + "name": "passPricing_order_by", "ofType": null } } @@ -183247,7 +186749,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_bool_exp", + "name": "passPricing_bool_exp", "ofType": null }, "defaultValue": null, @@ -183266,7 +186768,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packOrderSums", + "name": "passPricing", "ofType": null } } @@ -183276,8 +186778,8 @@ "deprecationReason": null }, { - "name": "packOrderSums_aggregate", - "description": "fetch aggregated fields from the table: \"packOrderSums\"", + "name": "passPricing_aggregate", + "description": "fetch aggregated fields from the table: \"passPricing\"", "args": [ { "name": "distinct_on", @@ -183290,7 +186792,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "packOrderSums_select_column", + "name": "passPricing_select_column", "ofType": null } } @@ -183334,7 +186836,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_order_by", + "name": "passPricing_order_by", "ofType": null } } @@ -183348,7 +186850,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_bool_exp", + "name": "passPricing_bool_exp", "ofType": null }, "defaultValue": null, @@ -183361,7 +186863,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packOrderSums_aggregate", + "name": "passPricing_aggregate", "ofType": null } }, @@ -183369,18 +186871,18 @@ "deprecationReason": null }, { - "name": "packOrderSums_by_pk", - "description": "fetch data from the table: \"packOrderSums\" using primary key columns", + "name": "passPricing_by_pk", + "description": "fetch data from the table: \"passPricing\" using primary key columns", "args": [ { - "name": "packId", + "name": "id", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "uuid", "ofType": null } }, @@ -183391,15 +186893,15 @@ ], "type": { "kind": "OBJECT", - "name": "packOrderSums", + "name": "passPricing", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "packOrderSums_stream", - "description": "fetch data from the table in a streaming manner: \"packOrderSums\"", + "name": "passPricing_stream", + "description": "fetch data from the table in a streaming manner: \"passPricing\"", "args": [ { "name": "batch_size", @@ -183428,7 +186930,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_stream_cursor_input", + "name": "passPricing_stream_cursor_input", "ofType": null } } @@ -183442,7 +186944,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "packOrderSums_bool_exp", + "name": "passPricing_bool_exp", "ofType": null }, "defaultValue": null, @@ -183461,7 +186963,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "packOrderSums", + "name": "passPricing", "ofType": null } } @@ -183471,8 +186973,8 @@ "deprecationReason": null }, { - "name": "passAmount", - "description": "fetch data from the table: \"passAmount\"", + "name": "pendingOrder", + "description": "fetch data from the table: \"pendingOrder\"", "args": [ { "name": "distinct_on", @@ -183485,7 +186987,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "passAmount_select_column", + "name": "pendingOrder_select_column", "ofType": null } } @@ -183529,7 +187031,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passAmount_order_by", + "name": "pendingOrder_order_by", "ofType": null } } @@ -183543,7 +187045,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passAmount_bool_exp", + "name": "pendingOrder_bool_exp", "ofType": null }, "defaultValue": null, @@ -183562,7 +187064,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passAmount", + "name": "pendingOrder", "ofType": null } } @@ -183572,8 +187074,8 @@ "deprecationReason": null }, { - "name": "passAmount_aggregate", - "description": "fetch aggregated fields from the table: \"passAmount\"", + "name": "pendingOrder_aggregate", + "description": "fetch aggregated fields from the table: \"pendingOrder\"", "args": [ { "name": "distinct_on", @@ -183586,7 +187088,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "passAmount_select_column", + "name": "pendingOrder_select_column", "ofType": null } } @@ -183630,7 +187132,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passAmount_order_by", + "name": "pendingOrder_order_by", "ofType": null } } @@ -183644,7 +187146,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passAmount_bool_exp", + "name": "pendingOrder_bool_exp", "ofType": null }, "defaultValue": null, @@ -183657,7 +187159,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passAmount_aggregate", + "name": "pendingOrder_aggregate", "ofType": null } }, @@ -183665,8 +187167,8 @@ "deprecationReason": null }, { - "name": "passAmount_by_pk", - "description": "fetch data from the table: \"passAmount\" using primary key columns", + "name": "pendingOrder_by_pk", + "description": "fetch data from the table: \"pendingOrder\" using primary key columns", "args": [ { "name": "id", @@ -183687,15 +187189,15 @@ ], "type": { "kind": "OBJECT", - "name": "passAmount", + "name": "pendingOrder", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "passAmount_stream", - "description": "fetch data from the table in a streaming manner: \"passAmount\"", + "name": "pendingOrder_stream", + "description": "fetch data from the table in a streaming manner: \"pendingOrder\"", "args": [ { "name": "batch_size", @@ -183724,7 +187226,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passAmount_stream_cursor_input", + "name": "pendingOrder_stream_cursor_input", "ofType": null } } @@ -183738,7 +187240,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passAmount_bool_exp", + "name": "pendingOrder_bool_exp", "ofType": null }, "defaultValue": null, @@ -183757,7 +187259,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passAmount", + "name": "pendingOrder", "ofType": null } } @@ -183767,8 +187269,8 @@ "deprecationReason": null }, { - "name": "passPricing", - "description": "fetch data from the table: \"passPricing\"", + "name": "publishableApiKey", + "description": "fetch data from the table: \"publishableApiKey\"", "args": [ { "name": "distinct_on", @@ -183781,7 +187283,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "passPricing_select_column", + "name": "publishableApiKey_select_column", "ofType": null } } @@ -183825,7 +187327,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passPricing_order_by", + "name": "publishableApiKey_order_by", "ofType": null } } @@ -183839,7 +187341,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passPricing_bool_exp", + "name": "publishableApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -183858,7 +187360,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passPricing", + "name": "publishableApiKey", "ofType": null } } @@ -183868,8 +187370,8 @@ "deprecationReason": null }, { - "name": "passPricing_aggregate", - "description": "fetch aggregated fields from the table: \"passPricing\"", + "name": "publishableApiKey_aggregate", + "description": "fetch aggregated fields from the table: \"publishableApiKey\"", "args": [ { "name": "distinct_on", @@ -183882,7 +187384,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "passPricing_select_column", + "name": "publishableApiKey_select_column", "ofType": null } } @@ -183926,7 +187428,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passPricing_order_by", + "name": "publishableApiKey_order_by", "ofType": null } } @@ -183940,7 +187442,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passPricing_bool_exp", + "name": "publishableApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -183953,7 +187455,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passPricing_aggregate", + "name": "publishableApiKey_aggregate", "ofType": null } }, @@ -183961,8 +187463,8 @@ "deprecationReason": null }, { - "name": "passPricing_by_pk", - "description": "fetch data from the table: \"passPricing\" using primary key columns", + "name": "publishableApiKey_by_pk", + "description": "fetch data from the table: \"publishableApiKey\" using primary key columns", "args": [ { "name": "id", @@ -183983,15 +187485,15 @@ ], "type": { "kind": "OBJECT", - "name": "passPricing", + "name": "publishableApiKey", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "passPricing_stream", - "description": "fetch data from the table in a streaming manner: \"passPricing\"", + "name": "publishableApiKey_stream", + "description": "fetch data from the table in a streaming manner: \"publishableApiKey\"", "args": [ { "name": "batch_size", @@ -184020,7 +187522,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "passPricing_stream_cursor_input", + "name": "publishableApiKey_stream_cursor_input", "ofType": null } } @@ -184034,7 +187536,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "passPricing_bool_exp", + "name": "publishableApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -184053,7 +187555,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "passPricing", + "name": "publishableApiKey", "ofType": null } } @@ -184063,8 +187565,8 @@ "deprecationReason": null }, { - "name": "pendingOrder", - "description": "fetch data from the table: \"pendingOrder\"", + "name": "roleAssignment", + "description": "fetch data from the table: \"roleAssignment\"", "args": [ { "name": "distinct_on", @@ -184077,7 +187579,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "pendingOrder_select_column", + "name": "roleAssignment_select_column", "ofType": null } } @@ -184121,7 +187623,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_order_by", + "name": "roleAssignment_order_by", "ofType": null } } @@ -184135,7 +187637,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_bool_exp", + "name": "roleAssignment_bool_exp", "ofType": null }, "defaultValue": null, @@ -184154,7 +187656,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "pendingOrder", + "name": "roleAssignment", "ofType": null } } @@ -184164,8 +187666,8 @@ "deprecationReason": null }, { - "name": "pendingOrder_aggregate", - "description": "fetch aggregated fields from the table: \"pendingOrder\"", + "name": "roleAssignment_aggregate", + "description": "fetch aggregated fields from the table: \"roleAssignment\"", "args": [ { "name": "distinct_on", @@ -184178,7 +187680,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "pendingOrder_select_column", + "name": "roleAssignment_select_column", "ofType": null } } @@ -184222,7 +187724,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_order_by", + "name": "roleAssignment_order_by", "ofType": null } } @@ -184236,7 +187738,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_bool_exp", + "name": "roleAssignment_bool_exp", "ofType": null }, "defaultValue": null, @@ -184249,7 +187751,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "pendingOrder_aggregate", + "name": "roleAssignment_aggregate", "ofType": null } }, @@ -184257,37 +187759,8 @@ "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 - } - ], - "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\"", + "name": "roleAssignment_stream", + "description": "fetch data from the table in a streaming manner: \"roleAssignment\"", "args": [ { "name": "batch_size", @@ -184316,7 +187789,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_stream_cursor_input", + "name": "roleAssignment_stream_cursor_input", "ofType": null } } @@ -184330,7 +187803,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "pendingOrder_bool_exp", + "name": "roleAssignment_bool_exp", "ofType": null }, "defaultValue": null, @@ -184349,7 +187822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "pendingOrder", + "name": "roleAssignment", "ofType": null } } @@ -184359,8 +187832,8 @@ "deprecationReason": null }, { - "name": "publishableApiKey", - "description": "fetch data from the table: \"publishableApiKey\"", + "name": "roles", + "description": "fetch data from the table: \"roles\"", "args": [ { "name": "distinct_on", @@ -184373,7 +187846,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "publishableApiKey_select_column", + "name": "roles_select_column", "ofType": null } } @@ -184417,7 +187890,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_order_by", + "name": "roles_order_by", "ofType": null } } @@ -184431,7 +187904,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_bool_exp", + "name": "roles_bool_exp", "ofType": null }, "defaultValue": null, @@ -184450,7 +187923,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "publishableApiKey", + "name": "roles", "ofType": null } } @@ -184460,8 +187933,8 @@ "deprecationReason": null }, { - "name": "publishableApiKey_aggregate", - "description": "fetch aggregated fields from the table: \"publishableApiKey\"", + "name": "roles_aggregate", + "description": "fetch aggregated fields from the table: \"roles\"", "args": [ { "name": "distinct_on", @@ -184474,7 +187947,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "publishableApiKey_select_column", + "name": "roles_select_column", "ofType": null } } @@ -184518,7 +187991,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_order_by", + "name": "roles_order_by", "ofType": null } } @@ -184532,7 +188005,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_bool_exp", + "name": "roles_bool_exp", "ofType": null }, "defaultValue": null, @@ -184545,7 +188018,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "publishableApiKey_aggregate", + "name": "roles_aggregate", "ofType": null } }, @@ -184553,18 +188026,18 @@ "deprecationReason": null }, { - "name": "publishableApiKey_by_pk", - "description": "fetch data from the table: \"publishableApiKey\" using primary key columns", + "name": "roles_by_pk", + "description": "fetch data from the table: \"roles\" using primary key columns", "args": [ { - "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": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "uuid", + "name": "String", "ofType": null } }, @@ -184575,15 +188048,15 @@ ], "type": { "kind": "OBJECT", - "name": "publishableApiKey", + "name": "roles", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "publishableApiKey_stream", - "description": "fetch data from the table in a streaming manner: \"publishableApiKey\"", + "name": "roles_stream", + "description": "fetch data from the table in a streaming manner: \"roles\"", "args": [ { "name": "batch_size", @@ -184612,7 +188085,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_stream_cursor_input", + "name": "roles_stream_cursor_input", "ofType": null } } @@ -184626,7 +188099,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "publishableApiKey_bool_exp", + "name": "roles_bool_exp", "ofType": null }, "defaultValue": null, @@ -184645,7 +188118,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "publishableApiKey", + "name": "roles", "ofType": null } } @@ -184655,8 +188128,8 @@ "deprecationReason": null }, { - "name": "roleAssignment", - "description": "fetch data from the table: \"roleAssignment\"", + "name": "secretApiKey", + "description": "fetch data from the table: \"secretApiKey\"", "args": [ { "name": "distinct_on", @@ -184669,7 +188142,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "roleAssignment_select_column", + "name": "secretApiKey_select_column", "ofType": null } } @@ -184713,7 +188186,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_order_by", + "name": "secretApiKey_order_by", "ofType": null } } @@ -184727,7 +188200,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_bool_exp", + "name": "secretApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -184746,7 +188219,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roleAssignment", + "name": "secretApiKey", "ofType": null } } @@ -184756,8 +188229,8 @@ "deprecationReason": null }, { - "name": "roleAssignment_aggregate", - "description": "fetch aggregated fields from the table: \"roleAssignment\"", + "name": "secretApiKey_aggregate", + "description": "fetch aggregated fields from the table: \"secretApiKey\"", "args": [ { "name": "distinct_on", @@ -184770,7 +188243,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "roleAssignment_select_column", + "name": "secretApiKey_select_column", "ofType": null } } @@ -184814,7 +188287,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_order_by", + "name": "secretApiKey_order_by", "ofType": null } } @@ -184828,7 +188301,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_bool_exp", + "name": "secretApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -184841,7 +188314,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roleAssignment_aggregate", + "name": "secretApiKey_aggregate", "ofType": null } }, @@ -184849,8 +188322,37 @@ "deprecationReason": null }, { - "name": "roleAssignment_stream", - "description": "fetch data from the table in a streaming manner: \"roleAssignment\"", + "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": "SCALAR", + "name": "uuid", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "secretApiKey", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secretApiKey_stream", + "description": "fetch data from the table in a streaming manner: \"secretApiKey\"", "args": [ { "name": "batch_size", @@ -184879,7 +188381,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_stream_cursor_input", + "name": "secretApiKey_stream_cursor_input", "ofType": null } } @@ -184893,7 +188395,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roleAssignment_bool_exp", + "name": "secretApiKey_bool_exp", "ofType": null }, "defaultValue": null, @@ -184912,7 +188414,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roleAssignment", + "name": "secretApiKey", "ofType": null } } @@ -184922,8 +188424,8 @@ "deprecationReason": null }, { - "name": "roles", - "description": "fetch data from the table: \"roles\"", + "name": "shopifyCampaignParameters", + "description": "fetch data from the table: \"shopifyCampaignParameters\"", "args": [ { "name": "distinct_on", @@ -184936,7 +188438,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "roles_select_column", + "name": "shopifyCampaignParameters_select_column", "ofType": null } } @@ -184980,7 +188482,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roles_order_by", + "name": "shopifyCampaignParameters_order_by", "ofType": null } } @@ -184994,7 +188496,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roles_bool_exp", + "name": "shopifyCampaignParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -185013,7 +188515,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roles", + "name": "shopifyCampaignParameters", "ofType": null } } @@ -185023,8 +188525,8 @@ "deprecationReason": null }, { - "name": "roles_aggregate", - "description": "fetch aggregated fields from the table: \"roles\"", + "name": "shopifyCampaignParameters_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyCampaignParameters\"", "args": [ { "name": "distinct_on", @@ -185037,7 +188539,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "roles_select_column", + "name": "shopifyCampaignParameters_select_column", "ofType": null } } @@ -185081,7 +188583,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roles_order_by", + "name": "shopifyCampaignParameters_order_by", "ofType": null } } @@ -185095,7 +188597,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roles_bool_exp", + "name": "shopifyCampaignParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -185108,7 +188610,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roles_aggregate", + "name": "shopifyCampaignParameters_aggregate", "ofType": null } }, @@ -185116,18 +188618,18 @@ "deprecationReason": null }, { - "name": "roles_by_pk", - "description": "fetch data from the table: \"roles\" using primary key columns", + "name": "shopifyCampaignParameters_by_pk", + "description": "fetch data from the table: \"shopifyCampaignParameters\" 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 } }, @@ -185138,15 +188640,15 @@ ], "type": { "kind": "OBJECT", - "name": "roles", + "name": "shopifyCampaignParameters", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "roles_stream", - "description": "fetch data from the table in a streaming manner: \"roles\"", + "name": "shopifyCampaignParameters_stream", + "description": "fetch data from the table in a streaming manner: \"shopifyCampaignParameters\"", "args": [ { "name": "batch_size", @@ -185175,7 +188677,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "roles_stream_cursor_input", + "name": "shopifyCampaignParameters_stream_cursor_input", "ofType": null } } @@ -185189,7 +188691,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "roles_bool_exp", + "name": "shopifyCampaignParameters_bool_exp", "ofType": null }, "defaultValue": null, @@ -185208,7 +188710,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "roles", + "name": "shopifyCampaignParameters", "ofType": null } } @@ -185218,8 +188720,8 @@ "deprecationReason": null }, { - "name": "secretApiKey", - "description": "fetch data from the table: \"secretApiKey\"", + "name": "shopifyCampaignStatus", + "description": "fetch data from the table: \"shopifyCampaignStatus\"", "args": [ { "name": "distinct_on", @@ -185232,7 +188734,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "secretApiKey_select_column", + "name": "shopifyCampaignStatus_select_column", "ofType": null } } @@ -185276,7 +188778,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_order_by", + "name": "shopifyCampaignStatus_order_by", "ofType": null } } @@ -185290,7 +188792,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_bool_exp", + "name": "shopifyCampaignStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -185309,7 +188811,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "secretApiKey", + "name": "shopifyCampaignStatus", "ofType": null } } @@ -185319,8 +188821,8 @@ "deprecationReason": null }, { - "name": "secretApiKey_aggregate", - "description": "fetch aggregated fields from the table: \"secretApiKey\"", + "name": "shopifyCampaignStatus_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyCampaignStatus\"", "args": [ { "name": "distinct_on", @@ -185333,7 +188835,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "secretApiKey_select_column", + "name": "shopifyCampaignStatus_select_column", "ofType": null } } @@ -185377,7 +188879,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_order_by", + "name": "shopifyCampaignStatus_order_by", "ofType": null } } @@ -185391,7 +188893,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_bool_exp", + "name": "shopifyCampaignStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -185404,7 +188906,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "secretApiKey_aggregate", + "name": "shopifyCampaignStatus_aggregate", "ofType": null } }, @@ -185412,18 +188914,18 @@ "deprecationReason": null }, { - "name": "secretApiKey_by_pk", - "description": "fetch data from the table: \"secretApiKey\" 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 } }, @@ -185434,15 +188936,15 @@ ], "type": { "kind": "OBJECT", - "name": "secretApiKey", + "name": "shopifyCampaignStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "secretApiKey_stream", - "description": "fetch data from the table in a streaming manner: \"secretApiKey\"", + "name": "shopifyCampaignStatus_stream", + "description": "fetch data from the table in a streaming manner: \"shopifyCampaignStatus\"", "args": [ { "name": "batch_size", @@ -185471,7 +188973,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_stream_cursor_input", + "name": "shopifyCampaignStatus_stream_cursor_input", "ofType": null } } @@ -185485,7 +188987,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "secretApiKey_bool_exp", + "name": "shopifyCampaignStatus_bool_exp", "ofType": null }, "defaultValue": null, @@ -185504,7 +189006,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "secretApiKey", + "name": "shopifyCampaignStatus", "ofType": null } } @@ -185514,8 +189016,8 @@ "deprecationReason": null }, { - "name": "shopifyCampaignParameters", - "description": "fetch data from the table: \"shopifyCampaignParameters\"", + "name": "shopifyCustomer", + "description": "fetch data from the table: \"shopifyCustomer\"", "args": [ { "name": "distinct_on", @@ -185528,7 +189030,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "shopifyCampaignParameters_select_column", + "name": "shopifyCustomer_select_column", "ofType": null } } @@ -185572,7 +189074,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_order_by", + "name": "shopifyCustomer_order_by", "ofType": null } } @@ -185586,7 +189088,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -185605,7 +189107,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignParameters", + "name": "shopifyCustomer", "ofType": null } } @@ -185615,8 +189117,8 @@ "deprecationReason": null }, { - "name": "shopifyCampaignParameters_aggregate", - "description": "fetch aggregated fields from the table: \"shopifyCampaignParameters\"", + "name": "shopifyCustomer_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyCustomer\"", "args": [ { "name": "distinct_on", @@ -185629,7 +189131,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "shopifyCampaignParameters_select_column", + "name": "shopifyCustomer_select_column", "ofType": null } } @@ -185673,7 +189175,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_order_by", + "name": "shopifyCustomer_order_by", "ofType": null } } @@ -185687,7 +189189,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -185700,7 +189202,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignParameters_aggregate", + "name": "shopifyCustomer_aggregate", "ofType": null } }, @@ -185708,37 +189210,8 @@ "deprecationReason": null }, { - "name": "shopifyCampaignParameters_by_pk", - "description": "fetch data from the table: \"shopifyCampaignParameters\" 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": "shopifyCampaignParameters", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shopifyCampaignParameters_stream", - "description": "fetch data from the table in a streaming manner: \"shopifyCampaignParameters\"", + "name": "shopifyCustomer_stream", + "description": "fetch data from the table in a streaming manner: \"shopifyCustomer\"", "args": [ { "name": "batch_size", @@ -185767,7 +189240,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_stream_cursor_input", + "name": "shopifyCustomer_stream_cursor_input", "ofType": null } } @@ -185781,7 +189254,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignParameters_bool_exp", + "name": "shopifyCustomer_bool_exp", "ofType": null }, "defaultValue": null, @@ -185800,7 +189273,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignParameters", + "name": "shopifyCustomer", "ofType": null } } @@ -185810,8 +189283,8 @@ "deprecationReason": null }, { - "name": "shopifyCampaignStatus", - "description": "fetch data from the table: \"shopifyCampaignStatus\"", + "name": "shopifyDomain", + "description": "fetch data from the table: \"shopifyDomain\"", "args": [ { "name": "distinct_on", @@ -185824,7 +189297,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "shopifyCampaignStatus_select_column", + "name": "shopifyDomain_select_column", "ofType": null } } @@ -185868,7 +189341,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_order_by", + "name": "shopifyDomain_order_by", "ofType": null } } @@ -185882,7 +189355,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -185901,7 +189374,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignStatus", + "name": "shopifyDomain", "ofType": null } } @@ -185911,8 +189384,8 @@ "deprecationReason": null }, { - "name": "shopifyCampaignStatus_aggregate", - "description": "fetch aggregated fields from the table: \"shopifyCampaignStatus\"", + "name": "shopifyDomain_aggregate", + "description": "fetch aggregated fields from the table: \"shopifyDomain\"", "args": [ { "name": "distinct_on", @@ -185925,7 +189398,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "shopifyCampaignStatus_select_column", + "name": "shopifyDomain_select_column", "ofType": null } } @@ -185969,7 +189442,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_order_by", + "name": "shopifyDomain_order_by", "ofType": null } } @@ -185983,7 +189456,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -185996,7 +189469,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignStatus_aggregate", + "name": "shopifyDomain_aggregate", "ofType": null } }, @@ -186004,12 +189477,12 @@ "deprecationReason": null }, { - "name": "shopifyCampaignStatus_by_pk", - "description": "fetch data from the table: \"shopifyCampaignStatus\" using primary key columns", + "name": "shopifyDomain_by_pk", + "description": "fetch data from the table: \"shopifyDomain\" using primary key columns", "args": [ { - "name": "value", - "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, @@ -186026,15 +189499,15 @@ ], "type": { "kind": "OBJECT", - "name": "shopifyCampaignStatus", + "name": "shopifyDomain", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shopifyCampaignStatus_stream", - "description": "fetch data from the table in a streaming manner: \"shopifyCampaignStatus\"", + "name": "shopifyDomain_stream", + "description": "fetch data from the table in a streaming manner: \"shopifyDomain\"", "args": [ { "name": "batch_size", @@ -186063,7 +189536,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_stream_cursor_input", + "name": "shopifyDomain_stream_cursor_input", "ofType": null } } @@ -186077,7 +189550,7 @@ "description": "filter the rows returned", "type": { "kind": "INPUT_OBJECT", - "name": "shopifyCampaignStatus_bool_exp", + "name": "shopifyDomain_bool_exp", "ofType": null }, "defaultValue": null, @@ -186096,7 +189569,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "shopifyCampaignStatus", + "name": "shopifyDomain", "ofType": null } } 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/types/src/generated/index.ts b/libs/gql/admin/types/src/generated/index.ts index 6e9d9d2e0..964a5607c 100644 --- a/libs/gql/admin/types/src/generated/index.ts +++ b/libs/gql/admin/types/src/generated/index.ts @@ -650,6 +650,13 @@ 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 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 | null, eventId: string, eventPassId: string, packId?: string | null, organizerId: string, isRevealed: boolean, currentOwnerAddress?: string | null }; diff --git a/libs/gql/shared/types/src/generated/index.ts b/libs/gql/shared/types/src/generated/index.ts index ac2a62614..3a330f086 100644 --- a/libs/gql/shared/types/src/generated/index.ts +++ b/libs/gql/shared/types/src/generated/index.ts @@ -8163,8 +8163,7 @@ export const enum ApiKeyType_Constraint { }; export const enum ApiKeyType_Enum { - External = 'EXTERNAL', - Shopify = 'SHOPIFY' + External = 'EXTERNAL' }; /** Boolean expression to compare columns of type "apiKeyType_enum". All fields are combined with logical 'AND'. */ @@ -14026,6 +14025,12 @@ export type Mutation_Root = { delete_shopifyCampaignStatus?: Maybe; /** delete single row from the table: "shopifyCampaignStatus" */ delete_shopifyCampaignStatus_by_pk?: Maybe; + /** delete data from the table: "shopifyCustomer" */ + delete_shopifyCustomer?: Maybe; + /** delete data from the table: "shopifyDomain" */ + delete_shopifyDomain?: Maybe; + /** delete single row from the table: "shopifyDomain" */ + delete_shopifyDomain_by_pk?: Maybe; /** delete data from the table: "stampNft" */ delete_stampNft?: Maybe; /** delete data from the table: "stampNftContract" */ @@ -14234,6 +14239,14 @@ export type Mutation_Root = { insert_shopifyCampaignStatus?: Maybe; /** insert a single row into the table: "shopifyCampaignStatus" */ insert_shopifyCampaignStatus_one?: Maybe; + /** insert data into the table: "shopifyCustomer" */ + insert_shopifyCustomer?: Maybe; + /** insert a single row into the table: "shopifyCustomer" */ + insert_shopifyCustomer_one?: Maybe; + /** insert data into the table: "shopifyDomain" */ + insert_shopifyDomain?: Maybe; + /** insert a single row into the table: "shopifyDomain" */ + insert_shopifyDomain_one?: Maybe; /** insert data into the table: "stampNft" */ insert_stampNft?: Maybe; /** insert data into the table: "stampNftContract" */ @@ -14706,6 +14719,16 @@ export type Mutation_Root = { update_shopifyCampaignStatus_by_pk?: Maybe; /** update multiples rows of table: "shopifyCampaignStatus" */ update_shopifyCampaignStatus_many?: Maybe>>; + /** update data of the table: "shopifyCustomer" */ + update_shopifyCustomer?: Maybe; + /** update multiples rows of table: "shopifyCustomer" */ + update_shopifyCustomer_many?: Maybe>>; + /** update data of the table: "shopifyDomain" */ + update_shopifyDomain?: Maybe; + /** update single row of the table: "shopifyDomain" */ + update_shopifyDomain_by_pk?: Maybe; + /** update multiples rows of table: "shopifyDomain" */ + update_shopifyDomain_many?: Maybe>>; /** update data of the table: "stampNft" */ update_stampNft?: Maybe; /** update data of the table: "stampNftContract" */ @@ -15548,6 +15571,24 @@ export type Mutation_RootDelete_ShopifyCampaignStatus_By_PkArgs = { }; +/** mutation root */ +export type Mutation_RootDelete_ShopifyCustomerArgs = { + where: ShopifyCustomer_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootDelete_ShopifyDomainArgs = { + where: ShopifyDomain_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootDelete_ShopifyDomain_By_PkArgs = { + domain: Scalars['String']['input']; +}; + + /** mutation root */ export type Mutation_RootDelete_StampNftArgs = { where: StampNft_Bool_Exp; @@ -16261,6 +16302,34 @@ export type Mutation_RootInsert_ShopifyCampaignStatus_OneArgs = { }; +/** mutation root */ +export type Mutation_RootInsert_ShopifyCustomerArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_ShopifyCustomer_OneArgs = { + object: ShopifyCustomer_Insert_Input; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_ShopifyDomainArgs = { + objects: Array; + on_conflict?: InputMaybe; +}; + + +/** mutation root */ +export type Mutation_RootInsert_ShopifyDomain_OneArgs = { + object: ShopifyDomain_Insert_Input; + on_conflict?: InputMaybe; +}; + + /** mutation root */ export type Mutation_RootInsert_StampNftArgs = { objects: Array; @@ -18221,6 +18290,39 @@ export type Mutation_RootUpdate_ShopifyCampaignStatus_ManyArgs = { }; +/** mutation root */ +export type Mutation_RootUpdate_ShopifyCustomerArgs = { + _set?: InputMaybe; + where: ShopifyCustomer_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_ShopifyCustomer_ManyArgs = { + updates: Array; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_ShopifyDomainArgs = { + _set?: InputMaybe; + where: ShopifyDomain_Bool_Exp; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_ShopifyDomain_By_PkArgs = { + _set?: InputMaybe; + pk_columns: ShopifyDomain_Pk_Columns_Input; +}; + + +/** mutation root */ +export type Mutation_RootUpdate_ShopifyDomain_ManyArgs = { + updates: Array; +}; + + /** mutation root */ export type Mutation_RootUpdate_StampNftArgs = { _append?: InputMaybe; @@ -23161,6 +23263,16 @@ export type Query_Root = { shopifyCampaignStatus_aggregate: ShopifyCampaignStatus_Aggregate; /** fetch data from the table: "shopifyCampaignStatus" using primary key columns */ shopifyCampaignStatus_by_pk?: Maybe; + /** fetch data from the table: "shopifyCustomer" */ + shopifyCustomer: Array; + /** fetch aggregated fields from the table: "shopifyCustomer" */ + shopifyCustomer_aggregate: ShopifyCustomer_Aggregate; + /** fetch data from the table: "shopifyDomain" */ + shopifyDomain: Array; + /** fetch aggregated fields from the table: "shopifyDomain" */ + shopifyDomain_aggregate: ShopifyDomain_Aggregate; + /** fetch data from the table: "shopifyDomain" using primary key columns */ + shopifyDomain_by_pk?: Maybe; /** fetch data from the table: "stampNft" */ stampNft: Array; /** fetch data from the table: "stampNftContract" */ @@ -24611,6 +24723,47 @@ export type Query_RootShopifyCampaignStatus_By_PkArgs = { }; +export type Query_RootShopifyCustomerArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Query_RootShopifyCustomer_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Query_RootShopifyDomainArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Query_RootShopifyDomain_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Query_RootShopifyDomain_By_PkArgs = { + domain: Scalars['String']['input']; +}; + + export type Query_RootStampNftArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; @@ -25331,7 +25484,7 @@ export type SecretApiKey = { originSecretSalt?: Maybe; /** The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED". */ status?: Maybe; - /** 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. It can be "SHOPIFY" or "EXTERNAL". */ + /** 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: Scalars['timestamptz']['output']; }; @@ -25408,7 +25561,7 @@ export type SecretApiKey_Insert_Input = { originSecretSalt?: InputMaybe; /** The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED". */ status?: InputMaybe; - /** 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. It can be "SHOPIFY" or "EXTERNAL". */ + /** 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?: InputMaybe; updated_at?: InputMaybe; }; @@ -25551,7 +25704,7 @@ export type SecretApiKey_Set_Input = { originSecretSalt?: InputMaybe; /** The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED". */ status?: InputMaybe; - /** 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. It can be "SHOPIFY" or "EXTERNAL". */ + /** 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?: InputMaybe; updated_at?: InputMaybe; }; @@ -25586,7 +25739,7 @@ export type SecretApiKey_Stream_Cursor_Value_Input = { originSecretSalt?: InputMaybe; /** The current status of the secret API key, referencing the apiKeyStatus table. It can be "ACTIVE" (default), "DISABLED", or "EXPIRED". */ status?: InputMaybe; - /** 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. It can be "SHOPIFY" or "EXTERNAL". */ + /** 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?: InputMaybe; updated_at?: InputMaybe; }; @@ -26000,6 +26153,378 @@ export type ShopifyCampaignStatus_Updates = { where: ShopifyCampaignStatus_Bool_Exp; }; +/** 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. */ +export type ShopifyCustomer = { + __typename?: 'shopifyCustomer'; + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address: Scalars['String']['output']; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** 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: Scalars['String']['output']; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id: Scalars['uuid']['output']; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId: Scalars['String']['output']; + updated_at?: Maybe; +}; + +/** aggregated selection of "shopifyCustomer" */ +export type ShopifyCustomer_Aggregate = { + __typename?: 'shopifyCustomer_aggregate'; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "shopifyCustomer" */ +export type ShopifyCustomer_Aggregate_Fields = { + __typename?: 'shopifyCustomer_aggregate_fields'; + count: Scalars['Int']['output']; + max?: Maybe; + min?: Maybe; +}; + + +/** aggregate fields of "shopifyCustomer" */ +export type ShopifyCustomer_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "shopifyCustomer". All fields are combined with a logical 'AND'. */ +export type ShopifyCustomer_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + address?: InputMaybe; + created_at?: InputMaybe; + customerId?: InputMaybe; + id?: InputMaybe; + organizerId?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** unique or primary key constraints on table "shopifyCustomer" */ +export const enum ShopifyCustomer_Constraint { + /** unique or primary key constraint on columns "customerId", "address", "organizerId" */ + ShopifyCustomerAddressOrganizerIdCustomerIdKey = 'shopifyCustomer_address_organizerId_customerId_key' +}; + +/** input type for inserting data into table "shopifyCustomer" */ +export type ShopifyCustomer_Insert_Input = { + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address?: InputMaybe; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** 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?: InputMaybe; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id?: InputMaybe; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** aggregate max on columns */ +export type ShopifyCustomer_Max_Fields = { + __typename?: 'shopifyCustomer_max_fields'; + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address?: Maybe; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** 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?: Maybe; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id?: Maybe; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId?: Maybe; + updated_at?: Maybe; +}; + +/** aggregate min on columns */ +export type ShopifyCustomer_Min_Fields = { + __typename?: 'shopifyCustomer_min_fields'; + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address?: Maybe; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** 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?: Maybe; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id?: Maybe; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId?: Maybe; + updated_at?: Maybe; +}; + +/** response of any mutation on the table "shopifyCustomer" */ +export type ShopifyCustomer_Mutation_Response = { + __typename?: 'shopifyCustomer_mutation_response'; + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int']['output']; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "shopifyCustomer" */ +export type ShopifyCustomer_On_Conflict = { + constraint: ShopifyCustomer_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "shopifyCustomer". */ +export type ShopifyCustomer_Order_By = { + address?: InputMaybe; + created_at?: InputMaybe; + customerId?: InputMaybe; + id?: InputMaybe; + organizerId?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** select columns of table "shopifyCustomer" */ +export const enum ShopifyCustomer_Select_Column { + /** column name */ + Address = 'address', + /** column name */ + CreatedAt = 'created_at', + /** column name */ + CustomerId = 'customerId', + /** column name */ + Id = 'id', + /** column name */ + OrganizerId = 'organizerId', + /** column name */ + UpdatedAt = 'updated_at' +}; + +/** input type for updating data in table "shopifyCustomer" */ +export type ShopifyCustomer_Set_Input = { + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address?: InputMaybe; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** 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?: InputMaybe; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id?: InputMaybe; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** Streaming cursor of the table "shopifyCustomer" */ +export type ShopifyCustomer_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: ShopifyCustomer_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type ShopifyCustomer_Stream_Cursor_Value_Input = { + /** Reference to the account table, ensuring that customer data is associated with a unique account address. */ + address?: InputMaybe; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** 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?: InputMaybe; + /** Unique identifier for each entry, generated automatically as a UUID. */ + id?: InputMaybe; + /** Identifier for the organizer, used to scope Shopify customer data to specific organizers, allowing them to manage their client data independently. */ + organizerId?: InputMaybe; + updated_at?: InputMaybe; +}; + +/** update columns of table "shopifyCustomer" */ +export const enum ShopifyCustomer_Update_Column { + /** column name */ + Address = 'address', + /** column name */ + CreatedAt = 'created_at', + /** column name */ + CustomerId = 'customerId', + /** column name */ + Id = 'id', + /** column name */ + OrganizerId = 'organizerId', + /** column name */ + UpdatedAt = 'updated_at' +}; + +export type ShopifyCustomer_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: ShopifyCustomer_Bool_Exp; +}; + +/** 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. */ +export type ShopifyDomain = { + __typename?: 'shopifyDomain'; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain: Scalars['String']['output']; + /** 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: Scalars['String']['output']; +}; + +/** aggregated selection of "shopifyDomain" */ +export type ShopifyDomain_Aggregate = { + __typename?: 'shopifyDomain_aggregate'; + aggregate?: Maybe; + nodes: Array; +}; + +/** aggregate fields of "shopifyDomain" */ +export type ShopifyDomain_Aggregate_Fields = { + __typename?: 'shopifyDomain_aggregate_fields'; + count: Scalars['Int']['output']; + max?: Maybe; + min?: Maybe; +}; + + +/** aggregate fields of "shopifyDomain" */ +export type ShopifyDomain_Aggregate_FieldsCountArgs = { + columns?: InputMaybe>; + distinct?: InputMaybe; +}; + +/** Boolean expression to filter rows from the table "shopifyDomain". All fields are combined with a logical 'AND'. */ +export type ShopifyDomain_Bool_Exp = { + _and?: InputMaybe>; + _not?: InputMaybe; + _or?: InputMaybe>; + created_at?: InputMaybe; + domain?: InputMaybe; + organizerId?: InputMaybe; +}; + +/** unique or primary key constraints on table "shopifyDomain" */ +export const enum ShopifyDomain_Constraint { + /** unique or primary key constraint on columns "domain" */ + ShopifyDomainPkey = 'shopifyDomain_pkey' +}; + +/** input type for inserting data into table "shopifyDomain" */ +export type ShopifyDomain_Insert_Input = { + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain?: InputMaybe; + /** 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?: InputMaybe; +}; + +/** aggregate max on columns */ +export type ShopifyDomain_Max_Fields = { + __typename?: 'shopifyDomain_max_fields'; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain?: Maybe; + /** 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?: Maybe; +}; + +/** aggregate min on columns */ +export type ShopifyDomain_Min_Fields = { + __typename?: 'shopifyDomain_min_fields'; + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: Maybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain?: Maybe; + /** 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?: Maybe; +}; + +/** response of any mutation on the table "shopifyDomain" */ +export type ShopifyDomain_Mutation_Response = { + __typename?: 'shopifyDomain_mutation_response'; + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int']['output']; + /** data from the rows affected by the mutation */ + returning: Array; +}; + +/** on_conflict condition type for table "shopifyDomain" */ +export type ShopifyDomain_On_Conflict = { + constraint: ShopifyDomain_Constraint; + update_columns?: Array; + where?: InputMaybe; +}; + +/** Ordering options when selecting data from "shopifyDomain". */ +export type ShopifyDomain_Order_By = { + created_at?: InputMaybe; + domain?: InputMaybe; + organizerId?: InputMaybe; +}; + +/** primary key columns input for table: shopifyDomain */ +export type ShopifyDomain_Pk_Columns_Input = { + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain: Scalars['String']['input']; +}; + +/** select columns of table "shopifyDomain" */ +export const enum ShopifyDomain_Select_Column { + /** column name */ + CreatedAt = 'created_at', + /** column name */ + Domain = 'domain', + /** column name */ + OrganizerId = 'organizerId' +}; + +/** input type for updating data in table "shopifyDomain" */ +export type ShopifyDomain_Set_Input = { + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain?: InputMaybe; + /** 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?: InputMaybe; +}; + +/** Streaming cursor of the table "shopifyDomain" */ +export type ShopifyDomain_Stream_Cursor_Input = { + /** Stream column input with initial value */ + initial_value: ShopifyDomain_Stream_Cursor_Value_Input; + /** cursor ordering */ + ordering?: InputMaybe; +}; + +/** Initial value of the column from where the streaming should start */ +export type ShopifyDomain_Stream_Cursor_Value_Input = { + /** Timestamp indicating when the record was initially created, set automatically by the system. */ + created_at?: InputMaybe; + /** The Shopify domain value, which serves as the primary key for the table, ensuring uniqueness across all records. */ + domain?: InputMaybe; + /** 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?: InputMaybe; +}; + +/** update columns of table "shopifyDomain" */ +export const enum ShopifyDomain_Update_Column { + /** column name */ + CreatedAt = 'created_at', + /** column name */ + Domain = 'domain', + /** column name */ + OrganizerId = 'organizerId' +}; + +export type ShopifyDomain_Updates = { + /** sets the columns of the filtered rows to the given values */ + _set?: InputMaybe; + /** filter the rows which have to be updated */ + where: ShopifyDomain_Bool_Exp; +}; + /** Stores information for each token type managed by a stampNftContract, focusing on unique token IDs and their associated metadata. */ export type StampNft = { __typename?: 'stampNft'; @@ -27933,6 +28458,20 @@ export type Subscription_Root = { shopifyCampaignStatus_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "shopifyCampaignStatus" */ shopifyCampaignStatus_stream: Array; + /** fetch data from the table: "shopifyCustomer" */ + shopifyCustomer: Array; + /** fetch aggregated fields from the table: "shopifyCustomer" */ + shopifyCustomer_aggregate: ShopifyCustomer_Aggregate; + /** fetch data from the table in a streaming manner: "shopifyCustomer" */ + shopifyCustomer_stream: Array; + /** fetch data from the table: "shopifyDomain" */ + shopifyDomain: Array; + /** fetch aggregated fields from the table: "shopifyDomain" */ + shopifyDomain_aggregate: ShopifyDomain_Aggregate; + /** fetch data from the table: "shopifyDomain" using primary key columns */ + shopifyDomain_by_pk?: Maybe; + /** fetch data from the table in a streaming manner: "shopifyDomain" */ + shopifyDomain_stream: Array; /** fetch data from the table: "stampNft" */ stampNft: Array; /** fetch data from the table: "stampNftContract" */ @@ -29318,6 +29857,61 @@ export type Subscription_RootShopifyCampaignStatus_StreamArgs = { }; +export type Subscription_RootShopifyCustomerArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootShopifyCustomer_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootShopifyCustomer_StreamArgs = { + batch_size: Scalars['Int']['input']; + cursor: Array>; + where?: InputMaybe; +}; + + +export type Subscription_RootShopifyDomainArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootShopifyDomain_AggregateArgs = { + distinct_on?: InputMaybe>; + limit?: InputMaybe; + offset?: InputMaybe; + order_by?: InputMaybe>; + where?: InputMaybe; +}; + + +export type Subscription_RootShopifyDomain_By_PkArgs = { + domain: Scalars['String']['input']; +}; + + +export type Subscription_RootShopifyDomain_StreamArgs = { + batch_size: Scalars['Int']['input']; + cursor: Array>; + where?: InputMaybe; +}; + + export type Subscription_RootStampNftArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; diff --git a/libs/integrations/external-api-handlers/src/lib/shopify/index.spec.ts b/libs/integrations/external-api-handlers/src/lib/shopify/index.spec.ts index d63572d8c..76f435770 100644 --- a/libs/integrations/external-api-handlers/src/lib/shopify/index.spec.ts +++ b/libs/integrations/external-api-handlers/src/lib/shopify/index.spec.ts @@ -59,6 +59,15 @@ describe('ShopifyWebhookAndApiHandler', () => { }); describe('extractAndVerifyShopifyRequest', () => { + beforeEach(() => { + (adminSdk.GetShopifyDomain as jest.Mock).mockResolvedValue({ + shopifyDomain_by_pk: [ + { + organizerId: 'test-organizer-id', + }, + ], + }); + }); it('should call verifySignature with correct arguments and handle correct of signature', async () => { verifySignatureMock.mockReturnValue(true); @@ -115,6 +124,17 @@ describe('ShopifyWebhookAndApiHandler', () => { handler.extractAndVerifyShopifyRequest(mockRequest), ).rejects.toThrow('Timestamp is older than 5 minutes'); }); + + it('throws an error when the shop is not found', async () => { + verifySignatureMock.mockReturnValue(true); + (adminSdk.GetShopifyDomain as jest.Mock).mockResolvedValueOnce({ + shopifyDomain_by_pk: null, // Simulate shop not found + }); + + await expect( + handler.extractAndVerifyShopifyRequest(mockRequest), + ).rejects.toThrow(`Shopify domain example.myshopify.com not found`); + }); }); const createMockRequest = (params: URLSearchParams): NextRequest => diff --git a/libs/integrations/external-api-handlers/src/lib/shopify/index.ts b/libs/integrations/external-api-handlers/src/lib/shopify/index.ts index 3645a544e..f097f76c4 100644 --- a/libs/integrations/external-api-handlers/src/lib/shopify/index.ts +++ b/libs/integrations/external-api-handlers/src/lib/shopify/index.ts @@ -98,28 +98,40 @@ export class ShopifyWebhookAndApiHandler extends BaseWebhookAndApiHandler { const signature = searchParams.get('signature'); if (!signature || !this.verifyRequestSignature(queryHash, signature)) throw new Error('Invalid signature'); + const res = await adminSdk.GetShopifyDomain({ + domain: shop, + }); + if (!res?.shopifyDomain_by_pk) { + throw new Error(`Shopify domain ${shop} not found`); + } return { resultParams, + organizerId: res.shopifyDomain_by_pk.organizerId, }; } private async extractAndValidateShopifyParams( req: NextRequest, requestType: T, - ): Promise { - const { resultParams } = await this.extractAndVerifyShopifyRequest( - req, - ).catch((error) => { - throw new NotAuthorizedError('Not Authorized: ' + getErrorMessage(error)); - }); - - return this.serializeAndValidateParams(requestType, resultParams).catch( - (error: Error) => { - throw new BadRequestError( - 'Invalid query parameters: ' + getErrorMessage(error), + ): Promise { + const { resultParams, organizerId } = + await this.extractAndVerifyShopifyRequest(req).catch((error) => { + throw new NotAuthorizedError( + 'Not Authorized: ' + getErrorMessage(error), ); - }, - ); + }); + const validatedParams = await this.serializeAndValidateParams( + requestType, + resultParams, + ).catch((error: Error) => { + throw new BadRequestError( + 'Invalid query parameters: ' + getErrorMessage(error), + ); + }); + return { + ...validatedParams, + organizerId, + }; } private populateQueryHash(searchParams: URLSearchParams): string {