export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K]; }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: string; String: string; Boolean: boolean; Int: number; Float: number; _text: any; bigint: any; date: any; jsonb: any; numeric: any; timestamp: any; }; /** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ export type BooleanComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */ export type IntComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ export type StringComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; /** does the column match the given case-insensitive pattern */ _ilike?: InputMaybe; _in?: InputMaybe>; /** does the column match the given POSIX regular expression, case insensitive */ _iregex?: InputMaybe; _is_null?: InputMaybe; /** does the column match the given pattern */ _like?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; /** does the column NOT match the given case-insensitive pattern */ _nilike?: InputMaybe; _nin?: InputMaybe>; /** does the column NOT match the given POSIX regular expression, case insensitive */ _niregex?: InputMaybe; /** does the column NOT match the given pattern */ _nlike?: InputMaybe; /** does the column NOT match the given POSIX regular expression, case sensitive */ _nregex?: InputMaybe; /** does the column NOT match the given SQL regular expression */ _nsimilar?: InputMaybe; /** does the column match the given POSIX regular expression, case sensitive */ _regex?: InputMaybe; /** does the column match the given SQL regular expression */ _similar?: InputMaybe; }; /** Boolean expression to compare columns of type "_text". All fields are combined with logical 'AND'. */ export type TextComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "analytics_tmp.affiliate_earnings_monthly" */ export type AnalyticsTmpAffiliateEarningsMonthly = { __typename?: 'analytics_tmp_affiliate_earnings_monthly'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregated selection of "analytics_tmp.affiliate_earnings_monthly" */ export type AnalyticsTmpAffiliateEarningsMonthlyAggregate = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "analytics_tmp.affiliate_earnings_monthly" */ export type AnalyticsTmpAffiliateEarningsMonthlyAggregateFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "analytics_tmp.affiliate_earnings_monthly" */ export type AnalyticsTmpAffiliateEarningsMonthlyAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyAvgFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_avg_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** Boolean expression to filter rows from the table "analytics_tmp.affiliate_earnings_monthly". All fields are combined with a logical 'AND'. */ export type AnalyticsTmpAffiliateEarningsMonthlyBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** aggregate max on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyMaxFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_max_fields'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate min on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyMinFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_min_fields'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** Ordering options when selecting data from "analytics_tmp.affiliate_earnings_monthly". */ export type AnalyticsTmpAffiliateEarningsMonthlyOrderBy = { affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** select columns of table "analytics_tmp.affiliate_earnings_monthly" */ export declare enum AnalyticsTmpAffiliateEarningsMonthlySelectColumn { /** column name */ AffiliateId = "affiliate_id", /** column name */ DateTrunc = "date_trunc", /** column name */ SalesCount = "sales_count", /** column name */ TotalEarned = "total_earned" } /** aggregate stddev on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyStddevFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_stddev_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate stddev_pop on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyStddevPopFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_stddev_pop_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate stddev_samp on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyStddevSampFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_stddev_samp_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** Streaming cursor of the table "analytics_tmp_affiliate_earnings_monthly" */ export type AnalyticsTmpAffiliateEarningsMonthlyStreamCursorInput = { /** Stream column input with initial value */ initial_value: AnalyticsTmpAffiliateEarningsMonthlyStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type AnalyticsTmpAffiliateEarningsMonthlyStreamCursorValueInput = { affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** aggregate sum on columns */ export type AnalyticsTmpAffiliateEarningsMonthlySumFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_sum_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate var_pop on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyVarPopFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_var_pop_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate var_samp on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyVarSampFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_var_samp_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate variance on columns */ export type AnalyticsTmpAffiliateEarningsMonthlyVarianceFields = { __typename?: 'analytics_tmp_affiliate_earnings_monthly_variance_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** columns and relationships of "analytics_tmp.affiliate_earnings_yearly" */ export type AnalyticsTmpAffiliateEarningsYearly = { __typename?: 'analytics_tmp_affiliate_earnings_yearly'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregated selection of "analytics_tmp.affiliate_earnings_yearly" */ export type AnalyticsTmpAffiliateEarningsYearlyAggregate = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "analytics_tmp.affiliate_earnings_yearly" */ export type AnalyticsTmpAffiliateEarningsYearlyAggregateFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "analytics_tmp.affiliate_earnings_yearly" */ export type AnalyticsTmpAffiliateEarningsYearlyAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type AnalyticsTmpAffiliateEarningsYearlyAvgFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_avg_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** Boolean expression to filter rows from the table "analytics_tmp.affiliate_earnings_yearly". All fields are combined with a logical 'AND'. */ export type AnalyticsTmpAffiliateEarningsYearlyBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** aggregate max on columns */ export type AnalyticsTmpAffiliateEarningsYearlyMaxFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_max_fields'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate min on columns */ export type AnalyticsTmpAffiliateEarningsYearlyMinFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_min_fields'; affiliate_id?: Maybe; date_trunc?: Maybe; sales_count?: Maybe; total_earned?: Maybe; }; /** Ordering options when selecting data from "analytics_tmp.affiliate_earnings_yearly". */ export type AnalyticsTmpAffiliateEarningsYearlyOrderBy = { affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** select columns of table "analytics_tmp.affiliate_earnings_yearly" */ export declare enum AnalyticsTmpAffiliateEarningsYearlySelectColumn { /** column name */ AffiliateId = "affiliate_id", /** column name */ DateTrunc = "date_trunc", /** column name */ SalesCount = "sales_count", /** column name */ TotalEarned = "total_earned" } /** aggregate stddev on columns */ export type AnalyticsTmpAffiliateEarningsYearlyStddevFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_stddev_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate stddev_pop on columns */ export type AnalyticsTmpAffiliateEarningsYearlyStddevPopFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_stddev_pop_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate stddev_samp on columns */ export type AnalyticsTmpAffiliateEarningsYearlyStddevSampFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_stddev_samp_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** Streaming cursor of the table "analytics_tmp_affiliate_earnings_yearly" */ export type AnalyticsTmpAffiliateEarningsYearlyStreamCursorInput = { /** Stream column input with initial value */ initial_value: AnalyticsTmpAffiliateEarningsYearlyStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type AnalyticsTmpAffiliateEarningsYearlyStreamCursorValueInput = { affiliate_id?: InputMaybe; date_trunc?: InputMaybe; sales_count?: InputMaybe; total_earned?: InputMaybe; }; /** aggregate sum on columns */ export type AnalyticsTmpAffiliateEarningsYearlySumFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_sum_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate var_pop on columns */ export type AnalyticsTmpAffiliateEarningsYearlyVarPopFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_var_pop_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate var_samp on columns */ export type AnalyticsTmpAffiliateEarningsYearlyVarSampFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_var_samp_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** aggregate variance on columns */ export type AnalyticsTmpAffiliateEarningsYearlyVarianceFields = { __typename?: 'analytics_tmp_affiliate_earnings_yearly_variance_fields'; sales_count?: Maybe; total_earned?: Maybe; }; /** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ export type BigintComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "blocks" */ export type Blocks = { __typename?: 'blocks'; synced_height: Scalars['bigint']; }; /** aggregated selection of "blocks" */ export type BlocksAggregate = { __typename?: 'blocks_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "blocks" */ export type BlocksAggregateFields = { __typename?: 'blocks_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "blocks" */ export type BlocksAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type BlocksAvgFields = { __typename?: 'blocks_avg_fields'; synced_height?: Maybe; }; /** Boolean expression to filter rows from the table "blocks". All fields are combined with a logical 'AND'. */ export type BlocksBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; synced_height?: InputMaybe; }; /** aggregate max on columns */ export type BlocksMaxFields = { __typename?: 'blocks_max_fields'; synced_height?: Maybe; }; /** aggregate min on columns */ export type BlocksMinFields = { __typename?: 'blocks_min_fields'; synced_height?: Maybe; }; /** Ordering options when selecting data from "blocks". */ export type BlocksOrderBy = { synced_height?: InputMaybe; }; /** select columns of table "blocks" */ export declare enum BlocksSelectColumn { /** column name */ SyncedHeight = "synced_height" } /** aggregate stddev on columns */ export type BlocksStddevFields = { __typename?: 'blocks_stddev_fields'; synced_height?: Maybe; }; /** aggregate stddev_pop on columns */ export type BlocksStddevPopFields = { __typename?: 'blocks_stddev_pop_fields'; synced_height?: Maybe; }; /** aggregate stddev_samp on columns */ export type BlocksStddevSampFields = { __typename?: 'blocks_stddev_samp_fields'; synced_height?: Maybe; }; /** Streaming cursor of the table "blocks" */ export type BlocksStreamCursorInput = { /** Stream column input with initial value */ initial_value: BlocksStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type BlocksStreamCursorValueInput = { synced_height?: InputMaybe; }; /** aggregate sum on columns */ export type BlocksSumFields = { __typename?: 'blocks_sum_fields'; synced_height?: Maybe; }; /** aggregate var_pop on columns */ export type BlocksVarPopFields = { __typename?: 'blocks_var_pop_fields'; synced_height?: Maybe; }; /** aggregate var_samp on columns */ export type BlocksVarSampFields = { __typename?: 'blocks_var_samp_fields'; synced_height?: Maybe; }; /** aggregate variance on columns */ export type BlocksVarianceFields = { __typename?: 'blocks_variance_fields'; synced_height?: Maybe; }; /** ordering argument of a cursor */ export declare enum CursorOrdering { /** ascending ordering of the cursor */ Asc = "ASC", /** descending ordering of the cursor */ Desc = "DESC" } /** Boolean expression to compare columns of type "date". All fields are combined with logical 'AND'. */ export type DateComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; export type JsonbCastExp = { String?: InputMaybe; }; /** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */ export type JsonbComparisonExp = { _cast?: InputMaybe; /** is the column contained in the given json value */ _contained_in?: InputMaybe; /** does the column contain the given json value at the top level */ _contains?: InputMaybe; _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; /** does the string exist as a top-level key in the column */ _has_key?: InputMaybe; /** do all of these strings exist as top-level keys in the column */ _has_keys_all?: InputMaybe>; /** do any of these strings exist as top-level keys in the column */ _has_keys_any?: InputMaybe>; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** columns and relationships of "mb_store_minters" */ export type MbStoreMinters = { __typename?: 'mb_store_minters'; minter_id: Scalars['String']; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; }; /** aggregated selection of "mb_store_minters" */ export type MbStoreMintersAggregate = { __typename?: 'mb_store_minters_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_store_minters" */ export type MbStoreMintersAggregateFields = { __typename?: 'mb_store_minters_aggregate_fields'; count: Scalars['Int']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "mb_store_minters" */ export type MbStoreMintersAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** Boolean expression to filter rows from the table "mb_store_minters". All fields are combined with a logical 'AND'. */ export type MbStoreMintersBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; minter_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; }; /** aggregate max on columns */ export type MbStoreMintersMaxFields = { __typename?: 'mb_store_minters_max_fields'; minter_id?: Maybe; nft_contract_id?: Maybe; }; /** aggregate min on columns */ export type MbStoreMintersMinFields = { __typename?: 'mb_store_minters_min_fields'; minter_id?: Maybe; nft_contract_id?: Maybe; }; /** Ordering options when selecting data from "mb_store_minters". */ export type MbStoreMintersOrderBy = { minter_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; }; /** select columns of table "mb_store_minters" */ export declare enum MbStoreMintersSelectColumn { /** column name */ MinterId = "minter_id", /** column name */ NftContractId = "nft_contract_id" } /** Streaming cursor of the table "mb_store_minters" */ export type MbStoreMintersStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbStoreMintersStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbStoreMintersStreamCursorValueInput = { minter_id?: InputMaybe; nft_contract_id?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings" */ export type MbViewsActiveListings = { __typename?: 'mb_views_active_listings'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; /** An array relationship */ offers: Array; /** An aggregate relationship */ offers_aggregate: NftOffersAggregate; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_blob?: Maybe; title?: Maybe; /** An object relationship */ token?: Maybe; token_id?: Maybe; }; /** columns and relationships of "mb_views.active_listings" */ export type MbViewsActiveListingsOffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings" */ export type MbViewsActiveListingsOffersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings" */ export type MbViewsActiveListingsReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.active_listings" */ export type MbViewsActiveListingsAggregate = { __typename?: 'mb_views_active_listings_aggregate'; aggregate?: Maybe; nodes: Array; }; export type MbViewsActiveListingsAggregateBoolExp = { count?: InputMaybe; }; export type MbViewsActiveListingsAggregateBoolExpCount = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: IntComparisonExp; }; /** aggregate fields of "mb_views.active_listings" */ export type MbViewsActiveListingsAggregateFields = { __typename?: 'mb_views_active_listings_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.active_listings" */ export type MbViewsActiveListingsAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "mb_views.active_listings" */ export type MbViewsActiveListingsAggregateOrderBy = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsActiveListingsAvgFields = { __typename?: 'mb_views_active_listings_avg_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by avg() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsAvgOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** Boolean expression to filter rows from the table "mb_views.active_listings". All fields are combined with a logical 'AND'. */ export type MbViewsActiveListingsBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; offers?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContract = { __typename?: 'mb_views_active_listings_by_contract'; approval_id?: Maybe; base_uri?: Maybe; created_at?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; /** An array relationship */ offers: Array; /** An aggregate relationship */ offers_aggregate: NftOffersAggregate; price?: Maybe; title?: Maybe; /** An object relationship */ token?: Maybe; token_id?: Maybe; total_listings?: Maybe; }; /** columns and relationships of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContractOffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContractOffersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContractAggregate = { __typename?: 'mb_views_active_listings_by_contract_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContractAggregateFields = { __typename?: 'mb_views_active_listings_by_contract_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.active_listings_by_contract" */ export type MbViewsActiveListingsByContractAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsActiveListingsByContractAvgFields = { __typename?: 'mb_views_active_listings_by_contract_avg_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.active_listings_by_contract". All fields are combined with a logical 'AND'. */ export type MbViewsActiveListingsByContractBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; approval_id?: InputMaybe; base_uri?: InputMaybe; created_at?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; offers?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; title?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; total_listings?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsActiveListingsByContractMaxFields = { __typename?: 'mb_views_active_listings_by_contract_max_fields'; approval_id?: Maybe; base_uri?: Maybe; created_at?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; title?: Maybe; token_id?: Maybe; total_listings?: Maybe; }; /** aggregate min on columns */ export type MbViewsActiveListingsByContractMinFields = { __typename?: 'mb_views_active_listings_by_contract_min_fields'; approval_id?: Maybe; base_uri?: Maybe; created_at?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; title?: Maybe; token_id?: Maybe; total_listings?: Maybe; }; /** Ordering options when selecting data from "mb_views.active_listings_by_contract". */ export type MbViewsActiveListingsByContractOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; created_at?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; title?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; total_listings?: InputMaybe; }; /** select columns of table "mb_views.active_listings_by_contract" */ export declare enum MbViewsActiveListingsByContractSelectColumn { /** column name */ ApprovalId = "approval_id", /** column name */ BaseUri = "base_uri", /** column name */ CreatedAt = "created_at", /** column name */ ListedBy = "listed_by", /** column name */ MarketId = "market_id", /** column name */ Media = "media", /** column name */ MetadataId = "metadata_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ TotalListings = "total_listings" } /** aggregate stddev on columns */ export type MbViewsActiveListingsByContractStddevFields = { __typename?: 'mb_views_active_listings_by_contract_stddev_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsActiveListingsByContractStddevPopFields = { __typename?: 'mb_views_active_listings_by_contract_stddev_pop_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsActiveListingsByContractStddevSampFields = { __typename?: 'mb_views_active_listings_by_contract_stddev_samp_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** Streaming cursor of the table "mb_views_active_listings_by_contract" */ export type MbViewsActiveListingsByContractStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsActiveListingsByContractStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsActiveListingsByContractStreamCursorValueInput = { approval_id?: InputMaybe; base_uri?: InputMaybe; created_at?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; total_listings?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsActiveListingsByContractSumFields = { __typename?: 'mb_views_active_listings_by_contract_sum_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsActiveListingsByContractVarPopFields = { __typename?: 'mb_views_active_listings_by_contract_var_pop_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsActiveListingsByContractVarSampFields = { __typename?: 'mb_views_active_listings_by_contract_var_samp_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate variance on columns */ export type MbViewsActiveListingsByContractVarianceFields = { __typename?: 'mb_views_active_listings_by_contract_variance_fields'; approval_id?: Maybe; price?: Maybe; total_listings?: Maybe; }; /** aggregate max on columns */ export type MbViewsActiveListingsMaxFields = { __typename?: 'mb_views_active_listings_max_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; }; /** order by max() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsMaxOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** aggregate min on columns */ export type MbViewsActiveListingsMinFields = { __typename?: 'mb_views_active_listings_min_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; }; /** order by min() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsMinOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** Ordering options when selecting data from "mb_views.active_listings". */ export type MbViewsActiveListingsOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; }; /** columns and relationships of "mb_views.active_listings_rollup" */ export type MbViewsActiveListingsRollup = { __typename?: 'mb_views_active_listings_rollup'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_blob?: Maybe; title?: Maybe; token_id?: Maybe; }; /** columns and relationships of "mb_views.active_listings_rollup" */ export type MbViewsActiveListingsRollupReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.active_listings_rollup" */ export type MbViewsActiveListingsRollupAggregate = { __typename?: 'mb_views_active_listings_rollup_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.active_listings_rollup" */ export type MbViewsActiveListingsRollupAggregateFields = { __typename?: 'mb_views_active_listings_rollup_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.active_listings_rollup" */ export type MbViewsActiveListingsRollupAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsActiveListingsRollupAvgFields = { __typename?: 'mb_views_active_listings_rollup_avg_fields'; approval_id?: Maybe; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.active_listings_rollup". All fields are combined with a logical 'AND'. */ export type MbViewsActiveListingsRollupBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsActiveListingsRollupMaxFields = { __typename?: 'mb_views_active_listings_rollup_max_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; }; /** aggregate min on columns */ export type MbViewsActiveListingsRollupMinFields = { __typename?: 'mb_views_active_listings_rollup_min_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; }; /** Ordering options when selecting data from "mb_views.active_listings_rollup". */ export type MbViewsActiveListingsRollupOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** select columns of table "mb_views.active_listings_rollup" */ export declare enum MbViewsActiveListingsRollupSelectColumn { /** column name */ ApprovalId = "approval_id", /** column name */ BaseUri = "base_uri", /** column name */ ContentFlag = "content_flag", /** column name */ CreatedAt = "created_at", /** column name */ Currency = "currency", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Kind = "kind", /** column name */ ListedBy = "listed_by", /** column name */ MarketId = "market_id", /** column name */ Media = "media", /** column name */ MetadataId = "metadata_id", /** column name */ Minter = "minter", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title", /** column name */ TokenId = "token_id" } /** aggregate stddev on columns */ export type MbViewsActiveListingsRollupStddevFields = { __typename?: 'mb_views_active_listings_rollup_stddev_fields'; approval_id?: Maybe; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsActiveListingsRollupStddevPopFields = { __typename?: 'mb_views_active_listings_rollup_stddev_pop_fields'; approval_id?: Maybe; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsActiveListingsRollupStddevSampFields = { __typename?: 'mb_views_active_listings_rollup_stddev_samp_fields'; approval_id?: Maybe; price?: Maybe; }; /** Streaming cursor of the table "mb_views_active_listings_rollup" */ export type MbViewsActiveListingsRollupStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsActiveListingsRollupStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsActiveListingsRollupStreamCursorValueInput = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsActiveListingsRollupSumFields = { __typename?: 'mb_views_active_listings_rollup_sum_fields'; approval_id?: Maybe; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsActiveListingsRollupVarPopFields = { __typename?: 'mb_views_active_listings_rollup_var_pop_fields'; approval_id?: Maybe; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsActiveListingsRollupVarSampFields = { __typename?: 'mb_views_active_listings_rollup_var_samp_fields'; approval_id?: Maybe; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsActiveListingsRollupVarianceFields = { __typename?: 'mb_views_active_listings_rollup_variance_fields'; approval_id?: Maybe; price?: Maybe; }; /** select columns of table "mb_views.active_listings" */ export declare enum MbViewsActiveListingsSelectColumn { /** column name */ ApprovalId = "approval_id", /** column name */ BaseUri = "base_uri", /** column name */ ContentFlag = "content_flag", /** column name */ CreatedAt = "created_at", /** column name */ Currency = "currency", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Kind = "kind", /** column name */ ListedBy = "listed_by", /** column name */ MarketId = "market_id", /** column name */ Media = "media", /** column name */ MetadataId = "metadata_id", /** column name */ Minter = "minter", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title", /** column name */ TokenId = "token_id" } /** aggregate stddev on columns */ export type MbViewsActiveListingsStddevFields = { __typename?: 'mb_views_active_listings_stddev_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by stddev() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsStddevOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type MbViewsActiveListingsStddevPopFields = { __typename?: 'mb_views_active_listings_stddev_pop_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by stddev_pop() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsStddevPopOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type MbViewsActiveListingsStddevSampFields = { __typename?: 'mb_views_active_listings_stddev_samp_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by stddev_samp() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsStddevSampOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** Streaming cursor of the table "mb_views_active_listings" */ export type MbViewsActiveListingsStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsActiveListingsStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsActiveListingsStreamCursorValueInput = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsActiveListingsSumFields = { __typename?: 'mb_views_active_listings_sum_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by sum() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsSumOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate var_pop on columns */ export type MbViewsActiveListingsVarPopFields = { __typename?: 'mb_views_active_listings_var_pop_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by var_pop() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsVarPopOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate var_samp on columns */ export type MbViewsActiveListingsVarSampFields = { __typename?: 'mb_views_active_listings_var_samp_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by var_samp() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsVarSampOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate variance on columns */ export type MbViewsActiveListingsVarianceFields = { __typename?: 'mb_views_active_listings_variance_fields'; approval_id?: Maybe; price?: Maybe; }; /** order by variance() on columns of table "mb_views.active_listings" */ export type MbViewsActiveListingsVarianceOrderBy = { approval_id?: InputMaybe; price?: InputMaybe; }; /** columns and relationships of "mb_views.auctions_with_offer" */ export type MbViewsAuctionsWithOffer = { __typename?: 'mb_views_auctions_with_offer'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; listing_accepted_at?: Maybe; listing_invalidated_at?: Maybe; listing_receipt_id?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; /** An object relationship */ nft_token?: Maybe; offer_accepted_at?: Maybe; offer_expires_at?: Maybe; offer_id?: Maybe; offer_price?: Maybe; offer_receipt_id?: Maybe; offer_withdrawn_at?: Maybe; offered_at?: Maybe; offered_by?: Maybe; price?: Maybe; reference?: Maybe; reference_blob?: Maybe; title?: Maybe; token_id?: Maybe; unlisted_at?: Maybe; }; /** columns and relationships of "mb_views.auctions_with_offer" */ export type MbViewsAuctionsWithOfferReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.auctions_with_offer" */ export type MbViewsAuctionsWithOfferAggregate = { __typename?: 'mb_views_auctions_with_offer_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.auctions_with_offer" */ export type MbViewsAuctionsWithOfferAggregateFields = { __typename?: 'mb_views_auctions_with_offer_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.auctions_with_offer" */ export type MbViewsAuctionsWithOfferAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsAuctionsWithOfferAvgFields = { __typename?: 'mb_views_auctions_with_offer_avg_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.auctions_with_offer". All fields are combined with a logical 'AND'. */ export type MbViewsAuctionsWithOfferBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; listing_accepted_at?: InputMaybe; listing_invalidated_at?: InputMaybe; listing_receipt_id?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_token?: InputMaybe; offer_accepted_at?: InputMaybe; offer_expires_at?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offer_receipt_id?: InputMaybe; offer_withdrawn_at?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsAuctionsWithOfferMaxFields = { __typename?: 'mb_views_auctions_with_offer_max_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; listing_accepted_at?: Maybe; listing_invalidated_at?: Maybe; listing_receipt_id?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; offer_accepted_at?: Maybe; offer_expires_at?: Maybe; offer_id?: Maybe; offer_price?: Maybe; offer_receipt_id?: Maybe; offer_withdrawn_at?: Maybe; offered_at?: Maybe; offered_by?: Maybe; price?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; unlisted_at?: Maybe; }; /** aggregate min on columns */ export type MbViewsAuctionsWithOfferMinFields = { __typename?: 'mb_views_auctions_with_offer_min_fields'; approval_id?: Maybe; base_uri?: Maybe; content_flag?: Maybe; created_at?: Maybe; currency?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; listed_by?: Maybe; listing_accepted_at?: Maybe; listing_invalidated_at?: Maybe; listing_receipt_id?: Maybe; market_id?: Maybe; media?: Maybe; metadata_id?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; offer_accepted_at?: Maybe; offer_expires_at?: Maybe; offer_id?: Maybe; offer_price?: Maybe; offer_receipt_id?: Maybe; offer_withdrawn_at?: Maybe; offered_at?: Maybe; offered_by?: Maybe; price?: Maybe; reference?: Maybe; title?: Maybe; token_id?: Maybe; unlisted_at?: Maybe; }; /** Ordering options when selecting data from "mb_views.auctions_with_offer". */ export type MbViewsAuctionsWithOfferOrderBy = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; listing_accepted_at?: InputMaybe; listing_invalidated_at?: InputMaybe; listing_receipt_id?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_token?: InputMaybe; offer_accepted_at?: InputMaybe; offer_expires_at?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offer_receipt_id?: InputMaybe; offer_withdrawn_at?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** select columns of table "mb_views.auctions_with_offer" */ export declare enum MbViewsAuctionsWithOfferSelectColumn { /** column name */ ApprovalId = "approval_id", /** column name */ BaseUri = "base_uri", /** column name */ ContentFlag = "content_flag", /** column name */ CreatedAt = "created_at", /** column name */ Currency = "currency", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Kind = "kind", /** column name */ ListedBy = "listed_by", /** column name */ ListingAcceptedAt = "listing_accepted_at", /** column name */ ListingInvalidatedAt = "listing_invalidated_at", /** column name */ ListingReceiptId = "listing_receipt_id", /** column name */ MarketId = "market_id", /** column name */ Media = "media", /** column name */ MetadataId = "metadata_id", /** column name */ Minter = "minter", /** column name */ NftContractId = "nft_contract_id", /** column name */ OfferAcceptedAt = "offer_accepted_at", /** column name */ OfferExpiresAt = "offer_expires_at", /** column name */ OfferId = "offer_id", /** column name */ OfferPrice = "offer_price", /** column name */ OfferReceiptId = "offer_receipt_id", /** column name */ OfferWithdrawnAt = "offer_withdrawn_at", /** column name */ OfferedAt = "offered_at", /** column name */ OfferedBy = "offered_by", /** column name */ Price = "price", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ UnlistedAt = "unlisted_at" } /** aggregate stddev on columns */ export type MbViewsAuctionsWithOfferStddevFields = { __typename?: 'mb_views_auctions_with_offer_stddev_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsAuctionsWithOfferStddevPopFields = { __typename?: 'mb_views_auctions_with_offer_stddev_pop_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsAuctionsWithOfferStddevSampFields = { __typename?: 'mb_views_auctions_with_offer_stddev_samp_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** Streaming cursor of the table "mb_views_auctions_with_offer" */ export type MbViewsAuctionsWithOfferStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsAuctionsWithOfferStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsAuctionsWithOfferStreamCursorValueInput = { approval_id?: InputMaybe; base_uri?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; listing_accepted_at?: InputMaybe; listing_invalidated_at?: InputMaybe; listing_receipt_id?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; offer_accepted_at?: InputMaybe; offer_expires_at?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offer_receipt_id?: InputMaybe; offer_withdrawn_at?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsAuctionsWithOfferSumFields = { __typename?: 'mb_views_auctions_with_offer_sum_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsAuctionsWithOfferVarPopFields = { __typename?: 'mb_views_auctions_with_offer_var_pop_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsAuctionsWithOfferVarSampFields = { __typename?: 'mb_views_auctions_with_offer_var_samp_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsAuctionsWithOfferVarianceFields = { __typename?: 'mb_views_auctions_with_offer_variance_fields'; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; price?: Maybe; }; /** columns and relationships of "mb_views.nft_activities" */ export type MbViewsNftActivities = { __typename?: 'mb_views_nft_activities'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; copies?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_blob?: Maybe; reference_hash?: Maybe; timestamp?: Maybe; title?: Maybe; token_id?: Maybe; tx_sender?: Maybe; }; /** columns and relationships of "mb_views.nft_activities" */ export type MbViewsNftActivitiesReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_activities" */ export type MbViewsNftActivitiesAggregate = { __typename?: 'mb_views_nft_activities_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_activities" */ export type MbViewsNftActivitiesAggregateFields = { __typename?: 'mb_views_nft_activities_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_activities" */ export type MbViewsNftActivitiesAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftActivitiesAvgFields = { __typename?: 'mb_views_nft_activities_avg_fields'; copies?: Maybe; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_activities". All fields are combined with a logical 'AND'. */ export type MbViewsNftActivitiesBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftActivitiesMaxFields = { __typename?: 'mb_views_nft_activities_max_fields'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; copies?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_hash?: Maybe; timestamp?: Maybe; title?: Maybe; token_id?: Maybe; tx_sender?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftActivitiesMinFields = { __typename?: 'mb_views_nft_activities_min_fields'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; copies?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_hash?: Maybe; timestamp?: Maybe; title?: Maybe; token_id?: Maybe; tx_sender?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_activities". */ export type MbViewsNftActivitiesOrderBy = { action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** columns and relationships of "mb_views.nft_activities_rollup" */ export type MbViewsNftActivitiesRollup = { __typename?: 'mb_views_nft_activities_rollup'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; count?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; reference_blob?: Maybe; timestamp?: Maybe; title?: Maybe; token_ids?: Maybe; tx_sender?: Maybe; }; /** columns and relationships of "mb_views.nft_activities_rollup" */ export type MbViewsNftActivitiesRollupReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_activities_rollup" */ export type MbViewsNftActivitiesRollupAggregate = { __typename?: 'mb_views_nft_activities_rollup_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_activities_rollup" */ export type MbViewsNftActivitiesRollupAggregateFields = { __typename?: 'mb_views_nft_activities_rollup_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_activities_rollup" */ export type MbViewsNftActivitiesRollupAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftActivitiesRollupAvgFields = { __typename?: 'mb_views_nft_activities_rollup_avg_fields'; count?: Maybe; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_activities_rollup". All fields are combined with a logical 'AND'. */ export type MbViewsNftActivitiesRollupBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; count?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_ids?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftActivitiesRollupMaxFields = { __typename?: 'mb_views_nft_activities_rollup_max_fields'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; count?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; timestamp?: Maybe; title?: Maybe; tx_sender?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftActivitiesRollupMinFields = { __typename?: 'mb_views_nft_activities_rollup_min_fields'; action_receiver?: Maybe; action_sender?: Maybe; content_flag?: Maybe; count?: Maybe; description?: Maybe; extra?: Maybe; kind?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; reference?: Maybe; timestamp?: Maybe; title?: Maybe; tx_sender?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_activities_rollup". */ export type MbViewsNftActivitiesRollupOrderBy = { action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; count?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_ids?: InputMaybe; tx_sender?: InputMaybe; }; /** select columns of table "mb_views.nft_activities_rollup" */ export declare enum MbViewsNftActivitiesRollupSelectColumn { /** column name */ ActionReceiver = "action_receiver", /** column name */ ActionSender = "action_sender", /** column name */ ContentFlag = "content_flag", /** column name */ Count = "count", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Kind = "kind", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataId = "metadata_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Timestamp = "timestamp", /** column name */ Title = "title", /** column name */ TokenIds = "token_ids", /** column name */ TxSender = "tx_sender" } /** aggregate stddev on columns */ export type MbViewsNftActivitiesRollupStddevFields = { __typename?: 'mb_views_nft_activities_rollup_stddev_fields'; count?: Maybe; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftActivitiesRollupStddevPopFields = { __typename?: 'mb_views_nft_activities_rollup_stddev_pop_fields'; count?: Maybe; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftActivitiesRollupStddevSampFields = { __typename?: 'mb_views_nft_activities_rollup_stddev_samp_fields'; count?: Maybe; price?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_activities_rollup" */ export type MbViewsNftActivitiesRollupStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftActivitiesRollupStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftActivitiesRollupStreamCursorValueInput = { action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; count?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_ids?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftActivitiesRollupSumFields = { __typename?: 'mb_views_nft_activities_rollup_sum_fields'; count?: Maybe; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftActivitiesRollupVarPopFields = { __typename?: 'mb_views_nft_activities_rollup_var_pop_fields'; count?: Maybe; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftActivitiesRollupVarSampFields = { __typename?: 'mb_views_nft_activities_rollup_var_samp_fields'; count?: Maybe; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftActivitiesRollupVarianceFields = { __typename?: 'mb_views_nft_activities_rollup_variance_fields'; count?: Maybe; price?: Maybe; }; /** select columns of table "mb_views.nft_activities" */ export declare enum MbViewsNftActivitiesSelectColumn { /** column name */ ActionReceiver = "action_receiver", /** column name */ ActionSender = "action_sender", /** column name */ ContentFlag = "content_flag", /** column name */ Copies = "copies", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Kind = "kind", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataId = "metadata_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ ReferenceHash = "reference_hash", /** column name */ Timestamp = "timestamp", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ TxSender = "tx_sender" } /** aggregate stddev on columns */ export type MbViewsNftActivitiesStddevFields = { __typename?: 'mb_views_nft_activities_stddev_fields'; copies?: Maybe; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftActivitiesStddevPopFields = { __typename?: 'mb_views_nft_activities_stddev_pop_fields'; copies?: Maybe; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftActivitiesStddevSampFields = { __typename?: 'mb_views_nft_activities_stddev_samp_fields'; copies?: Maybe; price?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_activities" */ export type MbViewsNftActivitiesStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftActivitiesStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftActivitiesStreamCursorValueInput = { action_receiver?: InputMaybe; action_sender?: InputMaybe; content_flag?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; kind?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; timestamp?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftActivitiesSumFields = { __typename?: 'mb_views_nft_activities_sum_fields'; copies?: Maybe; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftActivitiesVarPopFields = { __typename?: 'mb_views_nft_activities_var_pop_fields'; copies?: Maybe; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftActivitiesVarSampFields = { __typename?: 'mb_views_nft_activities_var_samp_fields'; copies?: Maybe; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftActivitiesVarianceFields = { __typename?: 'mb_views_nft_activities_variance_fields'; copies?: Maybe; price?: Maybe; }; /** columns and relationships of "mb_views.nft_metadata" */ export type MbViewsNftMetadata = { __typename?: 'mb_views_nft_metadata'; base_uri?: Maybe; description?: Maybe; extra?: Maybe; id?: Maybe; /** An array relationship */ listings: Array; /** An aggregate relationship */ listings_aggregate: MbViewsActiveListingsAggregate; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_is_mintbase?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; reference_blob?: Maybe; title?: Maybe; }; /** columns and relationships of "mb_views.nft_metadata" */ export type MbViewsNftMetadataListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_metadata" */ export type MbViewsNftMetadataListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_metadata" */ export type MbViewsNftMetadataReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_metadata" */ export type MbViewsNftMetadataAggregate = { __typename?: 'mb_views_nft_metadata_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_metadata" */ export type MbViewsNftMetadataAggregateFields = { __typename?: 'mb_views_nft_metadata_aggregate_fields'; count: Scalars['Int']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "mb_views.nft_metadata" */ export type MbViewsNftMetadataAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_metadata". All fields are combined with a logical 'AND'. */ export type MbViewsNftMetadataBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; listings?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftMetadataMaxFields = { __typename?: 'mb_views_nft_metadata_max_fields'; base_uri?: Maybe; description?: Maybe; extra?: Maybe; id?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; title?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftMetadataMinFields = { __typename?: 'mb_views_nft_metadata_min_fields'; base_uri?: Maybe; description?: Maybe; extra?: Maybe; id?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; title?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_metadata". */ export type MbViewsNftMetadataOrderBy = { base_uri?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** select columns of table "mb_views.nft_metadata" */ export declare enum MbViewsNftMetadataSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Id = "id", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataContentFlag = "metadata_content_flag", /** column name */ NftContractContentFlag = "nft_contract_content_flag", /** column name */ NftContractCreatedAt = "nft_contract_created_at", /** column name */ NftContractIcon = "nft_contract_icon", /** column name */ NftContractId = "nft_contract_id", /** column name */ NftContractIsMintbase = "nft_contract_is_mintbase", /** column name */ NftContractName = "nft_contract_name", /** column name */ NftContractOwnerId = "nft_contract_owner_id", /** column name */ NftContractReference = "nft_contract_reference", /** column name */ NftContractSpec = "nft_contract_spec", /** column name */ NftContractSymbol = "nft_contract_symbol", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title" } /** Streaming cursor of the table "mb_views_nft_metadata" */ export type MbViewsNftMetadataStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftMetadataStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftMetadataStreamCursorValueInput = { base_uri?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** columns and relationships of "mb_views.nft_metadata_unburned" */ export type MbViewsNftMetadataUnburned = { __typename?: 'mb_views_nft_metadata_unburned'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; media?: Maybe; metadata_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; price?: Maybe; reference_blob?: Maybe; title?: Maybe; }; /** columns and relationships of "mb_views.nft_metadata_unburned" */ export type MbViewsNftMetadataUnburnedReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_metadata_unburned" */ export type MbViewsNftMetadataUnburnedAggregate = { __typename?: 'mb_views_nft_metadata_unburned_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_metadata_unburned" */ export type MbViewsNftMetadataUnburnedAggregateFields = { __typename?: 'mb_views_nft_metadata_unburned_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_metadata_unburned" */ export type MbViewsNftMetadataUnburnedAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftMetadataUnburnedAvgFields = { __typename?: 'mb_views_nft_metadata_unburned_avg_fields'; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_metadata_unburned". All fields are combined with a logical 'AND'. */ export type MbViewsNftMetadataUnburnedBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftMetadataUnburnedMaxFields = { __typename?: 'mb_views_nft_metadata_unburned_max_fields'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; media?: Maybe; metadata_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; title?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftMetadataUnburnedMinFields = { __typename?: 'mb_views_nft_metadata_unburned_min_fields'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; media?: Maybe; metadata_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; price?: Maybe; title?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_metadata_unburned". */ export type MbViewsNftMetadataUnburnedOrderBy = { base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** select columns of table "mb_views.nft_metadata_unburned" */ export declare enum MbViewsNftMetadataUnburnedSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ ContentFlag = "content_flag", /** column name */ Description = "description", /** column name */ Media = "media", /** column name */ MetadataId = "metadata_id", /** column name */ MintedTimestamp = "minted_timestamp", /** column name */ Minter = "minter", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title" } /** aggregate stddev on columns */ export type MbViewsNftMetadataUnburnedStddevFields = { __typename?: 'mb_views_nft_metadata_unburned_stddev_fields'; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftMetadataUnburnedStddevPopFields = { __typename?: 'mb_views_nft_metadata_unburned_stddev_pop_fields'; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftMetadataUnburnedStddevSampFields = { __typename?: 'mb_views_nft_metadata_unburned_stddev_samp_fields'; price?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_metadata_unburned" */ export type MbViewsNftMetadataUnburnedStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftMetadataUnburnedStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftMetadataUnburnedStreamCursorValueInput = { base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; media?: InputMaybe; metadata_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftMetadataUnburnedSumFields = { __typename?: 'mb_views_nft_metadata_unburned_sum_fields'; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftMetadataUnburnedVarPopFields = { __typename?: 'mb_views_nft_metadata_unburned_var_pop_fields'; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftMetadataUnburnedVarSampFields = { __typename?: 'mb_views_nft_metadata_unburned_var_samp_fields'; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftMetadataUnburnedVarianceFields = { __typename?: 'mb_views_nft_metadata_unburned_variance_fields'; price?: Maybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokens = { __typename?: 'mb_views_nft_owned_tokens'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; currency?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; listing_approval_id?: Maybe; listing_kind?: Maybe; /** An array relationship */ listings: Array; /** An aggregate relationship */ listings_aggregate: NftListingsAggregate; market_id?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; /** An array relationship */ nft_contract: Array; /** An aggregate relationship */ nft_contract_aggregate: NftContractsAggregate; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_is_mintbase?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; price?: Maybe; reference?: Maybe; reference_blob?: Maybe; reference_hash?: Maybe; royalties?: Maybe; royalties_percent?: Maybe; splits?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensNftContractArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensNftContractAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensReferenceBlobArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensRoyaltiesArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensSplitsArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensAggregate = { __typename?: 'mb_views_nft_owned_tokens_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensAggregateFields = { __typename?: 'mb_views_nft_owned_tokens_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_owned_tokens" */ export type MbViewsNftOwnedTokensAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftOwnedTokensAvgFields = { __typename?: 'mb_views_nft_owned_tokens_avg_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_owned_tokens". All fields are combined with a logical 'AND'. */ export type MbViewsNftOwnedTokensBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listing_approval_id?: InputMaybe; listing_kind?: InputMaybe; listings?: InputMaybe; listings_aggregate?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_aggregate?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftOwnedTokensMaxFields = { __typename?: 'mb_views_nft_owned_tokens_max_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; currency?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; listing_approval_id?: Maybe; listing_kind?: Maybe; market_id?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; price?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftOwnedTokensMinFields = { __typename?: 'mb_views_nft_owned_tokens_min_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; currency?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; listing_approval_id?: Maybe; listing_kind?: Maybe; market_id?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; price?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_owned_tokens". */ export type MbViewsNftOwnedTokensOrderBy = { base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listing_approval_id?: InputMaybe; listing_kind?: InputMaybe; listings_aggregate?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_aggregate?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** select columns of table "mb_views.nft_owned_tokens" */ export declare enum MbViewsNftOwnedTokensSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ BurnedReceiptId = "burned_receipt_id", /** column name */ BurnedTimestamp = "burned_timestamp", /** column name */ Copies = "copies", /** column name */ Currency = "currency", /** column name */ Description = "description", /** column name */ ExpiresAt = "expires_at", /** column name */ Extra = "extra", /** column name */ IssuedAt = "issued_at", /** column name */ LastTransferReceiptId = "last_transfer_receipt_id", /** column name */ LastTransferTimestamp = "last_transfer_timestamp", /** column name */ ListingApprovalId = "listing_approval_id", /** column name */ ListingKind = "listing_kind", /** column name */ MarketId = "market_id", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataContentFlag = "metadata_content_flag", /** column name */ MetadataId = "metadata_id", /** column name */ MintMemo = "mint_memo", /** column name */ MintedReceiptId = "minted_receipt_id", /** column name */ MintedTimestamp = "minted_timestamp", /** column name */ Minter = "minter", /** column name */ NftContractCreatedAt = "nft_contract_created_at", /** column name */ NftContractIcon = "nft_contract_icon", /** column name */ NftContractId = "nft_contract_id", /** column name */ NftContractIsMintbase = "nft_contract_is_mintbase", /** column name */ NftContractName = "nft_contract_name", /** column name */ NftContractOwnerId = "nft_contract_owner_id", /** column name */ NftContractReference = "nft_contract_reference", /** column name */ NftContractSpec = "nft_contract_spec", /** column name */ NftContractSymbol = "nft_contract_symbol", /** column name */ Owner = "owner", /** column name */ Price = "price", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ ReferenceHash = "reference_hash", /** column name */ Royalties = "royalties", /** column name */ RoyaltiesPercent = "royalties_percent", /** column name */ Splits = "splits", /** column name */ StartsAt = "starts_at", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ UpdatedAt = "updated_at" } /** aggregate stddev on columns */ export type MbViewsNftOwnedTokensStddevFields = { __typename?: 'mb_views_nft_owned_tokens_stddev_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftOwnedTokensStddevPopFields = { __typename?: 'mb_views_nft_owned_tokens_stddev_pop_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftOwnedTokensStddevSampFields = { __typename?: 'mb_views_nft_owned_tokens_stddev_samp_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_owned_tokens" */ export type MbViewsNftOwnedTokensStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftOwnedTokensStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftOwnedTokensStreamCursorValueInput = { base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; currency?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listing_approval_id?: InputMaybe; listing_kind?: InputMaybe; market_id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftOwnedTokensSumFields = { __typename?: 'mb_views_nft_owned_tokens_sum_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftOwnedTokensVarPopFields = { __typename?: 'mb_views_nft_owned_tokens_var_pop_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftOwnedTokensVarSampFields = { __typename?: 'mb_views_nft_owned_tokens_var_samp_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftOwnedTokensVarianceFields = { __typename?: 'mb_views_nft_owned_tokens_variance_fields'; copies?: Maybe; listing_approval_id?: Maybe; price?: Maybe; royalties_percent?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokens = { __typename?: 'mb_views_nft_tokens'; /** An array relationship */ attributes: Array; /** An aggregate relationship */ attributes_aggregate: NftAttributesAggregate; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; /** An array relationship */ listings: Array; /** An aggregate relationship */ listings_aggregate: NftListingsAggregate; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_is_mintbase?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_blob?: Maybe; reference_hash?: Maybe; royalties?: Maybe; royalties_percent?: Maybe; splits?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensAttributesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensAttributesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensReferenceBlobArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensRoyaltiesArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens" */ export type MbViewsNftTokensSplitsArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_tokens" */ export type MbViewsNftTokensAggregate = { __typename?: 'mb_views_nft_tokens_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_tokens" */ export type MbViewsNftTokensAggregateFields = { __typename?: 'mb_views_nft_tokens_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_tokens" */ export type MbViewsNftTokensAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftTokensAvgFields = { __typename?: 'mb_views_nft_tokens_avg_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_tokens". All fields are combined with a logical 'AND'. */ export type MbViewsNftTokensBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; attributes?: InputMaybe; attributes_aggregate?: InputMaybe; base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listings?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftTokensMaxFields = { __typename?: 'mb_views_nft_tokens_max_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftTokensMinFields = { __typename?: 'mb_views_nft_tokens_min_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_tokens". */ export type MbViewsNftTokensOrderBy = { attributes_aggregate?: InputMaybe; base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** select columns of table "mb_views.nft_tokens" */ export declare enum MbViewsNftTokensSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ BurnedReceiptId = "burned_receipt_id", /** column name */ BurnedTimestamp = "burned_timestamp", /** column name */ Copies = "copies", /** column name */ Description = "description", /** column name */ ExpiresAt = "expires_at", /** column name */ Extra = "extra", /** column name */ IssuedAt = "issued_at", /** column name */ LastTransferReceiptId = "last_transfer_receipt_id", /** column name */ LastTransferTimestamp = "last_transfer_timestamp", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataContentFlag = "metadata_content_flag", /** column name */ MetadataId = "metadata_id", /** column name */ MintMemo = "mint_memo", /** column name */ MintedReceiptId = "minted_receipt_id", /** column name */ MintedTimestamp = "minted_timestamp", /** column name */ Minter = "minter", /** column name */ NftContractContentFlag = "nft_contract_content_flag", /** column name */ NftContractCreatedAt = "nft_contract_created_at", /** column name */ NftContractIcon = "nft_contract_icon", /** column name */ NftContractId = "nft_contract_id", /** column name */ NftContractIsMintbase = "nft_contract_is_mintbase", /** column name */ NftContractName = "nft_contract_name", /** column name */ NftContractOwnerId = "nft_contract_owner_id", /** column name */ NftContractReference = "nft_contract_reference", /** column name */ NftContractSpec = "nft_contract_spec", /** column name */ NftContractSymbol = "nft_contract_symbol", /** column name */ Owner = "owner", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ ReferenceHash = "reference_hash", /** column name */ Royalties = "royalties", /** column name */ RoyaltiesPercent = "royalties_percent", /** column name */ Splits = "splits", /** column name */ StartsAt = "starts_at", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ UpdatedAt = "updated_at" } /** aggregate stddev on columns */ export type MbViewsNftTokensStddevFields = { __typename?: 'mb_views_nft_tokens_stddev_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftTokensStddevPopFields = { __typename?: 'mb_views_nft_tokens_stddev_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftTokensStddevSampFields = { __typename?: 'mb_views_nft_tokens_stddev_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_tokens" */ export type MbViewsNftTokensStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftTokensStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftTokensStreamCursorValueInput = { base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftTokensSumFields = { __typename?: 'mb_views_nft_tokens_sum_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftTokensVarPopFields = { __typename?: 'mb_views_nft_tokens_var_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftTokensVarSampFields = { __typename?: 'mb_views_nft_tokens_var_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftTokensVarianceFields = { __typename?: 'mb_views_nft_tokens_variance_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens_with_listing" */ export type MbViewsNftTokensWithListing = { __typename?: 'mb_views_nft_tokens_with_listing'; content_flag?: Maybe; metadata_id?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id?: Maybe; owner?: Maybe; price?: Maybe; reference_blob?: Maybe; token_id?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens_with_listing" */ export type MbViewsNftTokensWithListingReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_tokens_with_listing" */ export type MbViewsNftTokensWithListingAggregate = { __typename?: 'mb_views_nft_tokens_with_listing_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_tokens_with_listing" */ export type MbViewsNftTokensWithListingAggregateFields = { __typename?: 'mb_views_nft_tokens_with_listing_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_tokens_with_listing" */ export type MbViewsNftTokensWithListingAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftTokensWithListingAvgFields = { __typename?: 'mb_views_nft_tokens_with_listing_avg_fields'; price?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_tokens_with_listing". All fields are combined with a logical 'AND'. */ export type MbViewsNftTokensWithListingBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; content_flag?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; token_id?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftTokensWithListingMaxFields = { __typename?: 'mb_views_nft_tokens_with_listing_max_fields'; content_flag?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; owner?: Maybe; price?: Maybe; token_id?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftTokensWithListingMinFields = { __typename?: 'mb_views_nft_tokens_with_listing_min_fields'; content_flag?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; owner?: Maybe; price?: Maybe; token_id?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_tokens_with_listing". */ export type MbViewsNftTokensWithListingOrderBy = { content_flag?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; token_id?: InputMaybe; }; /** select columns of table "mb_views.nft_tokens_with_listing" */ export declare enum MbViewsNftTokensWithListingSelectColumn { /** column name */ ContentFlag = "content_flag", /** column name */ MetadataId = "metadata_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ Owner = "owner", /** column name */ Price = "price", /** column name */ ReferenceBlob = "reference_blob", /** column name */ TokenId = "token_id" } /** aggregate stddev on columns */ export type MbViewsNftTokensWithListingStddevFields = { __typename?: 'mb_views_nft_tokens_with_listing_stddev_fields'; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftTokensWithListingStddevPopFields = { __typename?: 'mb_views_nft_tokens_with_listing_stddev_pop_fields'; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftTokensWithListingStddevSampFields = { __typename?: 'mb_views_nft_tokens_with_listing_stddev_samp_fields'; price?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_tokens_with_listing" */ export type MbViewsNftTokensWithListingStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftTokensWithListingStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftTokensWithListingStreamCursorValueInput = { content_flag?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; owner?: InputMaybe; price?: InputMaybe; reference_blob?: InputMaybe; token_id?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftTokensWithListingSumFields = { __typename?: 'mb_views_nft_tokens_with_listing_sum_fields'; price?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftTokensWithListingVarPopFields = { __typename?: 'mb_views_nft_tokens_with_listing_var_pop_fields'; price?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftTokensWithListingVarSampFields = { __typename?: 'mb_views_nft_tokens_with_listing_var_samp_fields'; price?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftTokensWithListingVarianceFields = { __typename?: 'mb_views_nft_tokens_with_listing_variance_fields'; price?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaType = { __typename?: 'mb_views_nft_tokens_with_media_type'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; forever_media_type?: Maybe; forever_media_url?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; /** An array relationship */ listings: Array; /** An aggregate relationship */ listings_aggregate: NftListingsAggregate; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_is_mintbase?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_blob?: Maybe; reference_hash?: Maybe; royalties?: Maybe; royalties_percent?: Maybe; splits?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeReferenceBlobArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeRoyaltiesArgs = { path?: InputMaybe; }; /** columns and relationships of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeSplitsArgs = { path?: InputMaybe; }; /** aggregated selection of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeAggregate = { __typename?: 'mb_views_nft_tokens_with_media_type_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeAggregateFields = { __typename?: 'mb_views_nft_tokens_with_media_type_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsNftTokensWithMediaTypeAvgFields = { __typename?: 'mb_views_nft_tokens_with_media_type_avg_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.nft_tokens_with_media_type". All fields are combined with a logical 'AND'. */ export type MbViewsNftTokensWithMediaTypeBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; forever_media_type?: InputMaybe; forever_media_url?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listings?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsNftTokensWithMediaTypeMaxFields = { __typename?: 'mb_views_nft_tokens_with_media_type_max_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; forever_media_type?: Maybe; forever_media_url?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** aggregate min on columns */ export type MbViewsNftTokensWithMediaTypeMinFields = { __typename?: 'mb_views_nft_tokens_with_media_type_min_fields'; base_uri?: Maybe; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; description?: Maybe; expires_at?: Maybe; extra?: Maybe; forever_media_type?: Maybe; forever_media_url?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; media?: Maybe; media_hash?: Maybe; metadata_content_flag?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_content_flag?: Maybe; nft_contract_created_at?: Maybe; nft_contract_icon?: Maybe; nft_contract_id?: Maybe; nft_contract_name?: Maybe; nft_contract_owner_id?: Maybe; nft_contract_reference?: Maybe; nft_contract_spec?: Maybe; nft_contract_symbol?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; title?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** Ordering options when selecting data from "mb_views.nft_tokens_with_media_type". */ export type MbViewsNftTokensWithMediaTypeOrderBy = { base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; forever_media_type?: InputMaybe; forever_media_url?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; listings_aggregate?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** select columns of table "mb_views.nft_tokens_with_media_type" */ export declare enum MbViewsNftTokensWithMediaTypeSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ BurnedReceiptId = "burned_receipt_id", /** column name */ BurnedTimestamp = "burned_timestamp", /** column name */ Copies = "copies", /** column name */ Description = "description", /** column name */ ExpiresAt = "expires_at", /** column name */ Extra = "extra", /** column name */ ForeverMediaType = "forever_media_type", /** column name */ ForeverMediaUrl = "forever_media_url", /** column name */ IssuedAt = "issued_at", /** column name */ LastTransferReceiptId = "last_transfer_receipt_id", /** column name */ LastTransferTimestamp = "last_transfer_timestamp", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ MetadataContentFlag = "metadata_content_flag", /** column name */ MetadataId = "metadata_id", /** column name */ MintMemo = "mint_memo", /** column name */ MintedReceiptId = "minted_receipt_id", /** column name */ MintedTimestamp = "minted_timestamp", /** column name */ Minter = "minter", /** column name */ NftContractContentFlag = "nft_contract_content_flag", /** column name */ NftContractCreatedAt = "nft_contract_created_at", /** column name */ NftContractIcon = "nft_contract_icon", /** column name */ NftContractId = "nft_contract_id", /** column name */ NftContractIsMintbase = "nft_contract_is_mintbase", /** column name */ NftContractName = "nft_contract_name", /** column name */ NftContractOwnerId = "nft_contract_owner_id", /** column name */ NftContractReference = "nft_contract_reference", /** column name */ NftContractSpec = "nft_contract_spec", /** column name */ NftContractSymbol = "nft_contract_symbol", /** column name */ Owner = "owner", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ ReferenceHash = "reference_hash", /** column name */ Royalties = "royalties", /** column name */ RoyaltiesPercent = "royalties_percent", /** column name */ Splits = "splits", /** column name */ StartsAt = "starts_at", /** column name */ Title = "title", /** column name */ TokenId = "token_id", /** column name */ UpdatedAt = "updated_at" } /** aggregate stddev on columns */ export type MbViewsNftTokensWithMediaTypeStddevFields = { __typename?: 'mb_views_nft_tokens_with_media_type_stddev_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsNftTokensWithMediaTypeStddevPopFields = { __typename?: 'mb_views_nft_tokens_with_media_type_stddev_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsNftTokensWithMediaTypeStddevSampFields = { __typename?: 'mb_views_nft_tokens_with_media_type_stddev_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Streaming cursor of the table "mb_views_nft_tokens_with_media_type" */ export type MbViewsNftTokensWithMediaTypeStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsNftTokensWithMediaTypeStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsNftTokensWithMediaTypeStreamCursorValueInput = { base_uri?: InputMaybe; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; description?: InputMaybe; expires_at?: InputMaybe; extra?: InputMaybe; forever_media_type?: InputMaybe; forever_media_url?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; metadata_content_flag?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_content_flag?: InputMaybe; nft_contract_created_at?: InputMaybe; nft_contract_icon?: InputMaybe; nft_contract_id?: InputMaybe; nft_contract_is_mintbase?: InputMaybe; nft_contract_name?: InputMaybe; nft_contract_owner_id?: InputMaybe; nft_contract_reference?: InputMaybe; nft_contract_spec?: InputMaybe; nft_contract_symbol?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; title?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsNftTokensWithMediaTypeSumFields = { __typename?: 'mb_views_nft_tokens_with_media_type_sum_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsNftTokensWithMediaTypeVarPopFields = { __typename?: 'mb_views_nft_tokens_with_media_type_var_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsNftTokensWithMediaTypeVarSampFields = { __typename?: 'mb_views_nft_tokens_with_media_type_var_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate variance on columns */ export type MbViewsNftTokensWithMediaTypeVarianceFields = { __typename?: 'mb_views_nft_tokens_with_media_type_variance_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** columns and relationships of "mb_views.top_stores" */ export type MbViewsTopStores = { __typename?: 'mb_views_top_stores'; date?: Maybe; nft_contract_id?: Maybe; total?: Maybe; }; /** aggregated selection of "mb_views.top_stores" */ export type MbViewsTopStoresAggregate = { __typename?: 'mb_views_top_stores_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "mb_views.top_stores" */ export type MbViewsTopStoresAggregateFields = { __typename?: 'mb_views_top_stores_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "mb_views.top_stores" */ export type MbViewsTopStoresAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type MbViewsTopStoresAvgFields = { __typename?: 'mb_views_top_stores_avg_fields'; total?: Maybe; }; /** Boolean expression to filter rows from the table "mb_views.top_stores". All fields are combined with a logical 'AND'. */ export type MbViewsTopStoresBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; date?: InputMaybe; nft_contract_id?: InputMaybe; total?: InputMaybe; }; /** aggregate max on columns */ export type MbViewsTopStoresMaxFields = { __typename?: 'mb_views_top_stores_max_fields'; date?: Maybe; nft_contract_id?: Maybe; total?: Maybe; }; /** aggregate min on columns */ export type MbViewsTopStoresMinFields = { __typename?: 'mb_views_top_stores_min_fields'; date?: Maybe; nft_contract_id?: Maybe; total?: Maybe; }; /** Ordering options when selecting data from "mb_views.top_stores". */ export type MbViewsTopStoresOrderBy = { date?: InputMaybe; nft_contract_id?: InputMaybe; total?: InputMaybe; }; /** select columns of table "mb_views.top_stores" */ export declare enum MbViewsTopStoresSelectColumn { /** column name */ Date = "date", /** column name */ NftContractId = "nft_contract_id", /** column name */ Total = "total" } /** aggregate stddev on columns */ export type MbViewsTopStoresStddevFields = { __typename?: 'mb_views_top_stores_stddev_fields'; total?: Maybe; }; /** aggregate stddev_pop on columns */ export type MbViewsTopStoresStddevPopFields = { __typename?: 'mb_views_top_stores_stddev_pop_fields'; total?: Maybe; }; /** aggregate stddev_samp on columns */ export type MbViewsTopStoresStddevSampFields = { __typename?: 'mb_views_top_stores_stddev_samp_fields'; total?: Maybe; }; /** Streaming cursor of the table "mb_views_top_stores" */ export type MbViewsTopStoresStreamCursorInput = { /** Stream column input with initial value */ initial_value: MbViewsTopStoresStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type MbViewsTopStoresStreamCursorValueInput = { date?: InputMaybe; nft_contract_id?: InputMaybe; total?: InputMaybe; }; /** aggregate sum on columns */ export type MbViewsTopStoresSumFields = { __typename?: 'mb_views_top_stores_sum_fields'; total?: Maybe; }; /** aggregate var_pop on columns */ export type MbViewsTopStoresVarPopFields = { __typename?: 'mb_views_top_stores_var_pop_fields'; total?: Maybe; }; /** aggregate var_samp on columns */ export type MbViewsTopStoresVarSampFields = { __typename?: 'mb_views_top_stores_var_samp_fields'; total?: Maybe; }; /** aggregate variance on columns */ export type MbViewsTopStoresVarianceFields = { __typename?: 'mb_views_top_stores_variance_fields'; total?: Maybe; }; /** columns and relationships of "nft_activities" */ export type NftActivities = { __typename?: 'nft_activities'; action_receiver?: Maybe; action_sender?: Maybe; kind: Scalars['String']; memo?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; price?: Maybe; receipt_id: Scalars['String']; timestamp: Scalars['timestamp']; token_id: Scalars['String']; tx_sender: Scalars['String']; }; /** aggregated selection of "nft_activities" */ export type NftActivitiesAggregate = { __typename?: 'nft_activities_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "nft_activities" */ export type NftActivitiesAggregateFields = { __typename?: 'nft_activities_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "nft_activities" */ export type NftActivitiesAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type NftActivitiesAvgFields = { __typename?: 'nft_activities_avg_fields'; price?: Maybe; }; /** Boolean expression to filter rows from the table "nft_activities". All fields are combined with a logical 'AND'. */ export type NftActivitiesBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; action_receiver?: InputMaybe; action_sender?: InputMaybe; kind?: InputMaybe; memo?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate max on columns */ export type NftActivitiesMaxFields = { __typename?: 'nft_activities_max_fields'; action_receiver?: Maybe; action_sender?: Maybe; kind?: Maybe; memo?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; timestamp?: Maybe; token_id?: Maybe; tx_sender?: Maybe; }; /** aggregate min on columns */ export type NftActivitiesMinFields = { __typename?: 'nft_activities_min_fields'; action_receiver?: Maybe; action_sender?: Maybe; kind?: Maybe; memo?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; timestamp?: Maybe; token_id?: Maybe; tx_sender?: Maybe; }; /** Ordering options when selecting data from "nft_activities". */ export type NftActivitiesOrderBy = { action_receiver?: InputMaybe; action_sender?: InputMaybe; kind?: InputMaybe; memo?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** select columns of table "nft_activities" */ export declare enum NftActivitiesSelectColumn { /** column name */ ActionReceiver = "action_receiver", /** column name */ ActionSender = "action_sender", /** column name */ Kind = "kind", /** column name */ Memo = "memo", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ Timestamp = "timestamp", /** column name */ TokenId = "token_id", /** column name */ TxSender = "tx_sender" } /** aggregate stddev on columns */ export type NftActivitiesStddevFields = { __typename?: 'nft_activities_stddev_fields'; price?: Maybe; }; /** aggregate stddev_pop on columns */ export type NftActivitiesStddevPopFields = { __typename?: 'nft_activities_stddev_pop_fields'; price?: Maybe; }; /** aggregate stddev_samp on columns */ export type NftActivitiesStddevSampFields = { __typename?: 'nft_activities_stddev_samp_fields'; price?: Maybe; }; /** Streaming cursor of the table "nft_activities" */ export type NftActivitiesStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftActivitiesStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftActivitiesStreamCursorValueInput = { action_receiver?: InputMaybe; action_sender?: InputMaybe; kind?: InputMaybe; memo?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; tx_sender?: InputMaybe; }; /** aggregate sum on columns */ export type NftActivitiesSumFields = { __typename?: 'nft_activities_sum_fields'; price?: Maybe; }; /** aggregate var_pop on columns */ export type NftActivitiesVarPopFields = { __typename?: 'nft_activities_var_pop_fields'; price?: Maybe; }; /** aggregate var_samp on columns */ export type NftActivitiesVarSampFields = { __typename?: 'nft_activities_var_samp_fields'; price?: Maybe; }; /** aggregate variance on columns */ export type NftActivitiesVarianceFields = { __typename?: 'nft_activities_variance_fields'; price?: Maybe; }; /** columns and relationships of "nft_attributes" */ export type NftAttributes = { __typename?: 'nft_attributes'; attribute_display_type?: Maybe; attribute_type: Scalars['String']; attribute_value?: Maybe; /** An object relationship */ metadata?: Maybe; nft_contract_id: Scalars['String']; nft_metadata_id: Scalars['String']; }; /** aggregated selection of "nft_attributes" */ export type NftAttributesAggregate = { __typename?: 'nft_attributes_aggregate'; aggregate?: Maybe; nodes: Array; }; export type NftAttributesAggregateBoolExp = { count?: InputMaybe; }; export type NftAttributesAggregateBoolExpCount = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: IntComparisonExp; }; /** aggregate fields of "nft_attributes" */ export type NftAttributesAggregateFields = { __typename?: 'nft_attributes_aggregate_fields'; count: Scalars['Int']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "nft_attributes" */ export type NftAttributesAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "nft_attributes" */ export type NftAttributesAggregateOrderBy = { count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; }; /** Boolean expression to filter rows from the table "nft_attributes". All fields are combined with a logical 'AND'. */ export type NftAttributesBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; attribute_display_type?: InputMaybe; attribute_type?: InputMaybe; attribute_value?: InputMaybe; metadata?: InputMaybe; nft_contract_id?: InputMaybe; nft_metadata_id?: InputMaybe; }; /** aggregate max on columns */ export type NftAttributesMaxFields = { __typename?: 'nft_attributes_max_fields'; attribute_display_type?: Maybe; attribute_type?: Maybe; attribute_value?: Maybe; nft_contract_id?: Maybe; nft_metadata_id?: Maybe; }; /** order by max() on columns of table "nft_attributes" */ export type NftAttributesMaxOrderBy = { attribute_display_type?: InputMaybe; attribute_type?: InputMaybe; attribute_value?: InputMaybe; nft_contract_id?: InputMaybe; nft_metadata_id?: InputMaybe; }; /** aggregate min on columns */ export type NftAttributesMinFields = { __typename?: 'nft_attributes_min_fields'; attribute_display_type?: Maybe; attribute_type?: Maybe; attribute_value?: Maybe; nft_contract_id?: Maybe; nft_metadata_id?: Maybe; }; /** order by min() on columns of table "nft_attributes" */ export type NftAttributesMinOrderBy = { attribute_display_type?: InputMaybe; attribute_type?: InputMaybe; attribute_value?: InputMaybe; nft_contract_id?: InputMaybe; nft_metadata_id?: InputMaybe; }; /** Ordering options when selecting data from "nft_attributes". */ export type NftAttributesOrderBy = { attribute_display_type?: InputMaybe; attribute_type?: InputMaybe; attribute_value?: InputMaybe; metadata?: InputMaybe; nft_contract_id?: InputMaybe; nft_metadata_id?: InputMaybe; }; /** select columns of table "nft_attributes" */ export declare enum NftAttributesSelectColumn { /** column name */ AttributeDisplayType = "attribute_display_type", /** column name */ AttributeType = "attribute_type", /** column name */ AttributeValue = "attribute_value", /** column name */ NftContractId = "nft_contract_id", /** column name */ NftMetadataId = "nft_metadata_id" } /** Streaming cursor of the table "nft_attributes" */ export type NftAttributesStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftAttributesStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftAttributesStreamCursorValueInput = { attribute_display_type?: InputMaybe; attribute_type?: InputMaybe; attribute_value?: InputMaybe; nft_contract_id?: InputMaybe; nft_metadata_id?: InputMaybe; }; /** columns and relationships of "nft_contracts" */ export type NftContracts = { __typename?: 'nft_contracts'; base_uri?: Maybe; category?: Maybe; content_flag?: Maybe; created_at?: Maybe; created_receipt_id?: Maybe; icon?: Maybe; id: Scalars['String']; is_mintbase: Scalars['Boolean']; name: Scalars['String']; owner_id?: Maybe; reference?: Maybe; reference_hash?: Maybe; spec: Scalars['String']; symbol?: Maybe; }; /** aggregated selection of "nft_contracts" */ export type NftContractsAggregate = { __typename?: 'nft_contracts_aggregate'; aggregate?: Maybe; nodes: Array; }; export type NftContractsAggregateBoolExp = { bool_and?: InputMaybe; bool_or?: InputMaybe; count?: InputMaybe; }; export type NftContractsAggregateBoolExpBoolAnd = { arguments: NftContractsSelectColumnNftContractsAggregateBoolExpBoolAndArgumentsColumns; distinct?: InputMaybe; filter?: InputMaybe; predicate: BooleanComparisonExp; }; export type NftContractsAggregateBoolExpBoolOr = { arguments: NftContractsSelectColumnNftContractsAggregateBoolExpBoolOrArgumentsColumns; distinct?: InputMaybe; filter?: InputMaybe; predicate: BooleanComparisonExp; }; export type NftContractsAggregateBoolExpCount = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: IntComparisonExp; }; /** aggregate fields of "nft_contracts" */ export type NftContractsAggregateFields = { __typename?: 'nft_contracts_aggregate_fields'; count: Scalars['Int']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "nft_contracts" */ export type NftContractsAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "nft_contracts" */ export type NftContractsAggregateOrderBy = { count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; }; /** Boolean expression to filter rows from the table "nft_contracts". All fields are combined with a logical 'AND'. */ export type NftContractsBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; category?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; created_receipt_id?: InputMaybe; icon?: InputMaybe; id?: InputMaybe; is_mintbase?: InputMaybe; name?: InputMaybe; owner_id?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; spec?: InputMaybe; symbol?: InputMaybe; }; /** aggregate max on columns */ export type NftContractsMaxFields = { __typename?: 'nft_contracts_max_fields'; base_uri?: Maybe; category?: Maybe; content_flag?: Maybe; created_at?: Maybe; created_receipt_id?: Maybe; icon?: Maybe; id?: Maybe; name?: Maybe; owner_id?: Maybe; reference?: Maybe; reference_hash?: Maybe; spec?: Maybe; symbol?: Maybe; }; /** order by max() on columns of table "nft_contracts" */ export type NftContractsMaxOrderBy = { base_uri?: InputMaybe; category?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; created_receipt_id?: InputMaybe; icon?: InputMaybe; id?: InputMaybe; name?: InputMaybe; owner_id?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; spec?: InputMaybe; symbol?: InputMaybe; }; /** aggregate min on columns */ export type NftContractsMinFields = { __typename?: 'nft_contracts_min_fields'; base_uri?: Maybe; category?: Maybe; content_flag?: Maybe; created_at?: Maybe; created_receipt_id?: Maybe; icon?: Maybe; id?: Maybe; name?: Maybe; owner_id?: Maybe; reference?: Maybe; reference_hash?: Maybe; spec?: Maybe; symbol?: Maybe; }; /** order by min() on columns of table "nft_contracts" */ export type NftContractsMinOrderBy = { base_uri?: InputMaybe; category?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; created_receipt_id?: InputMaybe; icon?: InputMaybe; id?: InputMaybe; name?: InputMaybe; owner_id?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; spec?: InputMaybe; symbol?: InputMaybe; }; /** Ordering options when selecting data from "nft_contracts". */ export type NftContractsOrderBy = { base_uri?: InputMaybe; category?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; created_receipt_id?: InputMaybe; icon?: InputMaybe; id?: InputMaybe; is_mintbase?: InputMaybe; name?: InputMaybe; owner_id?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; spec?: InputMaybe; symbol?: InputMaybe; }; /** select columns of table "nft_contracts" */ export declare enum NftContractsSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ Category = "category", /** column name */ ContentFlag = "content_flag", /** column name */ CreatedAt = "created_at", /** column name */ CreatedReceiptId = "created_receipt_id", /** column name */ Icon = "icon", /** column name */ Id = "id", /** column name */ IsMintbase = "is_mintbase", /** column name */ Name = "name", /** column name */ OwnerId = "owner_id", /** column name */ Reference = "reference", /** column name */ ReferenceHash = "reference_hash", /** column name */ Spec = "spec", /** column name */ Symbol = "symbol" } /** select "nft_contracts_aggregate_bool_exp_bool_and_arguments_columns" columns of table "nft_contracts" */ export declare enum NftContractsSelectColumnNftContractsAggregateBoolExpBoolAndArgumentsColumns { /** column name */ IsMintbase = "is_mintbase" } /** select "nft_contracts_aggregate_bool_exp_bool_or_arguments_columns" columns of table "nft_contracts" */ export declare enum NftContractsSelectColumnNftContractsAggregateBoolExpBoolOrArgumentsColumns { /** column name */ IsMintbase = "is_mintbase" } /** Streaming cursor of the table "nft_contracts" */ export type NftContractsStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftContractsStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftContractsStreamCursorValueInput = { base_uri?: InputMaybe; category?: InputMaybe; content_flag?: InputMaybe; created_at?: InputMaybe; created_receipt_id?: InputMaybe; icon?: InputMaybe; id?: InputMaybe; is_mintbase?: InputMaybe; name?: InputMaybe; owner_id?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; spec?: InputMaybe; symbol?: InputMaybe; }; /** columns and relationships of "nft_earnings" */ export type NftEarnings = { __typename?: 'nft_earnings'; amount: Scalars['numeric']; approval_id: Scalars['numeric']; currency: Scalars['String']; is_affiliate?: Maybe; is_mintbase_cut: Scalars['Boolean']; is_referral: Scalars['Boolean']; market_id: Scalars['String']; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; /** An object relationship */ nft_token?: Maybe; /** An object relationship */ offer?: Maybe; offer_id: Scalars['bigint']; receipt_id: Scalars['String']; receiver_id: Scalars['String']; timestamp: Scalars['timestamp']; token_id: Scalars['String']; }; /** aggregated selection of "nft_earnings" */ export type NftEarningsAggregate = { __typename?: 'nft_earnings_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "nft_earnings" */ export type NftEarningsAggregateFields = { __typename?: 'nft_earnings_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "nft_earnings" */ export type NftEarningsAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type NftEarningsAvgFields = { __typename?: 'nft_earnings_avg_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** Boolean expression to filter rows from the table "nft_earnings". All fields are combined with a logical 'AND'. */ export type NftEarningsBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; amount?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; is_affiliate?: InputMaybe; is_mintbase_cut?: InputMaybe; is_referral?: InputMaybe; market_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offer?: InputMaybe; offer_id?: InputMaybe; receipt_id?: InputMaybe; receiver_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; }; /** aggregate max on columns */ export type NftEarningsMaxFields = { __typename?: 'nft_earnings_max_fields'; amount?: Maybe; approval_id?: Maybe; currency?: Maybe; market_id?: Maybe; nft_contract_id?: Maybe; offer_id?: Maybe; receipt_id?: Maybe; receiver_id?: Maybe; timestamp?: Maybe; token_id?: Maybe; }; /** aggregate min on columns */ export type NftEarningsMinFields = { __typename?: 'nft_earnings_min_fields'; amount?: Maybe; approval_id?: Maybe; currency?: Maybe; market_id?: Maybe; nft_contract_id?: Maybe; offer_id?: Maybe; receipt_id?: Maybe; receiver_id?: Maybe; timestamp?: Maybe; token_id?: Maybe; }; /** Ordering options when selecting data from "nft_earnings". */ export type NftEarningsOrderBy = { amount?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; is_affiliate?: InputMaybe; is_mintbase_cut?: InputMaybe; is_referral?: InputMaybe; market_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offer?: InputMaybe; offer_id?: InputMaybe; receipt_id?: InputMaybe; receiver_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; }; /** select columns of table "nft_earnings" */ export declare enum NftEarningsSelectColumn { /** column name */ Amount = "amount", /** column name */ ApprovalId = "approval_id", /** column name */ Currency = "currency", /** column name */ IsAffiliate = "is_affiliate", /** column name */ IsMintbaseCut = "is_mintbase_cut", /** column name */ IsReferral = "is_referral", /** column name */ MarketId = "market_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ OfferId = "offer_id", /** column name */ ReceiptId = "receipt_id", /** column name */ ReceiverId = "receiver_id", /** column name */ Timestamp = "timestamp", /** column name */ TokenId = "token_id" } /** aggregate stddev on columns */ export type NftEarningsStddevFields = { __typename?: 'nft_earnings_stddev_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** aggregate stddev_pop on columns */ export type NftEarningsStddevPopFields = { __typename?: 'nft_earnings_stddev_pop_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** aggregate stddev_samp on columns */ export type NftEarningsStddevSampFields = { __typename?: 'nft_earnings_stddev_samp_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** Streaming cursor of the table "nft_earnings" */ export type NftEarningsStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftEarningsStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftEarningsStreamCursorValueInput = { amount?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; is_affiliate?: InputMaybe; is_mintbase_cut?: InputMaybe; is_referral?: InputMaybe; market_id?: InputMaybe; nft_contract_id?: InputMaybe; offer_id?: InputMaybe; receipt_id?: InputMaybe; receiver_id?: InputMaybe; timestamp?: InputMaybe; token_id?: InputMaybe; }; /** aggregate sum on columns */ export type NftEarningsSumFields = { __typename?: 'nft_earnings_sum_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** aggregate var_pop on columns */ export type NftEarningsVarPopFields = { __typename?: 'nft_earnings_var_pop_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** aggregate var_samp on columns */ export type NftEarningsVarSampFields = { __typename?: 'nft_earnings_var_samp_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** aggregate variance on columns */ export type NftEarningsVarianceFields = { __typename?: 'nft_earnings_variance_fields'; amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; }; /** columns and relationships of "nft_listings" */ export type NftListings = { __typename?: 'nft_listings'; accepted_at?: Maybe; accepted_offer_id?: Maybe; approval_id: Scalars['numeric']; created_at: Scalars['timestamp']; currency: Scalars['String']; invalidated_at?: Maybe; kind: Scalars['String']; listed_by: Scalars['String']; market_id: Scalars['String']; metadata_id?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; /** An object relationship */ nft_token?: Maybe; /** An array relationship */ offers: Array; /** An aggregate relationship */ offers_aggregate: NftOffersAggregate; price?: Maybe; receipt_id: Scalars['String']; /** An object relationship */ token?: Maybe; token_id: Scalars['String']; unlisted_at?: Maybe; }; /** columns and relationships of "nft_listings" */ export type NftListingsOffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "nft_listings" */ export type NftListingsOffersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** aggregated selection of "nft_listings" */ export type NftListingsAggregate = { __typename?: 'nft_listings_aggregate'; aggregate?: Maybe; nodes: Array; }; export type NftListingsAggregateBoolExp = { count?: InputMaybe; }; export type NftListingsAggregateBoolExpCount = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: IntComparisonExp; }; /** aggregate fields of "nft_listings" */ export type NftListingsAggregateFields = { __typename?: 'nft_listings_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "nft_listings" */ export type NftListingsAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "nft_listings" */ export type NftListingsAggregateOrderBy = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type NftListingsAvgFields = { __typename?: 'nft_listings_avg_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by avg() on columns of table "nft_listings" */ export type NftListingsAvgOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** Boolean expression to filter rows from the table "nft_listings". All fields are combined with a logical 'AND'. */ export type NftListingsBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; accepted_at?: InputMaybe; accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; invalidated_at?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offers?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** aggregate max on columns */ export type NftListingsMaxFields = { __typename?: 'nft_listings_max_fields'; accepted_at?: Maybe; accepted_offer_id?: Maybe; approval_id?: Maybe; created_at?: Maybe; currency?: Maybe; invalidated_at?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; token_id?: Maybe; unlisted_at?: Maybe; }; /** order by max() on columns of table "nft_listings" */ export type NftListingsMaxOrderBy = { accepted_at?: InputMaybe; accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; invalidated_at?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** aggregate min on columns */ export type NftListingsMinFields = { __typename?: 'nft_listings_min_fields'; accepted_at?: Maybe; accepted_offer_id?: Maybe; approval_id?: Maybe; created_at?: Maybe; currency?: Maybe; invalidated_at?: Maybe; kind?: Maybe; listed_by?: Maybe; market_id?: Maybe; metadata_id?: Maybe; nft_contract_id?: Maybe; price?: Maybe; receipt_id?: Maybe; token_id?: Maybe; unlisted_at?: Maybe; }; /** order by min() on columns of table "nft_listings" */ export type NftListingsMinOrderBy = { accepted_at?: InputMaybe; accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; invalidated_at?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** Ordering options when selecting data from "nft_listings". */ export type NftListingsOrderBy = { accepted_at?: InputMaybe; accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; invalidated_at?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; metadata_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offers_aggregate?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** select columns of table "nft_listings" */ export declare enum NftListingsSelectColumn { /** column name */ AcceptedAt = "accepted_at", /** column name */ AcceptedOfferId = "accepted_offer_id", /** column name */ ApprovalId = "approval_id", /** column name */ CreatedAt = "created_at", /** column name */ Currency = "currency", /** column name */ InvalidatedAt = "invalidated_at", /** column name */ Kind = "kind", /** column name */ ListedBy = "listed_by", /** column name */ MarketId = "market_id", /** column name */ MetadataId = "metadata_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ Price = "price", /** column name */ ReceiptId = "receipt_id", /** column name */ TokenId = "token_id", /** column name */ UnlistedAt = "unlisted_at" } /** aggregate stddev on columns */ export type NftListingsStddevFields = { __typename?: 'nft_listings_stddev_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by stddev() on columns of table "nft_listings" */ export type NftListingsStddevOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type NftListingsStddevPopFields = { __typename?: 'nft_listings_stddev_pop_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by stddev_pop() on columns of table "nft_listings" */ export type NftListingsStddevPopOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type NftListingsStddevSampFields = { __typename?: 'nft_listings_stddev_samp_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by stddev_samp() on columns of table "nft_listings" */ export type NftListingsStddevSampOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** Streaming cursor of the table "nft_listings" */ export type NftListingsStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftListingsStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftListingsStreamCursorValueInput = { accepted_at?: InputMaybe; accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; created_at?: InputMaybe; currency?: InputMaybe; invalidated_at?: InputMaybe; kind?: InputMaybe; listed_by?: InputMaybe; market_id?: InputMaybe; metadata_id?: InputMaybe; nft_contract_id?: InputMaybe; price?: InputMaybe; receipt_id?: InputMaybe; token_id?: InputMaybe; unlisted_at?: InputMaybe; }; /** aggregate sum on columns */ export type NftListingsSumFields = { __typename?: 'nft_listings_sum_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by sum() on columns of table "nft_listings" */ export type NftListingsSumOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate var_pop on columns */ export type NftListingsVarPopFields = { __typename?: 'nft_listings_var_pop_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by var_pop() on columns of table "nft_listings" */ export type NftListingsVarPopOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate var_samp on columns */ export type NftListingsVarSampFields = { __typename?: 'nft_listings_var_samp_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by var_samp() on columns of table "nft_listings" */ export type NftListingsVarSampOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** aggregate variance on columns */ export type NftListingsVarianceFields = { __typename?: 'nft_listings_variance_fields'; accepted_offer_id?: Maybe; approval_id?: Maybe; price?: Maybe; }; /** order by variance() on columns of table "nft_listings" */ export type NftListingsVarianceOrderBy = { accepted_offer_id?: InputMaybe; approval_id?: InputMaybe; price?: InputMaybe; }; /** columns and relationships of "nft_metadata" */ export type NftMetadata = { __typename?: 'nft_metadata'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; extra?: Maybe; id: Scalars['String']; media?: Maybe; media_hash?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; reference?: Maybe; reference_blob?: Maybe; title?: Maybe; }; /** columns and relationships of "nft_metadata" */ export type NftMetadataReferenceBlobArgs = { path?: InputMaybe; }; /** aggregated selection of "nft_metadata" */ export type NftMetadataAggregate = { __typename?: 'nft_metadata_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "nft_metadata" */ export type NftMetadataAggregateFields = { __typename?: 'nft_metadata_aggregate_fields'; count: Scalars['Int']; max?: Maybe; min?: Maybe; }; /** aggregate fields of "nft_metadata" */ export type NftMetadataAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** Boolean expression to filter rows from the table "nft_metadata". All fields are combined with a logical 'AND'. */ export type NftMetadataBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** aggregate max on columns */ export type NftMetadataMaxFields = { __typename?: 'nft_metadata_max_fields'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; extra?: Maybe; id?: Maybe; media?: Maybe; media_hash?: Maybe; nft_contract_id?: Maybe; reference?: Maybe; title?: Maybe; }; /** aggregate min on columns */ export type NftMetadataMinFields = { __typename?: 'nft_metadata_min_fields'; base_uri?: Maybe; content_flag?: Maybe; description?: Maybe; extra?: Maybe; id?: Maybe; media?: Maybe; media_hash?: Maybe; nft_contract_id?: Maybe; reference?: Maybe; title?: Maybe; }; /** Ordering options when selecting data from "nft_metadata". */ export type NftMetadataOrderBy = { base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** select columns of table "nft_metadata" */ export declare enum NftMetadataSelectColumn { /** column name */ BaseUri = "base_uri", /** column name */ ContentFlag = "content_flag", /** column name */ Description = "description", /** column name */ Extra = "extra", /** column name */ Id = "id", /** column name */ Media = "media", /** column name */ MediaHash = "media_hash", /** column name */ NftContractId = "nft_contract_id", /** column name */ Reference = "reference", /** column name */ ReferenceBlob = "reference_blob", /** column name */ Title = "title" } /** Streaming cursor of the table "nft_metadata" */ export type NftMetadataStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftMetadataStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftMetadataStreamCursorValueInput = { base_uri?: InputMaybe; content_flag?: InputMaybe; description?: InputMaybe; extra?: InputMaybe; id?: InputMaybe; media?: InputMaybe; media_hash?: InputMaybe; nft_contract_id?: InputMaybe; reference?: InputMaybe; reference_blob?: InputMaybe; title?: InputMaybe; }; /** columns and relationships of "nft_offers" */ export type NftOffers = { __typename?: 'nft_offers'; accepted_at?: Maybe; affiliate_amount?: Maybe; affiliate_id?: Maybe; approval_id: Scalars['numeric']; currency: Scalars['String']; expires_at?: Maybe; invalidated_at?: Maybe; /** An object relationship */ listing?: Maybe; market_id: Scalars['String']; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; /** An object relationship */ nft_token?: Maybe; offer_id: Scalars['bigint']; offer_price: Scalars['numeric']; offered_at: Scalars['timestamp']; offered_by: Scalars['String']; outbid_at?: Maybe; receipt_id: Scalars['String']; referral_amount?: Maybe; referrer_id?: Maybe; /** An object relationship */ token?: Maybe; token_id: Scalars['String']; withdrawn_at?: Maybe; }; /** aggregated selection of "nft_offers" */ export type NftOffersAggregate = { __typename?: 'nft_offers_aggregate'; aggregate?: Maybe; nodes: Array; }; export type NftOffersAggregateBoolExp = { count?: InputMaybe; }; export type NftOffersAggregateBoolExpCount = { arguments?: InputMaybe>; distinct?: InputMaybe; filter?: InputMaybe; predicate: IntComparisonExp; }; /** aggregate fields of "nft_offers" */ export type NftOffersAggregateFields = { __typename?: 'nft_offers_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "nft_offers" */ export type NftOffersAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** order by aggregate values of table "nft_offers" */ export type NftOffersAggregateOrderBy = { avg?: InputMaybe; count?: InputMaybe; max?: InputMaybe; min?: InputMaybe; stddev?: InputMaybe; stddev_pop?: InputMaybe; stddev_samp?: InputMaybe; sum?: InputMaybe; var_pop?: InputMaybe; var_samp?: InputMaybe; variance?: InputMaybe; }; /** aggregate avg on columns */ export type NftOffersAvgFields = { __typename?: 'nft_offers_avg_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by avg() on columns of table "nft_offers" */ export type NftOffersAvgOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** Boolean expression to filter rows from the table "nft_offers". All fields are combined with a logical 'AND'. */ export type NftOffersBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; accepted_at?: InputMaybe; affiliate_amount?: InputMaybe; affiliate_id?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; expires_at?: InputMaybe; invalidated_at?: InputMaybe; listing?: InputMaybe; market_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; outbid_at?: InputMaybe; receipt_id?: InputMaybe; referral_amount?: InputMaybe; referrer_id?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; withdrawn_at?: InputMaybe; }; /** aggregate max on columns */ export type NftOffersMaxFields = { __typename?: 'nft_offers_max_fields'; accepted_at?: Maybe; affiliate_amount?: Maybe; affiliate_id?: Maybe; approval_id?: Maybe; currency?: Maybe; expires_at?: Maybe; invalidated_at?: Maybe; market_id?: Maybe; nft_contract_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; offered_at?: Maybe; offered_by?: Maybe; outbid_at?: Maybe; receipt_id?: Maybe; referral_amount?: Maybe; referrer_id?: Maybe; token_id?: Maybe; withdrawn_at?: Maybe; }; /** order by max() on columns of table "nft_offers" */ export type NftOffersMaxOrderBy = { accepted_at?: InputMaybe; affiliate_amount?: InputMaybe; affiliate_id?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; expires_at?: InputMaybe; invalidated_at?: InputMaybe; market_id?: InputMaybe; nft_contract_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; outbid_at?: InputMaybe; receipt_id?: InputMaybe; referral_amount?: InputMaybe; referrer_id?: InputMaybe; token_id?: InputMaybe; withdrawn_at?: InputMaybe; }; /** aggregate min on columns */ export type NftOffersMinFields = { __typename?: 'nft_offers_min_fields'; accepted_at?: Maybe; affiliate_amount?: Maybe; affiliate_id?: Maybe; approval_id?: Maybe; currency?: Maybe; expires_at?: Maybe; invalidated_at?: Maybe; market_id?: Maybe; nft_contract_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; offered_at?: Maybe; offered_by?: Maybe; outbid_at?: Maybe; receipt_id?: Maybe; referral_amount?: Maybe; referrer_id?: Maybe; token_id?: Maybe; withdrawn_at?: Maybe; }; /** order by min() on columns of table "nft_offers" */ export type NftOffersMinOrderBy = { accepted_at?: InputMaybe; affiliate_amount?: InputMaybe; affiliate_id?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; expires_at?: InputMaybe; invalidated_at?: InputMaybe; market_id?: InputMaybe; nft_contract_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; outbid_at?: InputMaybe; receipt_id?: InputMaybe; referral_amount?: InputMaybe; referrer_id?: InputMaybe; token_id?: InputMaybe; withdrawn_at?: InputMaybe; }; /** Ordering options when selecting data from "nft_offers". */ export type NftOffersOrderBy = { accepted_at?: InputMaybe; affiliate_amount?: InputMaybe; affiliate_id?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; expires_at?: InputMaybe; invalidated_at?: InputMaybe; listing?: InputMaybe; market_id?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_token?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; outbid_at?: InputMaybe; receipt_id?: InputMaybe; referral_amount?: InputMaybe; referrer_id?: InputMaybe; token?: InputMaybe; token_id?: InputMaybe; withdrawn_at?: InputMaybe; }; /** select columns of table "nft_offers" */ export declare enum NftOffersSelectColumn { /** column name */ AcceptedAt = "accepted_at", /** column name */ AffiliateAmount = "affiliate_amount", /** column name */ AffiliateId = "affiliate_id", /** column name */ ApprovalId = "approval_id", /** column name */ Currency = "currency", /** column name */ ExpiresAt = "expires_at", /** column name */ InvalidatedAt = "invalidated_at", /** column name */ MarketId = "market_id", /** column name */ NftContractId = "nft_contract_id", /** column name */ OfferId = "offer_id", /** column name */ OfferPrice = "offer_price", /** column name */ OfferedAt = "offered_at", /** column name */ OfferedBy = "offered_by", /** column name */ OutbidAt = "outbid_at", /** column name */ ReceiptId = "receipt_id", /** column name */ ReferralAmount = "referral_amount", /** column name */ ReferrerId = "referrer_id", /** column name */ TokenId = "token_id", /** column name */ WithdrawnAt = "withdrawn_at" } /** aggregate stddev on columns */ export type NftOffersStddevFields = { __typename?: 'nft_offers_stddev_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by stddev() on columns of table "nft_offers" */ export type NftOffersStddevOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** aggregate stddev_pop on columns */ export type NftOffersStddevPopFields = { __typename?: 'nft_offers_stddev_pop_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by stddev_pop() on columns of table "nft_offers" */ export type NftOffersStddevPopOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** aggregate stddev_samp on columns */ export type NftOffersStddevSampFields = { __typename?: 'nft_offers_stddev_samp_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by stddev_samp() on columns of table "nft_offers" */ export type NftOffersStddevSampOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** Streaming cursor of the table "nft_offers" */ export type NftOffersStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftOffersStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftOffersStreamCursorValueInput = { accepted_at?: InputMaybe; affiliate_amount?: InputMaybe; affiliate_id?: InputMaybe; approval_id?: InputMaybe; currency?: InputMaybe; expires_at?: InputMaybe; invalidated_at?: InputMaybe; market_id?: InputMaybe; nft_contract_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; offered_at?: InputMaybe; offered_by?: InputMaybe; outbid_at?: InputMaybe; receipt_id?: InputMaybe; referral_amount?: InputMaybe; referrer_id?: InputMaybe; token_id?: InputMaybe; withdrawn_at?: InputMaybe; }; /** aggregate sum on columns */ export type NftOffersSumFields = { __typename?: 'nft_offers_sum_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by sum() on columns of table "nft_offers" */ export type NftOffersSumOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** aggregate var_pop on columns */ export type NftOffersVarPopFields = { __typename?: 'nft_offers_var_pop_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by var_pop() on columns of table "nft_offers" */ export type NftOffersVarPopOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** aggregate var_samp on columns */ export type NftOffersVarSampFields = { __typename?: 'nft_offers_var_samp_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by var_samp() on columns of table "nft_offers" */ export type NftOffersVarSampOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** aggregate variance on columns */ export type NftOffersVarianceFields = { __typename?: 'nft_offers_variance_fields'; affiliate_amount?: Maybe; approval_id?: Maybe; offer_id?: Maybe; offer_price?: Maybe; referral_amount?: Maybe; }; /** order by variance() on columns of table "nft_offers" */ export type NftOffersVarianceOrderBy = { affiliate_amount?: InputMaybe; approval_id?: InputMaybe; offer_id?: InputMaybe; offer_price?: InputMaybe; referral_amount?: InputMaybe; }; /** columns and relationships of "nft_tokens" */ export type NftTokens = { __typename?: 'nft_tokens'; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; expires_at?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; /** An object relationship */ nft_contract?: Maybe; nft_contract_id: Scalars['String']; /** An object relationship */ nft_contracts?: Maybe; /** An array relationship */ nft_listings: Array; /** An aggregate relationship */ nft_listings_aggregate: NftListingsAggregate; owner: Scalars['String']; reference?: Maybe; reference_hash?: Maybe; royalties?: Maybe; royalties_percent?: Maybe; splits?: Maybe; starts_at?: Maybe; token_id: Scalars['String']; updated_at?: Maybe; }; /** columns and relationships of "nft_tokens" */ export type NftTokensNftListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "nft_tokens" */ export type NftTokensNftListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; /** columns and relationships of "nft_tokens" */ export type NftTokensRoyaltiesArgs = { path?: InputMaybe; }; /** columns and relationships of "nft_tokens" */ export type NftTokensSplitsArgs = { path?: InputMaybe; }; /** aggregated selection of "nft_tokens" */ export type NftTokensAggregate = { __typename?: 'nft_tokens_aggregate'; aggregate?: Maybe; nodes: Array; }; /** aggregate fields of "nft_tokens" */ export type NftTokensAggregateFields = { __typename?: 'nft_tokens_aggregate_fields'; avg?: Maybe; count: Scalars['Int']; max?: Maybe; min?: Maybe; stddev?: Maybe; stddev_pop?: Maybe; stddev_samp?: Maybe; sum?: Maybe; var_pop?: Maybe; var_samp?: Maybe; variance?: Maybe; }; /** aggregate fields of "nft_tokens" */ export type NftTokensAggregateFieldsCountArgs = { columns?: InputMaybe>; distinct?: InputMaybe; }; /** aggregate avg on columns */ export type NftTokensAvgFields = { __typename?: 'nft_tokens_avg_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Boolean expression to filter rows from the table "nft_tokens". All fields are combined with a logical 'AND'. */ export type NftTokensBoolExp = { _and?: InputMaybe>; _not?: InputMaybe; _or?: InputMaybe>; burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; expires_at?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_listings?: InputMaybe; nft_listings_aggregate?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate max on columns */ export type NftTokensMaxFields = { __typename?: 'nft_tokens_max_fields'; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; expires_at?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** aggregate min on columns */ export type NftTokensMinFields = { __typename?: 'nft_tokens_min_fields'; burned_receipt_id?: Maybe; burned_timestamp?: Maybe; copies?: Maybe; expires_at?: Maybe; issued_at?: Maybe; last_transfer_receipt_id?: Maybe; last_transfer_timestamp?: Maybe; metadata_id?: Maybe; mint_memo?: Maybe; minted_receipt_id?: Maybe; minted_timestamp?: Maybe; minter?: Maybe; nft_contract_id?: Maybe; owner?: Maybe; reference?: Maybe; reference_hash?: Maybe; royalties_percent?: Maybe; starts_at?: Maybe; token_id?: Maybe; updated_at?: Maybe; }; /** Ordering options when selecting data from "nft_tokens". */ export type NftTokensOrderBy = { burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; expires_at?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract?: InputMaybe; nft_contract_id?: InputMaybe; nft_contracts?: InputMaybe; nft_listings_aggregate?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** select columns of table "nft_tokens" */ export declare enum NftTokensSelectColumn { /** column name */ BurnedReceiptId = "burned_receipt_id", /** column name */ BurnedTimestamp = "burned_timestamp", /** column name */ Copies = "copies", /** column name */ ExpiresAt = "expires_at", /** column name */ IssuedAt = "issued_at", /** column name */ LastTransferReceiptId = "last_transfer_receipt_id", /** column name */ LastTransferTimestamp = "last_transfer_timestamp", /** column name */ MetadataId = "metadata_id", /** column name */ MintMemo = "mint_memo", /** column name */ MintedReceiptId = "minted_receipt_id", /** column name */ MintedTimestamp = "minted_timestamp", /** column name */ Minter = "minter", /** column name */ NftContractId = "nft_contract_id", /** column name */ Owner = "owner", /** column name */ Reference = "reference", /** column name */ ReferenceHash = "reference_hash", /** column name */ Royalties = "royalties", /** column name */ RoyaltiesPercent = "royalties_percent", /** column name */ Splits = "splits", /** column name */ StartsAt = "starts_at", /** column name */ TokenId = "token_id", /** column name */ UpdatedAt = "updated_at" } /** aggregate stddev on columns */ export type NftTokensStddevFields = { __typename?: 'nft_tokens_stddev_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_pop on columns */ export type NftTokensStddevPopFields = { __typename?: 'nft_tokens_stddev_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate stddev_samp on columns */ export type NftTokensStddevSampFields = { __typename?: 'nft_tokens_stddev_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Streaming cursor of the table "nft_tokens" */ export type NftTokensStreamCursorInput = { /** Stream column input with initial value */ initial_value: NftTokensStreamCursorValueInput; /** cursor ordering */ ordering?: InputMaybe; }; /** Initial value of the column from where the streaming should start */ export type NftTokensStreamCursorValueInput = { burned_receipt_id?: InputMaybe; burned_timestamp?: InputMaybe; copies?: InputMaybe; expires_at?: InputMaybe; issued_at?: InputMaybe; last_transfer_receipt_id?: InputMaybe; last_transfer_timestamp?: InputMaybe; metadata_id?: InputMaybe; mint_memo?: InputMaybe; minted_receipt_id?: InputMaybe; minted_timestamp?: InputMaybe; minter?: InputMaybe; nft_contract_id?: InputMaybe; owner?: InputMaybe; reference?: InputMaybe; reference_hash?: InputMaybe; royalties?: InputMaybe; royalties_percent?: InputMaybe; splits?: InputMaybe; starts_at?: InputMaybe; token_id?: InputMaybe; updated_at?: InputMaybe; }; /** aggregate sum on columns */ export type NftTokensSumFields = { __typename?: 'nft_tokens_sum_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_pop on columns */ export type NftTokensVarPopFields = { __typename?: 'nft_tokens_var_pop_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate var_samp on columns */ export type NftTokensVarSampFields = { __typename?: 'nft_tokens_var_samp_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** aggregate variance on columns */ export type NftTokensVarianceFields = { __typename?: 'nft_tokens_variance_fields'; copies?: Maybe; royalties_percent?: Maybe; }; /** Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. */ export type NumericComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; /** column ordering options */ export declare enum OrderBy { /** in ascending order, nulls last */ Asc = "asc", /** in ascending order, nulls first */ AscNullsFirst = "asc_nulls_first", /** in ascending order, nulls last */ AscNullsLast = "asc_nulls_last", /** in descending order, nulls first */ Desc = "desc", /** in descending order, nulls first */ DescNullsFirst = "desc_nulls_first", /** in descending order, nulls last */ DescNullsLast = "desc_nulls_last" } export type QueryRoot = { __typename?: 'query_root'; /** fetch data from the table: "analytics_tmp.affiliate_earnings_monthly" */ analytics_tmp_affiliate_earnings_monthly: Array; /** fetch aggregated fields from the table: "analytics_tmp.affiliate_earnings_monthly" */ analytics_tmp_affiliate_earnings_monthly_aggregate: AnalyticsTmpAffiliateEarningsMonthlyAggregate; /** fetch data from the table: "analytics_tmp.affiliate_earnings_yearly" */ analytics_tmp_affiliate_earnings_yearly: Array; /** fetch aggregated fields from the table: "analytics_tmp.affiliate_earnings_yearly" */ analytics_tmp_affiliate_earnings_yearly_aggregate: AnalyticsTmpAffiliateEarningsYearlyAggregate; /** fetch data from the table: "blocks" */ blocks: Array; /** fetch aggregated fields from the table: "blocks" */ blocks_aggregate: BlocksAggregate; /** fetch data from the table: "blocks" using primary key columns */ blocks_by_pk?: Maybe; /** fetch data from the table: "mb_store_minters" */ mb_store_minters: Array; /** fetch aggregated fields from the table: "mb_store_minters" */ mb_store_minters_aggregate: MbStoreMintersAggregate; /** fetch data from the table: "mb_store_minters" using primary key columns */ mb_store_minters_by_pk?: Maybe; /** fetch data from the table: "mb_views.active_listings" */ mb_views_active_listings: Array; /** fetch aggregated fields from the table: "mb_views.active_listings" */ mb_views_active_listings_aggregate: MbViewsActiveListingsAggregate; /** fetch data from the table: "mb_views.active_listings_by_contract" */ mb_views_active_listings_by_contract: Array; /** fetch aggregated fields from the table: "mb_views.active_listings_by_contract" */ mb_views_active_listings_by_contract_aggregate: MbViewsActiveListingsByContractAggregate; /** fetch data from the table: "mb_views.active_listings_rollup" */ mb_views_active_listings_rollup: Array; /** fetch aggregated fields from the table: "mb_views.active_listings_rollup" */ mb_views_active_listings_rollup_aggregate: MbViewsActiveListingsRollupAggregate; /** fetch data from the table: "mb_views.auctions_with_offer" */ mb_views_auctions_with_offer: Array; /** fetch aggregated fields from the table: "mb_views.auctions_with_offer" */ mb_views_auctions_with_offer_aggregate: MbViewsAuctionsWithOfferAggregate; /** fetch data from the table: "mb_views.nft_activities" */ mb_views_nft_activities: Array; /** fetch aggregated fields from the table: "mb_views.nft_activities" */ mb_views_nft_activities_aggregate: MbViewsNftActivitiesAggregate; /** fetch data from the table: "mb_views.nft_activities_rollup" */ mb_views_nft_activities_rollup: Array; /** fetch aggregated fields from the table: "mb_views.nft_activities_rollup" */ mb_views_nft_activities_rollup_aggregate: MbViewsNftActivitiesRollupAggregate; /** fetch data from the table: "mb_views.nft_metadata" */ mb_views_nft_metadata: Array; /** fetch aggregated fields from the table: "mb_views.nft_metadata" */ mb_views_nft_metadata_aggregate: MbViewsNftMetadataAggregate; /** fetch data from the table: "mb_views.nft_metadata_unburned" */ mb_views_nft_metadata_unburned: Array; /** fetch aggregated fields from the table: "mb_views.nft_metadata_unburned" */ mb_views_nft_metadata_unburned_aggregate: MbViewsNftMetadataUnburnedAggregate; /** fetch data from the table: "mb_views.nft_owned_tokens" */ mb_views_nft_owned_tokens: Array; /** fetch aggregated fields from the table: "mb_views.nft_owned_tokens" */ mb_views_nft_owned_tokens_aggregate: MbViewsNftOwnedTokensAggregate; /** fetch data from the table: "mb_views.nft_tokens" */ mb_views_nft_tokens: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens" */ mb_views_nft_tokens_aggregate: MbViewsNftTokensAggregate; /** fetch data from the table: "mb_views.nft_tokens_with_listing" */ mb_views_nft_tokens_with_listing: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens_with_listing" */ mb_views_nft_tokens_with_listing_aggregate: MbViewsNftTokensWithListingAggregate; /** fetch data from the table: "mb_views.nft_tokens_with_media_type" */ mb_views_nft_tokens_with_media_type: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens_with_media_type" */ mb_views_nft_tokens_with_media_type_aggregate: MbViewsNftTokensWithMediaTypeAggregate; /** fetch data from the table: "mb_views.top_stores" */ mb_views_top_stores: Array; /** fetch aggregated fields from the table: "mb_views.top_stores" */ mb_views_top_stores_aggregate: MbViewsTopStoresAggregate; /** fetch data from the table: "nft_activities" */ nft_activities: Array; /** fetch aggregated fields from the table: "nft_activities" */ nft_activities_aggregate: NftActivitiesAggregate; /** fetch data from the table: "nft_activities" using primary key columns */ nft_activities_by_pk?: Maybe; /** fetch data from the table: "nft_attributes" */ nft_attributes: Array; /** fetch aggregated fields from the table: "nft_attributes" */ nft_attributes_aggregate: NftAttributesAggregate; /** fetch data from the table: "nft_attributes" using primary key columns */ nft_attributes_by_pk?: Maybe; /** fetch data from the table: "nft_contracts" */ nft_contracts: Array; /** fetch aggregated fields from the table: "nft_contracts" */ nft_contracts_aggregate: NftContractsAggregate; /** fetch data from the table: "nft_contracts" using primary key columns */ nft_contracts_by_pk?: Maybe; /** fetch data from the table: "nft_earnings" */ nft_earnings: Array; /** fetch aggregated fields from the table: "nft_earnings" */ nft_earnings_aggregate: NftEarningsAggregate; /** fetch data from the table: "nft_earnings" using primary key columns */ nft_earnings_by_pk?: Maybe; /** An array relationship */ nft_listings: Array; /** An aggregate relationship */ nft_listings_aggregate: NftListingsAggregate; /** fetch data from the table: "nft_listings" using primary key columns */ nft_listings_by_pk?: Maybe; /** fetch data from the table: "nft_metadata" */ nft_metadata: Array; /** fetch aggregated fields from the table: "nft_metadata" */ nft_metadata_aggregate: NftMetadataAggregate; /** fetch data from the table: "nft_metadata" using primary key columns */ nft_metadata_by_pk?: Maybe; /** fetch data from the table: "nft_offers" */ nft_offers: Array; /** fetch aggregated fields from the table: "nft_offers" */ nft_offers_aggregate: NftOffersAggregate; /** fetch data from the table: "nft_offers" using primary key columns */ nft_offers_by_pk?: Maybe; /** fetch data from the table: "nft_tokens" */ nft_tokens: Array; /** fetch aggregated fields from the table: "nft_tokens" */ nft_tokens_aggregate: NftTokensAggregate; /** fetch data from the table: "nft_tokens" using primary key columns */ nft_tokens_by_pk?: Maybe; }; export type QueryRootAnalyticsTmpAffiliateEarningsMonthlyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootAnalyticsTmpAffiliateEarningsMonthlyAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootAnalyticsTmpAffiliateEarningsYearlyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootAnalyticsTmpAffiliateEarningsYearlyAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootBlocksArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootBlocksAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootBlocksByPkArgs = { synced_height: Scalars['bigint']; }; export type QueryRootMbStoreMintersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbStoreMintersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbStoreMintersByPkArgs = { minter_id: Scalars['String']; nft_contract_id: Scalars['String']; }; export type QueryRootMbViewsActiveListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsActiveListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsActiveListingsByContractArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsActiveListingsByContractAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsActiveListingsRollupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsActiveListingsRollupAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsAuctionsWithOfferArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsAuctionsWithOfferAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftActivitiesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftActivitiesRollupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftActivitiesRollupAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftMetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftMetadataAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftMetadataUnburnedArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftMetadataUnburnedAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftOwnedTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftOwnedTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensWithListingArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensWithListingAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensWithMediaTypeArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsNftTokensWithMediaTypeAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsTopStoresArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootMbViewsTopStoresAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftActivitiesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftActivitiesByPkArgs = { kind: Scalars['String']; nft_contract_id: Scalars['String']; receipt_id: Scalars['String']; token_id: Scalars['String']; }; export type QueryRootNftAttributesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftAttributesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftAttributesByPkArgs = { attribute_type: Scalars['String']; nft_contract_id: Scalars['String']; nft_metadata_id: Scalars['String']; }; export type QueryRootNftContractsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftContractsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftContractsByPkArgs = { id: Scalars['String']; }; export type QueryRootNftEarningsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftEarningsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftEarningsByPkArgs = { approval_id: Scalars['numeric']; is_mintbase_cut: Scalars['Boolean']; is_referral: Scalars['Boolean']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; receiver_id: Scalars['String']; token_id: Scalars['String']; }; export type QueryRootNftListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftListingsByPkArgs = { approval_id: Scalars['numeric']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; token_id: Scalars['String']; }; export type QueryRootNftMetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftMetadataAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftMetadataByPkArgs = { id: Scalars['String']; }; export type QueryRootNftOffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftOffersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftOffersByPkArgs = { approval_id: Scalars['numeric']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; offer_id: Scalars['bigint']; token_id: Scalars['String']; }; export type QueryRootNftTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type QueryRootNftTokensByPkArgs = { nft_contract_id: Scalars['String']; token_id: Scalars['String']; }; export type SubscriptionRoot = { __typename?: 'subscription_root'; /** fetch data from the table: "analytics_tmp.affiliate_earnings_monthly" */ analytics_tmp_affiliate_earnings_monthly: Array; /** fetch aggregated fields from the table: "analytics_tmp.affiliate_earnings_monthly" */ analytics_tmp_affiliate_earnings_monthly_aggregate: AnalyticsTmpAffiliateEarningsMonthlyAggregate; /** fetch data from the table in a streaming manner: "analytics_tmp.affiliate_earnings_monthly" */ analytics_tmp_affiliate_earnings_monthly_stream: Array; /** fetch data from the table: "analytics_tmp.affiliate_earnings_yearly" */ analytics_tmp_affiliate_earnings_yearly: Array; /** fetch aggregated fields from the table: "analytics_tmp.affiliate_earnings_yearly" */ analytics_tmp_affiliate_earnings_yearly_aggregate: AnalyticsTmpAffiliateEarningsYearlyAggregate; /** fetch data from the table in a streaming manner: "analytics_tmp.affiliate_earnings_yearly" */ analytics_tmp_affiliate_earnings_yearly_stream: Array; /** fetch data from the table: "blocks" */ blocks: Array; /** fetch aggregated fields from the table: "blocks" */ blocks_aggregate: BlocksAggregate; /** fetch data from the table: "blocks" using primary key columns */ blocks_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "blocks" */ blocks_stream: Array; /** fetch data from the table: "mb_store_minters" */ mb_store_minters: Array; /** fetch aggregated fields from the table: "mb_store_minters" */ mb_store_minters_aggregate: MbStoreMintersAggregate; /** fetch data from the table: "mb_store_minters" using primary key columns */ mb_store_minters_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "mb_store_minters" */ mb_store_minters_stream: Array; /** fetch data from the table: "mb_views.active_listings" */ mb_views_active_listings: Array; /** fetch aggregated fields from the table: "mb_views.active_listings" */ mb_views_active_listings_aggregate: MbViewsActiveListingsAggregate; /** fetch data from the table: "mb_views.active_listings_by_contract" */ mb_views_active_listings_by_contract: Array; /** fetch aggregated fields from the table: "mb_views.active_listings_by_contract" */ mb_views_active_listings_by_contract_aggregate: MbViewsActiveListingsByContractAggregate; /** fetch data from the table in a streaming manner: "mb_views.active_listings_by_contract" */ mb_views_active_listings_by_contract_stream: Array; /** fetch data from the table: "mb_views.active_listings_rollup" */ mb_views_active_listings_rollup: Array; /** fetch aggregated fields from the table: "mb_views.active_listings_rollup" */ mb_views_active_listings_rollup_aggregate: MbViewsActiveListingsRollupAggregate; /** fetch data from the table in a streaming manner: "mb_views.active_listings_rollup" */ mb_views_active_listings_rollup_stream: Array; /** fetch data from the table in a streaming manner: "mb_views.active_listings" */ mb_views_active_listings_stream: Array; /** fetch data from the table: "mb_views.auctions_with_offer" */ mb_views_auctions_with_offer: Array; /** fetch aggregated fields from the table: "mb_views.auctions_with_offer" */ mb_views_auctions_with_offer_aggregate: MbViewsAuctionsWithOfferAggregate; /** fetch data from the table in a streaming manner: "mb_views.auctions_with_offer" */ mb_views_auctions_with_offer_stream: Array; /** fetch data from the table: "mb_views.nft_activities" */ mb_views_nft_activities: Array; /** fetch aggregated fields from the table: "mb_views.nft_activities" */ mb_views_nft_activities_aggregate: MbViewsNftActivitiesAggregate; /** fetch data from the table: "mb_views.nft_activities_rollup" */ mb_views_nft_activities_rollup: Array; /** fetch aggregated fields from the table: "mb_views.nft_activities_rollup" */ mb_views_nft_activities_rollup_aggregate: MbViewsNftActivitiesRollupAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_activities_rollup" */ mb_views_nft_activities_rollup_stream: Array; /** fetch data from the table in a streaming manner: "mb_views.nft_activities" */ mb_views_nft_activities_stream: Array; /** fetch data from the table: "mb_views.nft_metadata" */ mb_views_nft_metadata: Array; /** fetch aggregated fields from the table: "mb_views.nft_metadata" */ mb_views_nft_metadata_aggregate: MbViewsNftMetadataAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_metadata" */ mb_views_nft_metadata_stream: Array; /** fetch data from the table: "mb_views.nft_metadata_unburned" */ mb_views_nft_metadata_unburned: Array; /** fetch aggregated fields from the table: "mb_views.nft_metadata_unburned" */ mb_views_nft_metadata_unburned_aggregate: MbViewsNftMetadataUnburnedAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_metadata_unburned" */ mb_views_nft_metadata_unburned_stream: Array; /** fetch data from the table: "mb_views.nft_owned_tokens" */ mb_views_nft_owned_tokens: Array; /** fetch aggregated fields from the table: "mb_views.nft_owned_tokens" */ mb_views_nft_owned_tokens_aggregate: MbViewsNftOwnedTokensAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_owned_tokens" */ mb_views_nft_owned_tokens_stream: Array; /** fetch data from the table: "mb_views.nft_tokens" */ mb_views_nft_tokens: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens" */ mb_views_nft_tokens_aggregate: MbViewsNftTokensAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_tokens" */ mb_views_nft_tokens_stream: Array; /** fetch data from the table: "mb_views.nft_tokens_with_listing" */ mb_views_nft_tokens_with_listing: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens_with_listing" */ mb_views_nft_tokens_with_listing_aggregate: MbViewsNftTokensWithListingAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_tokens_with_listing" */ mb_views_nft_tokens_with_listing_stream: Array; /** fetch data from the table: "mb_views.nft_tokens_with_media_type" */ mb_views_nft_tokens_with_media_type: Array; /** fetch aggregated fields from the table: "mb_views.nft_tokens_with_media_type" */ mb_views_nft_tokens_with_media_type_aggregate: MbViewsNftTokensWithMediaTypeAggregate; /** fetch data from the table in a streaming manner: "mb_views.nft_tokens_with_media_type" */ mb_views_nft_tokens_with_media_type_stream: Array; /** fetch data from the table: "mb_views.top_stores" */ mb_views_top_stores: Array; /** fetch aggregated fields from the table: "mb_views.top_stores" */ mb_views_top_stores_aggregate: MbViewsTopStoresAggregate; /** fetch data from the table in a streaming manner: "mb_views.top_stores" */ mb_views_top_stores_stream: Array; /** fetch data from the table: "nft_activities" */ nft_activities: Array; /** fetch aggregated fields from the table: "nft_activities" */ nft_activities_aggregate: NftActivitiesAggregate; /** fetch data from the table: "nft_activities" using primary key columns */ nft_activities_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_activities" */ nft_activities_stream: Array; /** fetch data from the table: "nft_attributes" */ nft_attributes: Array; /** fetch aggregated fields from the table: "nft_attributes" */ nft_attributes_aggregate: NftAttributesAggregate; /** fetch data from the table: "nft_attributes" using primary key columns */ nft_attributes_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_attributes" */ nft_attributes_stream: Array; /** fetch data from the table: "nft_contracts" */ nft_contracts: Array; /** fetch aggregated fields from the table: "nft_contracts" */ nft_contracts_aggregate: NftContractsAggregate; /** fetch data from the table: "nft_contracts" using primary key columns */ nft_contracts_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_contracts" */ nft_contracts_stream: Array; /** fetch data from the table: "nft_earnings" */ nft_earnings: Array; /** fetch aggregated fields from the table: "nft_earnings" */ nft_earnings_aggregate: NftEarningsAggregate; /** fetch data from the table: "nft_earnings" using primary key columns */ nft_earnings_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_earnings" */ nft_earnings_stream: Array; /** An array relationship */ nft_listings: Array; /** An aggregate relationship */ nft_listings_aggregate: NftListingsAggregate; /** fetch data from the table: "nft_listings" using primary key columns */ nft_listings_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_listings" */ nft_listings_stream: Array; /** fetch data from the table: "nft_metadata" */ nft_metadata: Array; /** fetch aggregated fields from the table: "nft_metadata" */ nft_metadata_aggregate: NftMetadataAggregate; /** fetch data from the table: "nft_metadata" using primary key columns */ nft_metadata_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_metadata" */ nft_metadata_stream: Array; /** fetch data from the table: "nft_offers" */ nft_offers: Array; /** fetch aggregated fields from the table: "nft_offers" */ nft_offers_aggregate: NftOffersAggregate; /** fetch data from the table: "nft_offers" using primary key columns */ nft_offers_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_offers" */ nft_offers_stream: Array; /** fetch data from the table: "nft_tokens" */ nft_tokens: Array; /** fetch aggregated fields from the table: "nft_tokens" */ nft_tokens_aggregate: NftTokensAggregate; /** fetch data from the table: "nft_tokens" using primary key columns */ nft_tokens_by_pk?: Maybe; /** fetch data from the table in a streaming manner: "nft_tokens" */ nft_tokens_stream: Array; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsMonthlyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsMonthlyAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsMonthlyStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsYearlyArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsYearlyAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootAnalyticsTmpAffiliateEarningsYearlyStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootBlocksArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootBlocksAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootBlocksByPkArgs = { synced_height: Scalars['bigint']; }; export type SubscriptionRootBlocksStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbStoreMintersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbStoreMintersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbStoreMintersByPkArgs = { minter_id: Scalars['String']; nft_contract_id: Scalars['String']; }; export type SubscriptionRootMbStoreMintersStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsByContractArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsByContractAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsByContractStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsRollupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsRollupAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsRollupStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsActiveListingsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsAuctionsWithOfferArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsAuctionsWithOfferAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsAuctionsWithOfferStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesRollupArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesRollupAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesRollupStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftActivitiesStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataUnburnedArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataUnburnedAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftMetadataUnburnedStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftOwnedTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftOwnedTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftOwnedTokensStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithListingArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithListingAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithListingStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithMediaTypeArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithMediaTypeAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsNftTokensWithMediaTypeStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootMbViewsTopStoresArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsTopStoresAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootMbViewsTopStoresStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftActivitiesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftActivitiesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftActivitiesByPkArgs = { kind: Scalars['String']; nft_contract_id: Scalars['String']; receipt_id: Scalars['String']; token_id: Scalars['String']; }; export type SubscriptionRootNftActivitiesStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftAttributesArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftAttributesAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftAttributesByPkArgs = { attribute_type: Scalars['String']; nft_contract_id: Scalars['String']; nft_metadata_id: Scalars['String']; }; export type SubscriptionRootNftAttributesStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftContractsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftContractsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftContractsByPkArgs = { id: Scalars['String']; }; export type SubscriptionRootNftContractsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftEarningsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftEarningsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftEarningsByPkArgs = { approval_id: Scalars['numeric']; is_mintbase_cut: Scalars['Boolean']; is_referral: Scalars['Boolean']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; receiver_id: Scalars['String']; token_id: Scalars['String']; }; export type SubscriptionRootNftEarningsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftListingsArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftListingsAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftListingsByPkArgs = { approval_id: Scalars['numeric']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; token_id: Scalars['String']; }; export type SubscriptionRootNftListingsStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftMetadataArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftMetadataAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftMetadataByPkArgs = { id: Scalars['String']; }; export type SubscriptionRootNftMetadataStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftOffersArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftOffersAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftOffersByPkArgs = { approval_id: Scalars['numeric']; market_id: Scalars['String']; nft_contract_id: Scalars['String']; offer_id: Scalars['bigint']; token_id: Scalars['String']; }; export type SubscriptionRootNftOffersStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; export type SubscriptionRootNftTokensArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftTokensAggregateArgs = { distinct_on?: InputMaybe>; limit?: InputMaybe; offset?: InputMaybe; order_by?: InputMaybe>; where?: InputMaybe; }; export type SubscriptionRootNftTokensByPkArgs = { nft_contract_id: Scalars['String']; token_id: Scalars['String']; }; export type SubscriptionRootNftTokensStreamArgs = { batch_size: Scalars['Int']; cursor: Array>; where?: InputMaybe; }; /** Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'. */ export type TimestampComparisonExp = { _eq?: InputMaybe; _gt?: InputMaybe; _gte?: InputMaybe; _in?: InputMaybe>; _is_null?: InputMaybe; _lt?: InputMaybe; _lte?: InputMaybe; _neq?: InputMaybe; _nin?: InputMaybe>; }; //# sourceMappingURL=graphql.d.ts.map