diff --git a/hasura/api/schema.graphql b/hasura/api/schema.graphql index 46dcdf51c..6638eb76f 100644 --- a/hasura/api/schema.graphql +++ b/hasura/api/schema.graphql @@ -85,6 +85,26 @@ input Int_comparison_exp { _nin: [Int!] } +""" +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. +""" +input String_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [String!] + + """does the array contain the given value""" + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _is_null: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} + """ Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. """ @@ -138,57 +158,8 @@ input String_comparison_exp { _similar: String } -scalar _coin - -""" -Boolean expression to compare columns of type "_coin". All fields are combined with logical 'AND'. -""" -input _coin_comparison_exp { - _eq: _coin - _gt: _coin - _gte: _coin - _in: [_coin!] - _is_null: Boolean - _lt: _coin - _lte: _coin - _neq: _coin - _nin: [_coin!] -} - -scalar _dec_coin - -""" -Boolean expression to compare columns of type "_dec_coin". All fields are combined with logical 'AND'. -""" -input _dec_coin_comparison_exp { - _eq: _dec_coin - _gt: _dec_coin - _gte: _dec_coin - _in: [_dec_coin!] - _is_null: Boolean - _lt: _dec_coin - _lte: _dec_coin - _neq: _dec_coin - _nin: [_dec_coin!] -} - scalar _text -""" -Boolean expression to compare columns of type "_text". All fields are combined with logical 'AND'. -""" -input _text_comparison_exp { - _eq: _text - _gt: _text - _gte: _text - _in: [_text!] - _is_null: Boolean - _lt: _text - _lte: _text - _neq: _text - _nin: [_text!] -} - """ columns and relationships of "account" """ @@ -405,18 +376,25 @@ input account_bool_exp { _or: [account_bool_exp!] address: String_comparison_exp proposal_deposits: proposal_deposit_bool_exp + proposal_deposits_aggregate: proposal_deposit_aggregate_bool_exp proposal_votes: proposal_vote_bool_exp + proposal_votes_aggregate: proposal_vote_aggregate_bool_exp proposals: proposal_bool_exp + proposals_aggregate: proposal_aggregate_bool_exp validator_infos: validator_info_bool_exp + validator_infos_aggregate: validator_info_aggregate_bool_exp vesting_account: vesting_account_bool_exp vesting_accounts: vesting_account_bool_exp + vesting_accounts_aggregate: vesting_account_aggregate_bool_exp } """ unique or primary key constraints on table "account" """ enum account_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "address" + """ account_pkey } @@ -460,12 +438,12 @@ input type for inserting object relation for remote table "account" input account_obj_rel_insert_input { data: account_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: account_on_conflict } """ -on conflict condition type for table "account" +on_conflict condition type for table "account" """ input account_on_conflict { constraint: account_constraint! @@ -504,6 +482,22 @@ input account_set_input { address: String } +""" +Streaming cursor of the table "account" +""" +input account_stream_cursor_input { + """Stream column input with initial value""" + initial_value: account_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input account_stream_cursor_value_input { + address: String +} + """ update columns of table "account" """ @@ -512,6 +506,14 @@ enum account_update_column { address } +input account_updates { + """sets the columns of the filtered rows to the given values""" + _set: account_set_input + + """filter the rows which have to be updated""" + where: account_bool_exp! +} + """ columns and relationships of "assetft_params" """ @@ -575,7 +577,9 @@ input assetft_params_bool_exp { unique or primary key constraints on table "assetft_params" """ enum assetft_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ assetft_params_pkey } @@ -638,7 +642,7 @@ type assetft_params_mutation_response { } """ -on conflict condition type for table "assetft_params" +on_conflict condition type for table "assetft_params" """ input assetft_params_on_conflict { constraint: assetft_params_constraint! @@ -701,6 +705,24 @@ type assetft_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "assetft_params" +""" +input assetft_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: assetft_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input assetft_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type assetft_params_sum_fields { height: bigint @@ -720,6 +742,38 @@ enum assetft_params_update_column { params } +input assetft_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: assetft_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: assetft_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: assetft_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: assetft_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: assetft_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: assetft_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: assetft_params_set_input + + """filter the rows which have to be updated""" + where: assetft_params_bool_exp! +} + """aggregate var_pop on columns""" type assetft_params_var_pop_fields { height: Float @@ -798,7 +852,9 @@ input assetnft_params_bool_exp { unique or primary key constraints on table "assetnft_params" """ enum assetnft_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ assetnft_params_pkey } @@ -861,7 +917,7 @@ type assetnft_params_mutation_response { } """ -on conflict condition type for table "assetnft_params" +on_conflict condition type for table "assetnft_params" """ input assetnft_params_on_conflict { constraint: assetnft_params_constraint! @@ -924,6 +980,24 @@ type assetnft_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "assetnft_params" +""" +input assetnft_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: assetnft_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input assetnft_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type assetnft_params_sum_fields { height: bigint @@ -943,6 +1017,38 @@ enum assetnft_params_update_column { params } +input assetnft_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: assetnft_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: assetnft_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: assetnft_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: assetnft_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: assetnft_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: assetnft_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: assetnft_params_set_input + + """filter the rows which have to be updated""" + where: assetnft_params_bool_exp! +} + """aggregate var_pop on columns""" type assetnft_params_var_pop_fields { height: Float @@ -1014,7 +1120,9 @@ input average_block_time_from_genesis_bool_exp { unique or primary key constraints on table "average_block_time_from_genesis" """ enum average_block_time_from_genesis_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ average_block_time_from_genesis_pkey } @@ -1059,7 +1167,7 @@ type average_block_time_from_genesis_mutation_response { } """ -on conflict condition type for table "average_block_time_from_genesis" +on_conflict condition type for table "average_block_time_from_genesis" """ input average_block_time_from_genesis_on_conflict { constraint: average_block_time_from_genesis_constraint! @@ -1122,6 +1230,24 @@ type average_block_time_from_genesis_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "average_block_time_from_genesis" +""" +input average_block_time_from_genesis_stream_cursor_input { + """Stream column input with initial value""" + initial_value: average_block_time_from_genesis_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input average_block_time_from_genesis_stream_cursor_value_input { + average_time: numeric + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type average_block_time_from_genesis_sum_fields { average_time: numeric @@ -1142,6 +1268,17 @@ enum average_block_time_from_genesis_update_column { one_row_id } +input average_block_time_from_genesis_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: average_block_time_from_genesis_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: average_block_time_from_genesis_set_input + + """filter the rows which have to be updated""" + where: average_block_time_from_genesis_bool_exp! +} + """aggregate var_pop on columns""" type average_block_time_from_genesis_var_pop_fields { average_time: Float @@ -1216,7 +1353,9 @@ input average_block_time_per_day_bool_exp { unique or primary key constraints on table "average_block_time_per_day" """ enum average_block_time_per_day_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ average_block_time_per_day_pkey } @@ -1261,7 +1400,7 @@ type average_block_time_per_day_mutation_response { } """ -on conflict condition type for table "average_block_time_per_day" +on_conflict condition type for table "average_block_time_per_day" """ input average_block_time_per_day_on_conflict { constraint: average_block_time_per_day_constraint! @@ -1324,6 +1463,24 @@ type average_block_time_per_day_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "average_block_time_per_day" +""" +input average_block_time_per_day_stream_cursor_input { + """Stream column input with initial value""" + initial_value: average_block_time_per_day_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input average_block_time_per_day_stream_cursor_value_input { + average_time: numeric + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type average_block_time_per_day_sum_fields { average_time: numeric @@ -1344,6 +1501,17 @@ enum average_block_time_per_day_update_column { one_row_id } +input average_block_time_per_day_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: average_block_time_per_day_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: average_block_time_per_day_set_input + + """filter the rows which have to be updated""" + where: average_block_time_per_day_bool_exp! +} + """aggregate var_pop on columns""" type average_block_time_per_day_var_pop_fields { average_time: Float @@ -1418,7 +1586,9 @@ input average_block_time_per_hour_bool_exp { unique or primary key constraints on table "average_block_time_per_hour" """ enum average_block_time_per_hour_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ average_block_time_per_hour_pkey } @@ -1463,7 +1633,7 @@ type average_block_time_per_hour_mutation_response { } """ -on conflict condition type for table "average_block_time_per_hour" +on_conflict condition type for table "average_block_time_per_hour" """ input average_block_time_per_hour_on_conflict { constraint: average_block_time_per_hour_constraint! @@ -1526,6 +1696,24 @@ type average_block_time_per_hour_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "average_block_time_per_hour" +""" +input average_block_time_per_hour_stream_cursor_input { + """Stream column input with initial value""" + initial_value: average_block_time_per_hour_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input average_block_time_per_hour_stream_cursor_value_input { + average_time: numeric + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type average_block_time_per_hour_sum_fields { average_time: numeric @@ -1546,6 +1734,17 @@ enum average_block_time_per_hour_update_column { one_row_id } +input average_block_time_per_hour_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: average_block_time_per_hour_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: average_block_time_per_hour_set_input + + """filter the rows which have to be updated""" + where: average_block_time_per_hour_bool_exp! +} + """aggregate var_pop on columns""" type average_block_time_per_hour_var_pop_fields { average_time: Float @@ -1620,7 +1819,9 @@ input average_block_time_per_minute_bool_exp { unique or primary key constraints on table "average_block_time_per_minute" """ enum average_block_time_per_minute_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ average_block_time_per_minute_pkey } @@ -1665,7 +1866,7 @@ type average_block_time_per_minute_mutation_response { } """ -on conflict condition type for table "average_block_time_per_minute" +on_conflict condition type for table "average_block_time_per_minute" """ input average_block_time_per_minute_on_conflict { constraint: average_block_time_per_minute_constraint! @@ -1728,6 +1929,24 @@ type average_block_time_per_minute_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "average_block_time_per_minute" +""" +input average_block_time_per_minute_stream_cursor_input { + """Stream column input with initial value""" + initial_value: average_block_time_per_minute_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input average_block_time_per_minute_stream_cursor_value_input { + average_time: numeric + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type average_block_time_per_minute_sum_fields { average_time: numeric @@ -1748,6 +1967,17 @@ enum average_block_time_per_minute_update_column { one_row_id } +input average_block_time_per_minute_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: average_block_time_per_minute_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: average_block_time_per_minute_set_input + + """filter the rows which have to be updated""" + where: average_block_time_per_minute_bool_exp! +} + """aggregate var_pop on columns""" type average_block_time_per_minute_var_pop_fields { average_time: Float @@ -1986,6 +2216,17 @@ type block_aggregate { nodes: [block!]! } +input block_aggregate_bool_exp { + count: block_aggregate_bool_exp_count +} + +input block_aggregate_bool_exp_count { + arguments: [block_select_column!] + distinct: Boolean + filter: block_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "block" """ @@ -2026,7 +2267,7 @@ input type for inserting array relation for remote table "block" input block_arr_rel_insert_input { data: [block_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: block_on_conflict } @@ -2057,24 +2298,33 @@ input block_bool_exp { height: bigint_comparison_exp num_txs: Int_comparison_exp pre_commits: pre_commit_bool_exp + pre_commits_aggregate: pre_commit_aggregate_bool_exp proposal_deposits: proposal_deposit_bool_exp + proposal_deposits_aggregate: proposal_deposit_aggregate_bool_exp proposal_votes: proposal_vote_bool_exp + proposal_votes_aggregate: proposal_vote_aggregate_bool_exp proposer_address: String_comparison_exp timestamp: timestamp_comparison_exp total_gas: bigint_comparison_exp transactions: transaction_bool_exp + transactions_aggregate: transaction_aggregate_bool_exp validator: validator_bool_exp validator_voting_powers: validator_voting_power_bool_exp + validator_voting_powers_aggregate: validator_voting_power_aggregate_bool_exp } """ unique or primary key constraints on table "block" """ enum block_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "hash" + """ block_hash_key - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "height" + """ block_pkey } @@ -2166,12 +2416,12 @@ input type for inserting object relation for remote table "block" input block_obj_rel_insert_input { data: block_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: block_on_conflict } """ -on conflict condition type for table "block" +on_conflict condition type for table "block" """ input block_on_conflict { constraint: block_constraint! @@ -2283,6 +2533,27 @@ input block_stddev_samp_order_by { total_gas: order_by } +""" +Streaming cursor of the table "block" +""" +input block_stream_cursor_input { + """Stream column input with initial value""" + initial_value: block_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input block_stream_cursor_value_input { + hash: String + height: bigint + num_txs: Int + proposer_address: String + timestamp: timestamp + total_gas: bigint +} + """aggregate sum on columns""" type block_sum_fields { height: bigint @@ -2322,6 +2593,17 @@ enum block_update_column { total_gas } +input block_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: block_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: block_set_input + + """filter the rows which have to be updated""" + where: block_bool_exp! +} + """aggregate var_pop on columns""" type block_var_pop_fields { height: Float @@ -2370,11 +2652,33 @@ input block_variance_order_by { total_gas: order_by } +scalar coin + +""" +Boolean expression to compare columns of type "coin". All fields are combined with logical 'AND'. +""" +input coin_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [coin!] + + """does the array contain the given value""" + _contains: [coin!] + _eq: [coin!] + _gt: [coin!] + _gte: [coin!] + _in: [[coin!]!] + _is_null: Boolean + _lt: [coin!] + _lte: [coin!] + _neq: [coin!] + _nin: [[coin!]!] +} + """ columns and relationships of "community_pool" """ type community_pool { - coins: _dec_coin! + coins: [dec_coin!]! height: bigint! one_row_id: Boolean! } @@ -2416,7 +2720,7 @@ input community_pool_bool_exp { _and: [community_pool_bool_exp!] _not: community_pool_bool_exp _or: [community_pool_bool_exp!] - coins: _dec_coin_comparison_exp + coins: dec_coin_array_comparison_exp height: bigint_comparison_exp one_row_id: Boolean_comparison_exp } @@ -2425,7 +2729,9 @@ input community_pool_bool_exp { unique or primary key constraints on table "community_pool" """ enum community_pool_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ community_pool_pkey } @@ -2440,18 +2746,20 @@ input community_pool_inc_input { input type for inserting data into table "community_pool" """ input community_pool_insert_input { - coins: _dec_coin + coins: [dec_coin!] height: bigint one_row_id: Boolean } """aggregate max on columns""" type community_pool_max_fields { + coins: [dec_coin!] height: bigint } """aggregate min on columns""" type community_pool_min_fields { + coins: [dec_coin!] height: bigint } @@ -2467,7 +2775,7 @@ type community_pool_mutation_response { } """ -on conflict condition type for table "community_pool" +on_conflict condition type for table "community_pool" """ input community_pool_on_conflict { constraint: community_pool_constraint! @@ -2505,7 +2813,7 @@ enum community_pool_select_column { input type for updating data in table "community_pool" """ input community_pool_set_input { - coins: _dec_coin + coins: [dec_coin!] height: bigint one_row_id: Boolean } @@ -2525,6 +2833,24 @@ type community_pool_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "community_pool" +""" +input community_pool_stream_cursor_input { + """Stream column input with initial value""" + initial_value: community_pool_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input community_pool_stream_cursor_value_input { + coins: [dec_coin!] + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type community_pool_sum_fields { height: bigint @@ -2544,6 +2870,17 @@ enum community_pool_update_column { one_row_id } +input community_pool_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: community_pool_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: community_pool_set_input + + """filter the rows which have to be updated""" + where: community_pool_bool_exp! +} + """aggregate var_pop on columns""" type community_pool_var_pop_fields { height: Float @@ -2559,6 +2896,15 @@ type community_pool_variance_fields { height: Float } +"""ordering argument of a cursor""" +enum cursor_ordering { + """ascending ordering of the cursor""" + ASC + + """descending ordering of the cursor""" + DESC +} + """ columns and relationships of "customparams_params" """ @@ -2622,7 +2968,9 @@ input customparams_params_bool_exp { unique or primary key constraints on table "customparams_params" """ enum customparams_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ customparams_params_pkey } @@ -2685,7 +3033,7 @@ type customparams_params_mutation_response { } """ -on conflict condition type for table "customparams_params" +on_conflict condition type for table "customparams_params" """ input customparams_params_on_conflict { constraint: customparams_params_constraint! @@ -2748,6 +3096,24 @@ type customparams_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "customparams_params" +""" +input customparams_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: customparams_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input customparams_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + staking_params: jsonb +} + """aggregate sum on columns""" type customparams_params_sum_fields { height: bigint @@ -2767,6 +3133,38 @@ enum customparams_params_update_column { staking_params } +input customparams_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: customparams_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: customparams_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: customparams_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: customparams_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: customparams_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: customparams_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: customparams_params_set_input + + """filter the rows which have to be updated""" + where: customparams_params_bool_exp! +} + """aggregate var_pop on columns""" type customparams_params_var_pop_fields { height: Float @@ -2782,6 +3180,28 @@ type customparams_params_variance_fields { height: Float } +scalar dec_coin + +""" +Boolean expression to compare columns of type "dec_coin". All fields are combined with logical 'AND'. +""" +input dec_coin_array_comparison_exp { + """is the array contained in the given array value""" + _contained_in: [dec_coin!] + + """does the array contain the given value""" + _contains: [dec_coin!] + _eq: [dec_coin!] + _gt: [dec_coin!] + _gte: [dec_coin!] + _in: [[dec_coin!]!] + _is_null: Boolean + _lt: [dec_coin!] + _lte: [dec_coin!] + _neq: [dec_coin!] + _nin: [[dec_coin!]!] +} + """ columns and relationships of "distribution_params" """ @@ -2845,7 +3265,9 @@ input distribution_params_bool_exp { unique or primary key constraints on table "distribution_params" """ enum distribution_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ distribution_params_pkey } @@ -2908,7 +3330,7 @@ type distribution_params_mutation_response { } """ -on conflict condition type for table "distribution_params" +on_conflict condition type for table "distribution_params" """ input distribution_params_on_conflict { constraint: distribution_params_constraint! @@ -2971,6 +3393,24 @@ type distribution_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "distribution_params" +""" +input distribution_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: distribution_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input distribution_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type distribution_params_sum_fields { height: bigint @@ -2990,13 +3430,45 @@ enum distribution_params_update_column { params } -"""aggregate var_pop on columns""" -type distribution_params_var_pop_fields { - height: Float -} +input distribution_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: distribution_params_append_input -"""aggregate var_samp on columns""" -type distribution_params_var_samp_fields { + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: distribution_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: distribution_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: distribution_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: distribution_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: distribution_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: distribution_params_set_input + + """filter the rows which have to be updated""" + where: distribution_params_bool_exp! +} + +"""aggregate var_pop on columns""" +type distribution_params_var_pop_fields { + height: Float +} + +"""aggregate var_samp on columns""" +type distribution_params_var_samp_fields { height: Float } @@ -3027,6 +3499,17 @@ type double_sign_evidence_aggregate { nodes: [double_sign_evidence!]! } +input double_sign_evidence_aggregate_bool_exp { + count: double_sign_evidence_aggregate_bool_exp_count +} + +input double_sign_evidence_aggregate_bool_exp_count { + arguments: [double_sign_evidence_select_column!] + distinct: Boolean + filter: double_sign_evidence_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "double_sign_evidence" """ @@ -3241,6 +3724,24 @@ input double_sign_evidence_stddev_samp_order_by { vote_b_id: order_by } +""" +Streaming cursor of the table "double_sign_evidence" +""" +input double_sign_evidence_stream_cursor_input { + """Stream column input with initial value""" + initial_value: double_sign_evidence_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input double_sign_evidence_stream_cursor_value_input { + height: bigint + vote_a_id: bigint + vote_b_id: bigint +} + """aggregate sum on columns""" type double_sign_evidence_sum_fields { height: bigint @@ -3257,6 +3758,17 @@ input double_sign_evidence_sum_order_by { vote_b_id: order_by } +input double_sign_evidence_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: double_sign_evidence_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: double_sign_evidence_set_input + + """filter the rows which have to be updated""" + where: double_sign_evidence_bool_exp! +} + """aggregate var_pop on columns""" type double_sign_evidence_var_pop_fields { height: Float @@ -3402,6 +3914,17 @@ type double_sign_vote_aggregate { nodes: [double_sign_vote!]! } +input double_sign_vote_aggregate_bool_exp { + count: double_sign_vote_aggregate_bool_exp_count +} + +input double_sign_vote_aggregate_bool_exp_count { + arguments: [double_sign_vote_select_column!] + distinct: Boolean + filter: double_sign_vote_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "double_sign_vote" """ @@ -3442,7 +3965,7 @@ input type for inserting array relation for remote table "double_sign_vote" input double_sign_vote_arr_rel_insert_input { data: [double_sign_vote_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: double_sign_vote_on_conflict } @@ -3475,7 +3998,9 @@ input double_sign_vote_bool_exp { _or: [double_sign_vote_bool_exp!] block_id: String_comparison_exp doubleSignEvidencesByVoteBId: double_sign_evidence_bool_exp + doubleSignEvidencesByVoteBId_aggregate: double_sign_evidence_aggregate_bool_exp double_sign_evidences: double_sign_evidence_bool_exp + double_sign_evidences_aggregate: double_sign_evidence_aggregate_bool_exp height: bigint_comparison_exp id: Int_comparison_exp round: Int_comparison_exp @@ -3490,10 +4015,14 @@ input double_sign_vote_bool_exp { unique or primary key constraints on table "double_sign_vote" """ enum double_sign_vote_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address", "block_id" + """ double_sign_vote_block_id_validator_address_key - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ double_sign_vote_pkey } @@ -3594,12 +4123,12 @@ input type for inserting object relation for remote table "double_sign_vote" input double_sign_vote_obj_rel_insert_input { data: double_sign_vote_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: double_sign_vote_on_conflict } """ -on conflict condition type for table "double_sign_vote" +on_conflict condition type for table "double_sign_vote" """ input double_sign_vote_on_conflict { constraint: double_sign_vote_constraint! @@ -3730,6 +4259,29 @@ input double_sign_vote_stddev_samp_order_by { validator_index: order_by } +""" +Streaming cursor of the table "double_sign_vote" +""" +input double_sign_vote_stream_cursor_input { + """Stream column input with initial value""" + initial_value: double_sign_vote_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input double_sign_vote_stream_cursor_value_input { + block_id: String + height: bigint + id: Int + round: Int + signature: String + type: smallint + validator_address: String + validator_index: Int +} + """aggregate sum on columns""" type double_sign_vote_sum_fields { height: bigint @@ -3779,6 +4331,17 @@ enum double_sign_vote_update_column { validator_index } +input double_sign_vote_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: double_sign_vote_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: double_sign_vote_set_input + + """filter the rows which have to be updated""" + where: double_sign_vote_bool_exp! +} + """aggregate var_pop on columns""" type double_sign_vote_var_pop_fields { height: Float @@ -3915,10 +4478,14 @@ input fee_grant_allowance_bool_exp { unique or primary key constraints on table "fee_grant_allowance" """ enum fee_grant_allowance_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ fee_grant_allowance_pkey - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "grantee_address", "granter_address" + """ unique_fee_grant_allowance } @@ -3992,7 +4559,7 @@ type fee_grant_allowance_mutation_response { } """ -on conflict condition type for table "fee_grant_allowance" +on_conflict condition type for table "fee_grant_allowance" """ input fee_grant_allowance_on_conflict { constraint: fee_grant_allowance_constraint! @@ -4070,6 +4637,26 @@ type fee_grant_allowance_stddev_samp_fields { id: Float } +""" +Streaming cursor of the table "fee_grant_allowance" +""" +input fee_grant_allowance_stream_cursor_input { + """Stream column input with initial value""" + initial_value: fee_grant_allowance_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input fee_grant_allowance_stream_cursor_value_input { + allowance: jsonb + grantee_address: String + granter_address: String + height: bigint + id: Int +} + """aggregate sum on columns""" type fee_grant_allowance_sum_fields { height: bigint @@ -4096,6 +4683,38 @@ enum fee_grant_allowance_update_column { id } +input fee_grant_allowance_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: fee_grant_allowance_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: fee_grant_allowance_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: fee_grant_allowance_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: fee_grant_allowance_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: fee_grant_allowance_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: fee_grant_allowance_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: fee_grant_allowance_set_input + + """filter the rows which have to be updated""" + where: fee_grant_allowance_bool_exp! +} + """aggregate var_pop on columns""" type fee_grant_allowance_var_pop_fields { height: Float @@ -4177,7 +4796,9 @@ input feemodel_params_bool_exp { unique or primary key constraints on table "feemodel_params" """ enum feemodel_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ feemodel_params_pkey } @@ -4240,7 +4861,7 @@ type feemodel_params_mutation_response { } """ -on conflict condition type for table "feemodel_params" +on_conflict condition type for table "feemodel_params" """ input feemodel_params_on_conflict { constraint: feemodel_params_constraint! @@ -4303,6 +4924,24 @@ type feemodel_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "feemodel_params" +""" +input feemodel_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: feemodel_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input feemodel_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type feemodel_params_sum_fields { height: bigint @@ -4322,6 +4961,38 @@ enum feemodel_params_update_column { params } +input feemodel_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: feemodel_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: feemodel_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: feemodel_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: feemodel_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: feemodel_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: feemodel_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: feemodel_params_set_input + + """filter the rows which have to be updated""" + where: feemodel_params_bool_exp! +} + """aggregate var_pop on columns""" type feemodel_params_var_pop_fields { height: Float @@ -4394,7 +5065,9 @@ input genesis_bool_exp { unique or primary key constraints on table "genesis" """ enum genesis_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ genesis_pkey } @@ -4441,7 +5114,7 @@ type genesis_mutation_response { } """ -on conflict condition type for table "genesis" +on_conflict condition type for table "genesis" """ input genesis_on_conflict { constraint: genesis_constraint! @@ -4504,6 +5177,25 @@ type genesis_stddev_samp_fields { initial_height: Float } +""" +Streaming cursor of the table "genesis" +""" +input genesis_stream_cursor_input { + """Stream column input with initial value""" + initial_value: genesis_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input genesis_stream_cursor_value_input { + chain_id: String + initial_height: bigint + one_row_id: Boolean + time: timestamp +} + """aggregate sum on columns""" type genesis_sum_fields { initial_height: bigint @@ -4526,6 +5218,17 @@ enum genesis_update_column { time } +input genesis_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: genesis_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: genesis_set_input + + """filter the rows which have to be updated""" + where: genesis_bool_exp! +} + """aggregate var_pop on columns""" type genesis_var_pop_fields { initial_height: Float @@ -4545,17 +5248,9 @@ type genesis_variance_fields { columns and relationships of "gov_params" """ type gov_params { - deposit_params( - """JSON select path""" - path: String - ): jsonb! height: bigint! one_row_id: Boolean! - tally_params( - """JSON select path""" - path: String - ): jsonb! - voting_params( + params( """JSON select path""" path: String ): jsonb! @@ -4588,9 +5283,7 @@ type gov_params_aggregate_fields { """append existing jsonb value of filtered columns with new jsonb value""" input gov_params_append_input { - deposit_params: jsonb - tally_params: jsonb - voting_params: jsonb + params: jsonb } """aggregate avg on columns""" @@ -4605,18 +5298,18 @@ input gov_params_bool_exp { _and: [gov_params_bool_exp!] _not: gov_params_bool_exp _or: [gov_params_bool_exp!] - deposit_params: jsonb_comparison_exp height: bigint_comparison_exp one_row_id: Boolean_comparison_exp - tally_params: jsonb_comparison_exp - voting_params: jsonb_comparison_exp + params: jsonb_comparison_exp } """ unique or primary key constraints on table "gov_params" """ enum gov_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ gov_params_pkey } @@ -4624,27 +5317,21 @@ enum gov_params_constraint { delete the field or element with specified path (for JSON arrays, negative integers count from the end) """ input gov_params_delete_at_path_input { - deposit_params: [String!] - tally_params: [String!] - voting_params: [String!] + params: [String!] } """ delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array """ input gov_params_delete_elem_input { - deposit_params: Int - tally_params: Int - voting_params: Int + params: Int } """ delete key/value pair or string element. key/value pairs are matched based on their key value """ input gov_params_delete_key_input { - deposit_params: String - tally_params: String - voting_params: String + params: String } """ @@ -4658,11 +5345,9 @@ input gov_params_inc_input { input type for inserting data into table "gov_params" """ input gov_params_insert_input { - deposit_params: jsonb height: bigint one_row_id: Boolean - tally_params: jsonb - voting_params: jsonb + params: jsonb } """aggregate max on columns""" @@ -4687,7 +5372,7 @@ type gov_params_mutation_response { } """ -on conflict condition type for table "gov_params" +on_conflict condition type for table "gov_params" """ input gov_params_on_conflict { constraint: gov_params_constraint! @@ -4697,11 +5382,9 @@ input gov_params_on_conflict { """Ordering options when selecting data from "gov_params".""" input gov_params_order_by { - deposit_params: order_by height: order_by one_row_id: order_by - tally_params: order_by - voting_params: order_by + params: order_by } """primary key columns input for table: gov_params""" @@ -4711,18 +5394,13 @@ input gov_params_pk_columns_input { """prepend existing jsonb value of filtered columns with new jsonb value""" input gov_params_prepend_input { - deposit_params: jsonb - tally_params: jsonb - voting_params: jsonb + params: jsonb } """ select columns of table "gov_params" """ enum gov_params_select_column { - """column name""" - deposit_params - """column name""" height @@ -4730,21 +5408,16 @@ enum gov_params_select_column { one_row_id """column name""" - tally_params - - """column name""" - voting_params + params } """ input type for updating data in table "gov_params" """ input gov_params_set_input { - deposit_params: jsonb height: bigint one_row_id: Boolean - tally_params: jsonb - voting_params: jsonb + params: jsonb } """aggregate stddev on columns""" @@ -4762,6 +5435,24 @@ type gov_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "gov_params" +""" +input gov_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: gov_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input gov_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type gov_params_sum_fields { height: bigint @@ -4771,9 +5462,6 @@ type gov_params_sum_fields { update columns of table "gov_params" """ enum gov_params_update_column { - """column name""" - deposit_params - """column name""" height @@ -4781,10 +5469,39 @@ enum gov_params_update_column { one_row_id """column name""" - tally_params + params +} - """column name""" - voting_params +input gov_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: gov_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: gov_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: gov_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: gov_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: gov_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: gov_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: gov_params_set_input + + """filter the rows which have to be updated""" + where: gov_params_bool_exp! } """aggregate var_pop on columns""" @@ -4858,7 +5575,9 @@ input inflation_bool_exp { unique or primary key constraints on table "inflation" """ enum inflation_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ inflation_pkey } @@ -4903,7 +5622,7 @@ type inflation_mutation_response { } """ -on conflict condition type for table "inflation" +on_conflict condition type for table "inflation" """ input inflation_on_conflict { constraint: inflation_constraint! @@ -4964,6 +5683,24 @@ type inflation_stddev_samp_fields { value: Float } +""" +Streaming cursor of the table "inflation" +""" +input inflation_stream_cursor_input { + """Stream column input with initial value""" + initial_value: inflation_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input inflation_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + value: numeric +} + """aggregate sum on columns""" type inflation_sum_fields { height: bigint @@ -4984,6 +5721,17 @@ enum inflation_update_column { value } +input inflation_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: inflation_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: inflation_set_input + + """filter the rows which have to be updated""" + where: inflation_bool_exp! +} + """aggregate var_pop on columns""" type inflation_var_pop_fields { height: Float @@ -5004,10 +5752,16 @@ type inflation_variance_fields { scalar jsonb +input jsonb_cast_exp { + String: String_comparison_exp +} + """ Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. """ input jsonb_comparison_exp { + _cast: jsonb_cast_exp + """is the column contained in the given json value""" _contained_in: jsonb @@ -5039,7 +5793,7 @@ columns and relationships of "message" type message { height: bigint! index: bigint! - involved_accounts_addresses: _text! + involved_accounts_addresses: [String!]! partition_id: bigint! """An object relationship""" @@ -5098,7 +5852,7 @@ input message_bool_exp { _or: [message_bool_exp!] height: bigint_comparison_exp index: bigint_comparison_exp - involved_accounts_addresses: _text_comparison_exp + involved_accounts_addresses: String_array_comparison_exp partition_id: bigint_comparison_exp transaction: transaction_bool_exp transaction_hash: String_comparison_exp @@ -5110,7 +5864,9 @@ input message_bool_exp { unique or primary key constraints on table "message" """ enum message_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "index", "partition_id", "transaction_hash" + """ unique_message_per_tx } @@ -5150,7 +5906,7 @@ input type for inserting data into table "message" input message_insert_input { height: bigint index: bigint - involved_accounts_addresses: _text + involved_accounts_addresses: [String!] partition_id: bigint transaction: transaction_obj_rel_insert_input transaction_hash: String @@ -5162,6 +5918,7 @@ input message_insert_input { type message_max_fields { height: bigint index: bigint + involved_accounts_addresses: [String!] partition_id: bigint transaction_hash: String type: String @@ -5171,6 +5928,7 @@ type message_max_fields { type message_min_fields { height: bigint index: bigint + involved_accounts_addresses: [String!] partition_id: bigint transaction_hash: String type: String @@ -5188,7 +5946,7 @@ type message_mutation_response { } """ -on conflict condition type for table "message" +on_conflict condition type for table "message" """ input message_on_conflict { constraint: message_constraint! @@ -5245,7 +6003,7 @@ input type for updating data in table "message" input message_set_input { height: bigint index: bigint - involved_accounts_addresses: _text + involved_accounts_addresses: [String!] partition_id: bigint transaction_hash: String type: String @@ -5273,6 +6031,28 @@ type message_stddev_samp_fields { partition_id: Float } +""" +Streaming cursor of the table "message" +""" +input message_stream_cursor_input { + """Stream column input with initial value""" + initial_value: message_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input message_stream_cursor_value_input { + height: bigint + index: bigint + involved_accounts_addresses: [String!] + partition_id: bigint + transaction_hash: String + type: String + value: jsonb +} + """aggregate sum on columns""" type message_sum_fields { height: bigint @@ -5306,6 +6086,38 @@ enum message_update_column { value } +input message_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: message_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: message_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: message_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: message_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: message_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: message_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: message_set_input + + """filter the rows which have to be updated""" + where: message_bool_exp! +} + """aggregate var_pop on columns""" type message_var_pop_fields { height: Float @@ -5397,7 +6209,9 @@ input mint_params_bool_exp { unique or primary key constraints on table "mint_params" """ enum mint_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ mint_params_pkey } @@ -5460,7 +6274,7 @@ type mint_params_mutation_response { } """ -on conflict condition type for table "mint_params" +on_conflict condition type for table "mint_params" """ input mint_params_on_conflict { constraint: mint_params_constraint! @@ -5523,6 +6337,24 @@ type mint_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "mint_params" +""" +input mint_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: mint_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input mint_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type mint_params_sum_fields { height: bigint @@ -5542,9 +6374,41 @@ enum mint_params_update_column { params } -"""aggregate var_pop on columns""" -type mint_params_var_pop_fields { - height: Float +input mint_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: mint_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: mint_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: mint_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: mint_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: mint_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: mint_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: mint_params_set_input + + """filter the rows which have to be updated""" + where: mint_params_bool_exp! +} + +"""aggregate var_pop on columns""" +type mint_params_var_pop_fields { + height: Float } """aggregate var_samp on columns""" @@ -5595,7 +6459,9 @@ input modules_bool_exp { unique or primary key constraints on table "modules" """ enum modules_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "module_name" + """ modules_pkey } @@ -5628,7 +6494,7 @@ type modules_mutation_response { } """ -on conflict condition type for table "modules" +on_conflict condition type for table "modules" """ input modules_on_conflict { constraint: modules_constraint! @@ -5661,6 +6527,22 @@ input modules_set_input { module_name: String } +""" +Streaming cursor of the table "modules" +""" +input modules_stream_cursor_input { + """Stream column input with initial value""" + initial_value: modules_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input modules_stream_cursor_value_input { + module_name: String +} + """ update columns of table "modules" """ @@ -5669,6 +6551,14 @@ enum modules_update_column { module_name } +input modules_updates { + """sets the columns of the filtered rows to the given values""" + _set: modules_set_input + + """filter the rows which have to be updated""" + where: modules_bool_exp! +} + """mutation root""" type mutation_root { """ @@ -6023,6 +6913,14 @@ type mutation_root { """ delete_slashing_params_by_pk(one_row_id: Boolean!): slashing_params + """ + delete data from the table: "software_upgrade_plan" + """ + delete_software_upgrade_plan( + """filter the rows which have to be deleted""" + where: software_upgrade_plan_bool_exp! + ): software_upgrade_plan_mutation_response + """ delete data from the table: "staking_params" """ @@ -6231,7 +7129,7 @@ type mutation_root { """the rows to be inserted""" objects: [account_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: account_on_conflict ): account_mutation_response @@ -6242,7 +7140,7 @@ type mutation_root { """the row to be inserted""" object: account_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: account_on_conflict ): account @@ -6253,7 +7151,7 @@ type mutation_root { """the rows to be inserted""" objects: [assetft_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: assetft_params_on_conflict ): assetft_params_mutation_response @@ -6264,7 +7162,7 @@ type mutation_root { """the row to be inserted""" object: assetft_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: assetft_params_on_conflict ): assetft_params @@ -6275,7 +7173,7 @@ type mutation_root { """the rows to be inserted""" objects: [assetnft_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: assetnft_params_on_conflict ): assetnft_params_mutation_response @@ -6286,7 +7184,7 @@ type mutation_root { """the row to be inserted""" object: assetnft_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: assetnft_params_on_conflict ): assetnft_params @@ -6297,7 +7195,7 @@ type mutation_root { """the rows to be inserted""" objects: [average_block_time_from_genesis_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_from_genesis_on_conflict ): average_block_time_from_genesis_mutation_response @@ -6308,7 +7206,7 @@ type mutation_root { """the row to be inserted""" object: average_block_time_from_genesis_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_from_genesis_on_conflict ): average_block_time_from_genesis @@ -6319,7 +7217,7 @@ type mutation_root { """the rows to be inserted""" objects: [average_block_time_per_day_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_day_on_conflict ): average_block_time_per_day_mutation_response @@ -6330,7 +7228,7 @@ type mutation_root { """the row to be inserted""" object: average_block_time_per_day_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_day_on_conflict ): average_block_time_per_day @@ -6341,7 +7239,7 @@ type mutation_root { """the rows to be inserted""" objects: [average_block_time_per_hour_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_hour_on_conflict ): average_block_time_per_hour_mutation_response @@ -6352,7 +7250,7 @@ type mutation_root { """the row to be inserted""" object: average_block_time_per_hour_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_hour_on_conflict ): average_block_time_per_hour @@ -6363,7 +7261,7 @@ type mutation_root { """the rows to be inserted""" objects: [average_block_time_per_minute_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_minute_on_conflict ): average_block_time_per_minute_mutation_response @@ -6374,7 +7272,7 @@ type mutation_root { """the row to be inserted""" object: average_block_time_per_minute_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: average_block_time_per_minute_on_conflict ): average_block_time_per_minute @@ -6385,7 +7283,7 @@ type mutation_root { """the rows to be inserted""" objects: [block_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: block_on_conflict ): block_mutation_response @@ -6396,7 +7294,7 @@ type mutation_root { """the row to be inserted""" object: block_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: block_on_conflict ): block @@ -6407,7 +7305,7 @@ type mutation_root { """the rows to be inserted""" objects: [community_pool_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: community_pool_on_conflict ): community_pool_mutation_response @@ -6418,7 +7316,7 @@ type mutation_root { """the row to be inserted""" object: community_pool_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: community_pool_on_conflict ): community_pool @@ -6429,7 +7327,7 @@ type mutation_root { """the rows to be inserted""" objects: [customparams_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: customparams_params_on_conflict ): customparams_params_mutation_response @@ -6440,7 +7338,7 @@ type mutation_root { """the row to be inserted""" object: customparams_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: customparams_params_on_conflict ): customparams_params @@ -6451,7 +7349,7 @@ type mutation_root { """the rows to be inserted""" objects: [distribution_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: distribution_params_on_conflict ): distribution_params_mutation_response @@ -6462,7 +7360,7 @@ type mutation_root { """the row to be inserted""" object: distribution_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: distribution_params_on_conflict ): distribution_params @@ -6489,7 +7387,7 @@ type mutation_root { """the rows to be inserted""" objects: [double_sign_vote_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: double_sign_vote_on_conflict ): double_sign_vote_mutation_response @@ -6500,7 +7398,7 @@ type mutation_root { """the row to be inserted""" object: double_sign_vote_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: double_sign_vote_on_conflict ): double_sign_vote @@ -6511,7 +7409,7 @@ type mutation_root { """the rows to be inserted""" objects: [fee_grant_allowance_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: fee_grant_allowance_on_conflict ): fee_grant_allowance_mutation_response @@ -6522,7 +7420,7 @@ type mutation_root { """the row to be inserted""" object: fee_grant_allowance_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: fee_grant_allowance_on_conflict ): fee_grant_allowance @@ -6533,7 +7431,7 @@ type mutation_root { """the rows to be inserted""" objects: [feemodel_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: feemodel_params_on_conflict ): feemodel_params_mutation_response @@ -6544,7 +7442,7 @@ type mutation_root { """the row to be inserted""" object: feemodel_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: feemodel_params_on_conflict ): feemodel_params @@ -6555,7 +7453,7 @@ type mutation_root { """the rows to be inserted""" objects: [genesis_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: genesis_on_conflict ): genesis_mutation_response @@ -6566,7 +7464,7 @@ type mutation_root { """the row to be inserted""" object: genesis_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: genesis_on_conflict ): genesis @@ -6577,7 +7475,7 @@ type mutation_root { """the rows to be inserted""" objects: [gov_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: gov_params_on_conflict ): gov_params_mutation_response @@ -6588,7 +7486,7 @@ type mutation_root { """the row to be inserted""" object: gov_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: gov_params_on_conflict ): gov_params @@ -6599,7 +7497,7 @@ type mutation_root { """the rows to be inserted""" objects: [inflation_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: inflation_on_conflict ): inflation_mutation_response @@ -6610,7 +7508,7 @@ type mutation_root { """the row to be inserted""" object: inflation_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: inflation_on_conflict ): inflation @@ -6621,7 +7519,7 @@ type mutation_root { """the rows to be inserted""" objects: [message_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: message_on_conflict ): message_mutation_response @@ -6632,7 +7530,7 @@ type mutation_root { """the row to be inserted""" object: message_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: message_on_conflict ): message @@ -6643,7 +7541,7 @@ type mutation_root { """the rows to be inserted""" objects: [mint_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: mint_params_on_conflict ): mint_params_mutation_response @@ -6654,7 +7552,7 @@ type mutation_root { """the row to be inserted""" object: mint_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: mint_params_on_conflict ): mint_params @@ -6665,7 +7563,7 @@ type mutation_root { """the rows to be inserted""" objects: [modules_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: modules_on_conflict ): modules_mutation_response @@ -6676,7 +7574,7 @@ type mutation_root { """the row to be inserted""" object: modules_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: modules_on_conflict ): modules @@ -6687,7 +7585,7 @@ type mutation_root { """the rows to be inserted""" objects: [pre_commit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: pre_commit_on_conflict ): pre_commit_mutation_response @@ -6698,7 +7596,7 @@ type mutation_root { """the row to be inserted""" object: pre_commit_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: pre_commit_on_conflict ): pre_commit @@ -6709,7 +7607,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_on_conflict ): proposal_mutation_response @@ -6720,7 +7618,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_deposit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_deposit_on_conflict ): proposal_deposit_mutation_response @@ -6731,7 +7629,7 @@ type mutation_root { """the row to be inserted""" object: proposal_deposit_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_deposit_on_conflict ): proposal_deposit @@ -6742,7 +7640,7 @@ type mutation_root { """the row to be inserted""" object: proposal_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_on_conflict ): proposal @@ -6753,7 +7651,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_staking_pool_snapshot_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_staking_pool_snapshot_on_conflict ): proposal_staking_pool_snapshot_mutation_response @@ -6764,7 +7662,7 @@ type mutation_root { """the row to be inserted""" object: proposal_staking_pool_snapshot_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_staking_pool_snapshot_on_conflict ): proposal_staking_pool_snapshot @@ -6775,7 +7673,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_tally_result_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_tally_result_on_conflict ): proposal_tally_result_mutation_response @@ -6786,7 +7684,7 @@ type mutation_root { """the row to be inserted""" object: proposal_tally_result_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_tally_result_on_conflict ): proposal_tally_result @@ -6797,7 +7695,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_validator_status_snapshot_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_validator_status_snapshot_on_conflict ): proposal_validator_status_snapshot_mutation_response @@ -6808,7 +7706,7 @@ type mutation_root { """the row to be inserted""" object: proposal_validator_status_snapshot_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_validator_status_snapshot_on_conflict ): proposal_validator_status_snapshot @@ -6819,7 +7717,7 @@ type mutation_root { """the rows to be inserted""" objects: [proposal_vote_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_vote_on_conflict ): proposal_vote_mutation_response @@ -6830,7 +7728,7 @@ type mutation_root { """the row to be inserted""" object: proposal_vote_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_vote_on_conflict ): proposal_vote @@ -6841,7 +7739,7 @@ type mutation_root { """the rows to be inserted""" objects: [slashing_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: slashing_params_on_conflict ): slashing_params_mutation_response @@ -6852,10 +7750,32 @@ type mutation_root { """the row to be inserted""" object: slashing_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: slashing_params_on_conflict ): slashing_params + """ + insert data into the table: "software_upgrade_plan" + """ + insert_software_upgrade_plan( + """the rows to be inserted""" + objects: [software_upgrade_plan_insert_input!]! + + """upsert condition""" + on_conflict: software_upgrade_plan_on_conflict + ): software_upgrade_plan_mutation_response + + """ + insert a single row into the table: "software_upgrade_plan" + """ + insert_software_upgrade_plan_one( + """the row to be inserted""" + object: software_upgrade_plan_insert_input! + + """upsert condition""" + on_conflict: software_upgrade_plan_on_conflict + ): software_upgrade_plan + """ insert data into the table: "staking_params" """ @@ -6863,7 +7783,7 @@ type mutation_root { """the rows to be inserted""" objects: [staking_params_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: staking_params_on_conflict ): staking_params_mutation_response @@ -6874,7 +7794,7 @@ type mutation_root { """the row to be inserted""" object: staking_params_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: staking_params_on_conflict ): staking_params @@ -6885,7 +7805,7 @@ type mutation_root { """the rows to be inserted""" objects: [staking_pool_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: staking_pool_on_conflict ): staking_pool_mutation_response @@ -6896,7 +7816,7 @@ type mutation_root { """the row to be inserted""" object: staking_pool_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: staking_pool_on_conflict ): staking_pool @@ -6907,7 +7827,7 @@ type mutation_root { """the rows to be inserted""" objects: [supply_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: supply_on_conflict ): supply_mutation_response @@ -6918,7 +7838,7 @@ type mutation_root { """the row to be inserted""" object: supply_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: supply_on_conflict ): supply @@ -6929,7 +7849,7 @@ type mutation_root { """the rows to be inserted""" objects: [token_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_on_conflict ): token_mutation_response @@ -6940,7 +7860,7 @@ type mutation_root { """the row to be inserted""" object: token_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_on_conflict ): token @@ -6951,7 +7871,7 @@ type mutation_root { """the rows to be inserted""" objects: [token_price_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_on_conflict ): token_price_mutation_response @@ -6962,7 +7882,7 @@ type mutation_root { """the rows to be inserted""" objects: [token_price_history_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_history_on_conflict ): token_price_history_mutation_response @@ -6973,7 +7893,7 @@ type mutation_root { """the row to be inserted""" object: token_price_history_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_history_on_conflict ): token_price_history @@ -6984,7 +7904,7 @@ type mutation_root { """the row to be inserted""" object: token_price_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_on_conflict ): token_price @@ -6995,7 +7915,7 @@ type mutation_root { """the rows to be inserted""" objects: [token_unit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_unit_on_conflict ): token_unit_mutation_response @@ -7006,7 +7926,7 @@ type mutation_root { """the row to be inserted""" object: token_unit_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_unit_on_conflict ): token_unit @@ -7017,7 +7937,7 @@ type mutation_root { """the rows to be inserted""" objects: [transaction_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: transaction_on_conflict ): transaction_mutation_response @@ -7028,7 +7948,7 @@ type mutation_root { """the row to be inserted""" object: transaction_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: transaction_on_conflict ): transaction @@ -7039,7 +7959,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_on_conflict ): validator_mutation_response @@ -7050,7 +7970,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_commission_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_commission_on_conflict ): validator_commission_mutation_response @@ -7061,7 +7981,7 @@ type mutation_root { """the row to be inserted""" object: validator_commission_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_commission_on_conflict ): validator_commission @@ -7072,7 +7992,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_description_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_description_on_conflict ): validator_description_mutation_response @@ -7083,7 +8003,7 @@ type mutation_root { """the row to be inserted""" object: validator_description_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_description_on_conflict ): validator_description @@ -7094,7 +8014,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_info_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_info_on_conflict ): validator_info_mutation_response @@ -7105,7 +8025,7 @@ type mutation_root { """the row to be inserted""" object: validator_info_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_info_on_conflict ): validator_info @@ -7116,7 +8036,7 @@ type mutation_root { """the row to be inserted""" object: validator_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_on_conflict ): validator @@ -7127,7 +8047,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_signing_info_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_signing_info_on_conflict ): validator_signing_info_mutation_response @@ -7138,7 +8058,7 @@ type mutation_root { """the row to be inserted""" object: validator_signing_info_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_signing_info_on_conflict ): validator_signing_info @@ -7149,7 +8069,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_status_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_status_on_conflict ): validator_status_mutation_response @@ -7160,7 +8080,7 @@ type mutation_root { """the row to be inserted""" object: validator_status_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_status_on_conflict ): validator_status @@ -7171,7 +8091,7 @@ type mutation_root { """the rows to be inserted""" objects: [validator_voting_power_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_voting_power_on_conflict ): validator_voting_power_mutation_response @@ -7182,7 +8102,7 @@ type mutation_root { """the row to be inserted""" object: validator_voting_power_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_voting_power_on_conflict ): validator_voting_power @@ -7193,7 +8113,7 @@ type mutation_root { """the rows to be inserted""" objects: [vesting_account_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: vesting_account_on_conflict ): vesting_account_mutation_response @@ -7204,7 +8124,7 @@ type mutation_root { """the row to be inserted""" object: vesting_account_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: vesting_account_on_conflict ): vesting_account @@ -7244,6 +8164,14 @@ type mutation_root { pk_columns: account_pk_columns_input! ): account + """ + update multiples rows of table: "account" + """ + update_account_many( + """updates to execute, in order""" + updates: [account_updates!]! + ): [account_mutation_response] + """ update data of the table: "assetft_params" """ @@ -7312,6 +8240,14 @@ type mutation_root { pk_columns: assetft_params_pk_columns_input! ): assetft_params + """ + update multiples rows of table: "assetft_params" + """ + update_assetft_params_many( + """updates to execute, in order""" + updates: [assetft_params_updates!]! + ): [assetft_params_mutation_response] + """ update data of the table: "assetnft_params" """ @@ -7380,6 +8316,14 @@ type mutation_root { pk_columns: assetnft_params_pk_columns_input! ): assetnft_params + """ + update multiples rows of table: "assetnft_params" + """ + update_assetnft_params_many( + """updates to execute, in order""" + updates: [assetnft_params_updates!]! + ): [assetnft_params_mutation_response] + """ update data of the table: "average_block_time_from_genesis" """ @@ -7406,6 +8350,14 @@ type mutation_root { pk_columns: average_block_time_from_genesis_pk_columns_input! ): average_block_time_from_genesis + """ + update multiples rows of table: "average_block_time_from_genesis" + """ + update_average_block_time_from_genesis_many( + """updates to execute, in order""" + updates: [average_block_time_from_genesis_updates!]! + ): [average_block_time_from_genesis_mutation_response] + """ update data of the table: "average_block_time_per_day" """ @@ -7432,6 +8384,14 @@ type mutation_root { pk_columns: average_block_time_per_day_pk_columns_input! ): average_block_time_per_day + """ + update multiples rows of table: "average_block_time_per_day" + """ + update_average_block_time_per_day_many( + """updates to execute, in order""" + updates: [average_block_time_per_day_updates!]! + ): [average_block_time_per_day_mutation_response] + """ update data of the table: "average_block_time_per_hour" """ @@ -7458,6 +8418,14 @@ type mutation_root { pk_columns: average_block_time_per_hour_pk_columns_input! ): average_block_time_per_hour + """ + update multiples rows of table: "average_block_time_per_hour" + """ + update_average_block_time_per_hour_many( + """updates to execute, in order""" + updates: [average_block_time_per_hour_updates!]! + ): [average_block_time_per_hour_mutation_response] + """ update data of the table: "average_block_time_per_minute" """ @@ -7484,6 +8452,14 @@ type mutation_root { pk_columns: average_block_time_per_minute_pk_columns_input! ): average_block_time_per_minute + """ + update multiples rows of table: "average_block_time_per_minute" + """ + update_average_block_time_per_minute_many( + """updates to execute, in order""" + updates: [average_block_time_per_minute_updates!]! + ): [average_block_time_per_minute_mutation_response] + """ update data of the table: "block" """ @@ -7510,6 +8486,14 @@ type mutation_root { pk_columns: block_pk_columns_input! ): block + """ + update multiples rows of table: "block" + """ + update_block_many( + """updates to execute, in order""" + updates: [block_updates!]! + ): [block_mutation_response] + """ update data of the table: "community_pool" """ @@ -7536,6 +8520,14 @@ type mutation_root { pk_columns: community_pool_pk_columns_input! ): community_pool + """ + update multiples rows of table: "community_pool" + """ + update_community_pool_many( + """updates to execute, in order""" + updates: [community_pool_updates!]! + ): [community_pool_mutation_response] + """ update data of the table: "customparams_params" """ @@ -7604,6 +8596,14 @@ type mutation_root { pk_columns: customparams_params_pk_columns_input! ): customparams_params + """ + update multiples rows of table: "customparams_params" + """ + update_customparams_params_many( + """updates to execute, in order""" + updates: [customparams_params_updates!]! + ): [customparams_params_mutation_response] + """ update data of the table: "distribution_params" """ @@ -7672,6 +8672,14 @@ type mutation_root { pk_columns: distribution_params_pk_columns_input! ): distribution_params + """ + update multiples rows of table: "distribution_params" + """ + update_distribution_params_many( + """updates to execute, in order""" + updates: [distribution_params_updates!]! + ): [distribution_params_mutation_response] + """ update data of the table: "double_sign_evidence" """ @@ -7686,6 +8694,14 @@ type mutation_root { where: double_sign_evidence_bool_exp! ): double_sign_evidence_mutation_response + """ + update multiples rows of table: "double_sign_evidence" + """ + update_double_sign_evidence_many( + """updates to execute, in order""" + updates: [double_sign_evidence_updates!]! + ): [double_sign_evidence_mutation_response] + """ update data of the table: "double_sign_vote" """ @@ -7712,6 +8728,14 @@ type mutation_root { pk_columns: double_sign_vote_pk_columns_input! ): double_sign_vote + """ + update multiples rows of table: "double_sign_vote" + """ + update_double_sign_vote_many( + """updates to execute, in order""" + updates: [double_sign_vote_updates!]! + ): [double_sign_vote_mutation_response] + """ update data of the table: "fee_grant_allowance" """ @@ -7780,6 +8804,14 @@ type mutation_root { pk_columns: fee_grant_allowance_pk_columns_input! ): fee_grant_allowance + """ + update multiples rows of table: "fee_grant_allowance" + """ + update_fee_grant_allowance_many( + """updates to execute, in order""" + updates: [fee_grant_allowance_updates!]! + ): [fee_grant_allowance_mutation_response] + """ update data of the table: "feemodel_params" """ @@ -7848,6 +8880,14 @@ type mutation_root { pk_columns: feemodel_params_pk_columns_input! ): feemodel_params + """ + update multiples rows of table: "feemodel_params" + """ + update_feemodel_params_many( + """updates to execute, in order""" + updates: [feemodel_params_updates!]! + ): [feemodel_params_mutation_response] + """ update data of the table: "genesis" """ @@ -7874,6 +8914,14 @@ type mutation_root { pk_columns: genesis_pk_columns_input! ): genesis + """ + update multiples rows of table: "genesis" + """ + update_genesis_many( + """updates to execute, in order""" + updates: [genesis_updates!]! + ): [genesis_mutation_response] + """ update data of the table: "gov_params" """ @@ -7942,6 +8990,14 @@ type mutation_root { pk_columns: gov_params_pk_columns_input! ): gov_params + """ + update multiples rows of table: "gov_params" + """ + update_gov_params_many( + """updates to execute, in order""" + updates: [gov_params_updates!]! + ): [gov_params_mutation_response] + """ update data of the table: "inflation" """ @@ -7968,6 +9024,14 @@ type mutation_root { pk_columns: inflation_pk_columns_input! ): inflation + """ + update multiples rows of table: "inflation" + """ + update_inflation_many( + """updates to execute, in order""" + updates: [inflation_updates!]! + ): [inflation_mutation_response] + """ update data of the table: "message" """ @@ -8003,6 +9067,14 @@ type mutation_root { where: message_bool_exp! ): message_mutation_response + """ + update multiples rows of table: "message" + """ + update_message_many( + """updates to execute, in order""" + updates: [message_updates!]! + ): [message_mutation_response] + """ update data of the table: "mint_params" """ @@ -8071,6 +9143,14 @@ type mutation_root { pk_columns: mint_params_pk_columns_input! ): mint_params + """ + update multiples rows of table: "mint_params" + """ + update_mint_params_many( + """updates to execute, in order""" + updates: [mint_params_updates!]! + ): [mint_params_mutation_response] + """ update data of the table: "modules" """ @@ -8091,6 +9171,14 @@ type mutation_root { pk_columns: modules_pk_columns_input! ): modules + """ + update multiples rows of table: "modules" + """ + update_modules_many( + """updates to execute, in order""" + updates: [modules_updates!]! + ): [modules_mutation_response] + """ update data of the table: "pre_commit" """ @@ -8105,6 +9193,14 @@ type mutation_root { where: pre_commit_bool_exp! ): pre_commit_mutation_response + """ + update multiples rows of table: "pre_commit" + """ + update_pre_commit_many( + """updates to execute, in order""" + updates: [pre_commit_updates!]! + ): [pre_commit_mutation_response] + """ update data of the table: "proposal" """ @@ -8187,6 +9283,22 @@ type mutation_root { where: proposal_deposit_bool_exp! ): proposal_deposit_mutation_response + """ + update multiples rows of table: "proposal_deposit" + """ + update_proposal_deposit_many( + """updates to execute, in order""" + updates: [proposal_deposit_updates!]! + ): [proposal_deposit_mutation_response] + + """ + update multiples rows of table: "proposal" + """ + update_proposal_many( + """updates to execute, in order""" + updates: [proposal_updates!]! + ): [proposal_mutation_response] + """ update data of the table: "proposal_staking_pool_snapshot" """ @@ -8213,6 +9325,14 @@ type mutation_root { pk_columns: proposal_staking_pool_snapshot_pk_columns_input! ): proposal_staking_pool_snapshot + """ + update multiples rows of table: "proposal_staking_pool_snapshot" + """ + update_proposal_staking_pool_snapshot_many( + """updates to execute, in order""" + updates: [proposal_staking_pool_snapshot_updates!]! + ): [proposal_staking_pool_snapshot_mutation_response] + """ update data of the table: "proposal_tally_result" """ @@ -8239,6 +9359,14 @@ type mutation_root { pk_columns: proposal_tally_result_pk_columns_input! ): proposal_tally_result + """ + update multiples rows of table: "proposal_tally_result" + """ + update_proposal_tally_result_many( + """updates to execute, in order""" + updates: [proposal_tally_result_updates!]! + ): [proposal_tally_result_mutation_response] + """ update data of the table: "proposal_validator_status_snapshot" """ @@ -8265,6 +9393,14 @@ type mutation_root { pk_columns: proposal_validator_status_snapshot_pk_columns_input! ): proposal_validator_status_snapshot + """ + update multiples rows of table: "proposal_validator_status_snapshot" + """ + update_proposal_validator_status_snapshot_many( + """updates to execute, in order""" + updates: [proposal_validator_status_snapshot_updates!]! + ): [proposal_validator_status_snapshot_mutation_response] + """ update data of the table: "proposal_vote" """ @@ -8279,6 +9415,14 @@ type mutation_root { where: proposal_vote_bool_exp! ): proposal_vote_mutation_response + """ + update multiples rows of table: "proposal_vote" + """ + update_proposal_vote_many( + """updates to execute, in order""" + updates: [proposal_vote_updates!]! + ): [proposal_vote_mutation_response] + """ update data of the table: "slashing_params" """ @@ -8347,6 +9491,36 @@ type mutation_root { pk_columns: slashing_params_pk_columns_input! ): slashing_params + """ + update multiples rows of table: "slashing_params" + """ + update_slashing_params_many( + """updates to execute, in order""" + updates: [slashing_params_updates!]! + ): [slashing_params_mutation_response] + + """ + update data of the table: "software_upgrade_plan" + """ + update_software_upgrade_plan( + """increments the numeric columns with given value of the filtered values""" + _inc: software_upgrade_plan_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: software_upgrade_plan_set_input + + """filter the rows which have to be updated""" + where: software_upgrade_plan_bool_exp! + ): software_upgrade_plan_mutation_response + + """ + update multiples rows of table: "software_upgrade_plan" + """ + update_software_upgrade_plan_many( + """updates to execute, in order""" + updates: [software_upgrade_plan_updates!]! + ): [software_upgrade_plan_mutation_response] + """ update data of the table: "staking_params" """ @@ -8415,6 +9589,14 @@ type mutation_root { pk_columns: staking_params_pk_columns_input! ): staking_params + """ + update multiples rows of table: "staking_params" + """ + update_staking_params_many( + """updates to execute, in order""" + updates: [staking_params_updates!]! + ): [staking_params_mutation_response] + """ update data of the table: "staking_pool" """ @@ -8441,6 +9623,14 @@ type mutation_root { pk_columns: staking_pool_pk_columns_input! ): staking_pool + """ + update multiples rows of table: "staking_pool" + """ + update_staking_pool_many( + """updates to execute, in order""" + updates: [staking_pool_updates!]! + ): [staking_pool_mutation_response] + """ update data of the table: "supply" """ @@ -8467,6 +9657,14 @@ type mutation_root { pk_columns: supply_pk_columns_input! ): supply + """ + update multiples rows of table: "supply" + """ + update_supply_many( + """updates to execute, in order""" + updates: [supply_updates!]! + ): [supply_mutation_response] + """ update data of the table: "token" """ @@ -8478,6 +9676,14 @@ type mutation_root { where: token_bool_exp! ): token_mutation_response + """ + update multiples rows of table: "token" + """ + update_token_many( + """updates to execute, in order""" + updates: [token_updates!]! + ): [token_mutation_response] + """ update data of the table: "token_price" """ @@ -8530,6 +9736,22 @@ type mutation_root { pk_columns: token_price_history_pk_columns_input! ): token_price_history + """ + update multiples rows of table: "token_price_history" + """ + update_token_price_history_many( + """updates to execute, in order""" + updates: [token_price_history_updates!]! + ): [token_price_history_mutation_response] + + """ + update multiples rows of table: "token_price" + """ + update_token_price_many( + """updates to execute, in order""" + updates: [token_price_updates!]! + ): [token_price_mutation_response] + """ update data of the table: "token_unit" """ @@ -8544,6 +9766,14 @@ type mutation_root { where: token_unit_bool_exp! ): token_unit_mutation_response + """ + update multiples rows of table: "token_unit" + """ + update_token_unit_many( + """updates to execute, in order""" + updates: [token_unit_updates!]! + ): [token_unit_mutation_response] + """ update data of the table: "transaction" """ @@ -8579,6 +9809,14 @@ type mutation_root { where: transaction_bool_exp! ): transaction_mutation_response + """ + update multiples rows of table: "transaction" + """ + update_transaction_many( + """updates to execute, in order""" + updates: [transaction_updates!]! + ): [transaction_mutation_response] + """ update data of the table: "validator" """ @@ -8625,6 +9863,14 @@ type mutation_root { pk_columns: validator_commission_pk_columns_input! ): validator_commission + """ + update multiples rows of table: "validator_commission" + """ + update_validator_commission_many( + """updates to execute, in order""" + updates: [validator_commission_updates!]! + ): [validator_commission_mutation_response] + """ update data of the table: "validator_description" """ @@ -8651,6 +9897,14 @@ type mutation_root { pk_columns: validator_description_pk_columns_input! ): validator_description + """ + update multiples rows of table: "validator_description" + """ + update_validator_description_many( + """updates to execute, in order""" + updates: [validator_description_updates!]! + ): [validator_description_mutation_response] + """ update data of the table: "validator_info" """ @@ -8677,6 +9931,22 @@ type mutation_root { pk_columns: validator_info_pk_columns_input! ): validator_info + """ + update multiples rows of table: "validator_info" + """ + update_validator_info_many( + """updates to execute, in order""" + updates: [validator_info_updates!]! + ): [validator_info_mutation_response] + + """ + update multiples rows of table: "validator" + """ + update_validator_many( + """updates to execute, in order""" + updates: [validator_updates!]! + ): [validator_mutation_response] + """ update data of the table: "validator_signing_info" """ @@ -8703,6 +9973,14 @@ type mutation_root { pk_columns: validator_signing_info_pk_columns_input! ): validator_signing_info + """ + update multiples rows of table: "validator_signing_info" + """ + update_validator_signing_info_many( + """updates to execute, in order""" + updates: [validator_signing_info_updates!]! + ): [validator_signing_info_mutation_response] + """ update data of the table: "validator_status" """ @@ -8729,6 +10007,14 @@ type mutation_root { pk_columns: validator_status_pk_columns_input! ): validator_status + """ + update multiples rows of table: "validator_status" + """ + update_validator_status_many( + """updates to execute, in order""" + updates: [validator_status_updates!]! + ): [validator_status_mutation_response] + """ update data of the table: "validator_voting_power" """ @@ -8755,6 +10041,14 @@ type mutation_root { pk_columns: validator_voting_power_pk_columns_input! ): validator_voting_power + """ + update multiples rows of table: "validator_voting_power" + """ + update_validator_voting_power_many( + """updates to execute, in order""" + updates: [validator_voting_power_updates!]! + ): [validator_voting_power_mutation_response] + """ update data of the table: "vesting_account" """ @@ -8781,6 +10075,14 @@ type mutation_root { pk_columns: vesting_account_pk_columns_input! ): vesting_account + """ + update multiples rows of table: "vesting_account" + """ + update_vesting_account_many( + """updates to execute, in order""" + updates: [vesting_account_updates!]! + ): [vesting_account_mutation_response] + """ update data of the table: "vesting_period" """ @@ -8794,6 +10096,14 @@ type mutation_root { """filter the rows which have to be updated""" where: vesting_period_bool_exp! ): vesting_period_mutation_response + + """ + update multiples rows of table: "vesting_period" + """ + update_vesting_period_many( + """updates to execute, in order""" + updates: [vesting_period_updates!]! + ): [vesting_period_mutation_response] } scalar numeric @@ -8856,6 +10166,17 @@ type pre_commit_aggregate { nodes: [pre_commit!]! } +input pre_commit_aggregate_bool_exp { + count: pre_commit_aggregate_bool_exp_count +} + +input pre_commit_aggregate_bool_exp_count { + arguments: [pre_commit_select_column!] + distinct: Boolean + filter: pre_commit_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "pre_commit" """ @@ -8896,7 +10217,7 @@ input type for inserting array relation for remote table "pre_commit" input pre_commit_arr_rel_insert_input { data: [pre_commit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: pre_commit_on_conflict } @@ -8935,7 +10256,9 @@ input pre_commit_bool_exp { unique or primary key constraints on table "pre_commit" """ enum pre_commit_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address", "timestamp" + """ pre_commit_validator_address_timestamp_key } @@ -9012,7 +10335,7 @@ type pre_commit_mutation_response { } """ -on conflict condition type for table "pre_commit" +on_conflict condition type for table "pre_commit" """ input pre_commit_on_conflict { constraint: pre_commit_constraint! @@ -9109,6 +10432,26 @@ input pre_commit_stddev_samp_order_by { voting_power: order_by } +""" +Streaming cursor of the table "pre_commit" +""" +input pre_commit_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pre_commit_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pre_commit_stream_cursor_value_input { + height: bigint + proposer_priority: bigint + timestamp: timestamp + validator_address: String + voting_power: bigint +} + """aggregate sum on columns""" type pre_commit_sum_fields { height: bigint @@ -9145,6 +10488,17 @@ enum pre_commit_update_column { voting_power } +input pre_commit_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: pre_commit_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: pre_commit_set_input + + """filter the rows which have to be updated""" + where: pre_commit_bool_exp! +} + """aggregate var_pop on columns""" type pre_commit_var_pop_fields { height: Float @@ -9204,6 +10558,7 @@ type proposal { deposit_end_time: timestamp description: String! id: Int! + metadata: String! """An array relationship""" proposal_deposits( @@ -9240,7 +10595,6 @@ type proposal { """filter the rows returned""" where: proposal_deposit_bool_exp ): proposal_deposit_aggregate! - proposal_route: String! """An object relationship""" proposal_tally_result: proposal_tally_result @@ -9280,7 +10634,6 @@ type proposal { """filter the rows returned""" where: proposal_tally_result_bool_exp ): proposal_tally_result_aggregate! - proposal_type: String! """An array relationship""" proposal_votes( @@ -9375,6 +10728,17 @@ type proposal_aggregate { nodes: [proposal!]! } +input proposal_aggregate_bool_exp { + count: proposal_aggregate_bool_exp_count +} + +input proposal_aggregate_bool_exp_count { + arguments: [proposal_select_column!] + distinct: Boolean + filter: proposal_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "proposal" """ @@ -9420,7 +10784,7 @@ input type for inserting array relation for remote table "proposal" input proposal_arr_rel_insert_input { data: [proposal_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_on_conflict } @@ -9447,12 +10811,14 @@ input proposal_bool_exp { deposit_end_time: timestamp_comparison_exp description: String_comparison_exp id: Int_comparison_exp + metadata: String_comparison_exp proposal_deposits: proposal_deposit_bool_exp - proposal_route: String_comparison_exp + proposal_deposits_aggregate: proposal_deposit_aggregate_bool_exp proposal_tally_result: proposal_tally_result_bool_exp proposal_tally_results: proposal_tally_result_bool_exp - proposal_type: String_comparison_exp + proposal_tally_results_aggregate: proposal_tally_result_aggregate_bool_exp proposal_votes: proposal_vote_bool_exp + proposal_votes_aggregate: proposal_vote_aggregate_bool_exp proposer: account_bool_exp proposer_address: String_comparison_exp staking_pool_snapshot: proposal_staking_pool_snapshot_bool_exp @@ -9460,6 +10826,7 @@ input proposal_bool_exp { submit_time: timestamp_comparison_exp title: String_comparison_exp validator_status_snapshots: proposal_validator_status_snapshot_bool_exp + validator_status_snapshots_aggregate: proposal_validator_status_snapshot_aggregate_bool_exp voting_end_time: timestamp_comparison_exp voting_start_time: timestamp_comparison_exp } @@ -9468,7 +10835,9 @@ input proposal_bool_exp { unique or primary key constraints on table "proposal" """ enum proposal_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ proposal_pkey } @@ -9497,7 +10866,7 @@ input proposal_delete_key_input { columns and relationships of "proposal_deposit" """ type proposal_deposit { - amount: _coin + amount: [coin!] """An object relationship""" block: block @@ -9510,6 +10879,8 @@ type proposal_deposit { """An object relationship""" proposal: proposal! proposal_id: Int! + timestamp: timestamp + transaction_hash: String! } """ @@ -9520,6 +10891,17 @@ type proposal_deposit_aggregate { nodes: [proposal_deposit!]! } +input proposal_deposit_aggregate_bool_exp { + count: proposal_deposit_aggregate_bool_exp_count +} + +input proposal_deposit_aggregate_bool_exp_count { + arguments: [proposal_deposit_select_column!] + distinct: Boolean + filter: proposal_deposit_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "proposal_deposit" """ @@ -9560,7 +10942,7 @@ input type for inserting array relation for remote table "proposal_deposit" input proposal_deposit_arr_rel_insert_input { data: [proposal_deposit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_deposit_on_conflict } @@ -9585,20 +10967,24 @@ input proposal_deposit_bool_exp { _and: [proposal_deposit_bool_exp!] _not: proposal_deposit_bool_exp _or: [proposal_deposit_bool_exp!] - amount: _coin_comparison_exp + amount: coin_array_comparison_exp block: block_bool_exp depositor: account_bool_exp depositor_address: String_comparison_exp height: bigint_comparison_exp proposal: proposal_bool_exp proposal_id: Int_comparison_exp + timestamp: timestamp_comparison_exp + transaction_hash: String_comparison_exp } """ unique or primary key constraints on table "proposal_deposit" """ enum proposal_deposit_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "transaction_hash", "proposal_id", "depositor_address" + """ unique_deposit } @@ -9614,45 +11000,59 @@ input proposal_deposit_inc_input { input type for inserting data into table "proposal_deposit" """ input proposal_deposit_insert_input { - amount: _coin + amount: [coin!] block: block_obj_rel_insert_input depositor: account_obj_rel_insert_input depositor_address: String height: bigint proposal: proposal_obj_rel_insert_input proposal_id: Int + timestamp: timestamp + transaction_hash: String } """aggregate max on columns""" type proposal_deposit_max_fields { + amount: [coin!] depositor_address: String height: bigint proposal_id: Int + timestamp: timestamp + transaction_hash: String } """ order by max() on columns of table "proposal_deposit" """ input proposal_deposit_max_order_by { + amount: order_by depositor_address: order_by height: order_by proposal_id: order_by + timestamp: order_by + transaction_hash: order_by } """aggregate min on columns""" type proposal_deposit_min_fields { + amount: [coin!] depositor_address: String height: bigint proposal_id: Int + timestamp: timestamp + transaction_hash: String } """ order by min() on columns of table "proposal_deposit" """ input proposal_deposit_min_order_by { + amount: order_by depositor_address: order_by height: order_by proposal_id: order_by + timestamp: order_by + transaction_hash: order_by } """ @@ -9667,7 +11067,7 @@ type proposal_deposit_mutation_response { } """ -on conflict condition type for table "proposal_deposit" +on_conflict condition type for table "proposal_deposit" """ input proposal_deposit_on_conflict { constraint: proposal_deposit_constraint! @@ -9684,6 +11084,8 @@ input proposal_deposit_order_by { height: order_by proposal: proposal_order_by proposal_id: order_by + timestamp: order_by + transaction_hash: order_by } """ @@ -9701,16 +11103,24 @@ enum proposal_deposit_select_column { """column name""" proposal_id + + """column name""" + timestamp + + """column name""" + transaction_hash } """ input type for updating data in table "proposal_deposit" """ input proposal_deposit_set_input { - amount: _coin + amount: [coin!] depositor_address: String height: bigint proposal_id: Int + timestamp: timestamp + transaction_hash: String } """aggregate stddev on columns""" @@ -9755,8 +11165,29 @@ input proposal_deposit_stddev_samp_order_by { proposal_id: order_by } -"""aggregate sum on columns""" -type proposal_deposit_sum_fields { +""" +Streaming cursor of the table "proposal_deposit" +""" +input proposal_deposit_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_deposit_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_deposit_stream_cursor_value_input { + amount: [coin!] + depositor_address: String + height: bigint + proposal_id: Int + timestamp: timestamp + transaction_hash: String +} + +"""aggregate sum on columns""" +type proposal_deposit_sum_fields { height: bigint proposal_id: Int } @@ -9784,6 +11215,23 @@ enum proposal_deposit_update_column { """column name""" proposal_id + + """column name""" + timestamp + + """column name""" + transaction_hash +} + +input proposal_deposit_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_deposit_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_deposit_set_input + + """filter the rows which have to be updated""" + where: proposal_deposit_bool_exp! } """aggregate var_pop on columns""" @@ -9843,11 +11291,10 @@ input proposal_insert_input { deposit_end_time: timestamp description: String id: Int + metadata: String proposal_deposits: proposal_deposit_arr_rel_insert_input - proposal_route: String proposal_tally_result: proposal_tally_result_obj_rel_insert_input proposal_tally_results: proposal_tally_result_arr_rel_insert_input - proposal_type: String proposal_votes: proposal_vote_arr_rel_insert_input proposer: account_obj_rel_insert_input proposer_address: String @@ -9865,8 +11312,7 @@ type proposal_max_fields { deposit_end_time: timestamp description: String id: Int - proposal_route: String - proposal_type: String + metadata: String proposer_address: String status: String submit_time: timestamp @@ -9882,8 +11328,7 @@ input proposal_max_order_by { deposit_end_time: order_by description: order_by id: order_by - proposal_route: order_by - proposal_type: order_by + metadata: order_by proposer_address: order_by status: order_by submit_time: order_by @@ -9897,8 +11342,7 @@ type proposal_min_fields { deposit_end_time: timestamp description: String id: Int - proposal_route: String - proposal_type: String + metadata: String proposer_address: String status: String submit_time: timestamp @@ -9914,8 +11358,7 @@ input proposal_min_order_by { deposit_end_time: order_by description: order_by id: order_by - proposal_route: order_by - proposal_type: order_by + metadata: order_by proposer_address: order_by status: order_by submit_time: order_by @@ -9941,12 +11384,12 @@ input type for inserting object relation for remote table "proposal" input proposal_obj_rel_insert_input { data: proposal_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_on_conflict } """ -on conflict condition type for table "proposal" +on_conflict condition type for table "proposal" """ input proposal_on_conflict { constraint: proposal_constraint! @@ -9960,11 +11403,10 @@ input proposal_order_by { deposit_end_time: order_by description: order_by id: order_by + metadata: order_by proposal_deposits_aggregate: proposal_deposit_aggregate_order_by - proposal_route: order_by proposal_tally_result: proposal_tally_result_order_by proposal_tally_results_aggregate: proposal_tally_result_aggregate_order_by - proposal_type: order_by proposal_votes_aggregate: proposal_vote_aggregate_order_by proposer: account_order_by proposer_address: order_by @@ -10004,10 +11446,7 @@ enum proposal_select_column { id """column name""" - proposal_route - - """column name""" - proposal_type + metadata """column name""" proposer_address @@ -10036,8 +11475,7 @@ input proposal_set_input { deposit_end_time: timestamp description: String id: Int - proposal_route: String - proposal_type: String + metadata: String proposer_address: String status: String submit_time: timestamp @@ -10108,7 +11546,9 @@ input proposal_staking_pool_snapshot_bool_exp { unique or primary key constraints on table "proposal_staking_pool_snapshot" """ enum proposal_staking_pool_snapshot_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "proposal_id" + """ unique_staking_pool_snapshot } @@ -10164,12 +11604,12 @@ input type for inserting object relation for remote table "proposal_staking_pool input proposal_staking_pool_snapshot_obj_rel_insert_input { data: proposal_staking_pool_snapshot_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_staking_pool_snapshot_on_conflict } """ -on conflict condition type for table "proposal_staking_pool_snapshot" +on_conflict condition type for table "proposal_staking_pool_snapshot" """ input proposal_staking_pool_snapshot_on_conflict { constraint: proposal_staking_pool_snapshot_constraint! @@ -10238,6 +11678,25 @@ type proposal_staking_pool_snapshot_stddev_samp_fields { proposal_id: Float } +""" +Streaming cursor of the table "proposal_staking_pool_snapshot" +""" +input proposal_staking_pool_snapshot_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_staking_pool_snapshot_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_staking_pool_snapshot_stream_cursor_value_input { + bonded_tokens: String + height: bigint + not_bonded_tokens: String + proposal_id: Int +} + """aggregate sum on columns""" type proposal_staking_pool_snapshot_sum_fields { height: bigint @@ -10261,6 +11720,17 @@ enum proposal_staking_pool_snapshot_update_column { proposal_id } +input proposal_staking_pool_snapshot_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_staking_pool_snapshot_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_staking_pool_snapshot_set_input + + """filter the rows which have to be updated""" + where: proposal_staking_pool_snapshot_bool_exp! +} + """aggregate var_pop on columns""" type proposal_staking_pool_snapshot_var_pop_fields { height: Float @@ -10315,6 +11785,32 @@ input proposal_stddev_samp_order_by { id: order_by } +""" +Streaming cursor of the table "proposal" +""" +input proposal_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_stream_cursor_value_input { + content: jsonb + deposit_end_time: timestamp + description: String + id: Int + metadata: String + proposer_address: String + status: String + submit_time: timestamp + title: String + voting_end_time: timestamp + voting_start_time: timestamp +} + """aggregate sum on columns""" type proposal_sum_fields { id: Int @@ -10350,6 +11846,17 @@ type proposal_tally_result_aggregate { nodes: [proposal_tally_result!]! } +input proposal_tally_result_aggregate_bool_exp { + count: proposal_tally_result_aggregate_bool_exp_count +} + +input proposal_tally_result_aggregate_bool_exp_count { + arguments: [proposal_tally_result_select_column!] + distinct: Boolean + filter: proposal_tally_result_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "proposal_tally_result" """ @@ -10390,7 +11897,7 @@ input type for inserting array relation for remote table "proposal_tally_result" input proposal_tally_result_arr_rel_insert_input { data: [proposal_tally_result_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_tally_result_on_conflict } @@ -10428,7 +11935,9 @@ input proposal_tally_result_bool_exp { unique or primary key constraints on table "proposal_tally_result" """ enum proposal_tally_result_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "proposal_id" + """ unique_tally_result } @@ -10514,12 +12023,12 @@ input type for inserting object relation for remote table "proposal_tally_result input proposal_tally_result_obj_rel_insert_input { data: proposal_tally_result_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_tally_result_on_conflict } """ -on conflict condition type for table "proposal_tally_result" +on_conflict condition type for table "proposal_tally_result" """ input proposal_tally_result_on_conflict { constraint: proposal_tally_result_constraint! @@ -10620,6 +12129,27 @@ input proposal_tally_result_stddev_samp_order_by { proposal_id: order_by } +""" +Streaming cursor of the table "proposal_tally_result" +""" +input proposal_tally_result_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_tally_result_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_tally_result_stream_cursor_value_input { + abstain: String + height: bigint + no: String + no_with_veto: String + proposal_id: Int + yes: String +} + """aggregate sum on columns""" type proposal_tally_result_sum_fields { height: bigint @@ -10657,6 +12187,17 @@ enum proposal_tally_result_update_column { yes } +input proposal_tally_result_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_tally_result_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_tally_result_set_input + + """filter the rows which have to be updated""" + where: proposal_tally_result_bool_exp! +} + """aggregate var_pop on columns""" type proposal_tally_result_var_pop_fields { height: Float @@ -10716,10 +12257,7 @@ enum proposal_update_column { id """column name""" - proposal_route - - """column name""" - proposal_type + metadata """column name""" proposer_address @@ -10740,6 +12278,38 @@ enum proposal_update_column { voting_start_time } +input proposal_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: proposal_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: proposal_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: proposal_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: proposal_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: proposal_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_set_input + + """filter the rows which have to be updated""" + where: proposal_bool_exp! +} + """ columns and relationships of "proposal_validator_status_snapshot" """ @@ -10767,6 +12337,33 @@ type proposal_validator_status_snapshot_aggregate { nodes: [proposal_validator_status_snapshot!]! } +input proposal_validator_status_snapshot_aggregate_bool_exp { + bool_and: proposal_validator_status_snapshot_aggregate_bool_exp_bool_and + bool_or: proposal_validator_status_snapshot_aggregate_bool_exp_bool_or + count: proposal_validator_status_snapshot_aggregate_bool_exp_count +} + +input proposal_validator_status_snapshot_aggregate_bool_exp_bool_and { + arguments: proposal_validator_status_snapshot_select_column_proposal_validator_status_snapshot_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: proposal_validator_status_snapshot_bool_exp + predicate: Boolean_comparison_exp! +} + +input proposal_validator_status_snapshot_aggregate_bool_exp_bool_or { + arguments: proposal_validator_status_snapshot_select_column_proposal_validator_status_snapshot_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: proposal_validator_status_snapshot_bool_exp + predicate: Boolean_comparison_exp! +} + +input proposal_validator_status_snapshot_aggregate_bool_exp_count { + arguments: [proposal_validator_status_snapshot_select_column!] + distinct: Boolean + filter: proposal_validator_status_snapshot_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "proposal_validator_status_snapshot" """ @@ -10807,7 +12404,7 @@ input type for inserting array relation for remote table "proposal_validator_sta input proposal_validator_status_snapshot_arr_rel_insert_input { data: [proposal_validator_status_snapshot_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_validator_status_snapshot_on_conflict } @@ -10853,10 +12450,14 @@ input proposal_validator_status_snapshot_bool_exp { unique or primary key constraints on table "proposal_validator_status_snapshot" """ enum proposal_validator_status_snapshot_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ proposal_validator_status_snapshot_pkey - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address", "proposal_id" + """ unique_validator_status_snapshot } @@ -10947,12 +12548,12 @@ input type for inserting object relation for remote table "proposal_validator_st input proposal_validator_status_snapshot_obj_rel_insert_input { data: proposal_validator_status_snapshot_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_validator_status_snapshot_on_conflict } """ -on conflict condition type for table "proposal_validator_status_snapshot" +on_conflict condition type for table "proposal_validator_status_snapshot" """ input proposal_validator_status_snapshot_on_conflict { constraint: proposal_validator_status_snapshot_constraint! @@ -11008,6 +12609,22 @@ enum proposal_validator_status_snapshot_select_column { voting_power } +""" +select "proposal_validator_status_snapshot_aggregate_bool_exp_bool_and_arguments_columns" columns of table "proposal_validator_status_snapshot" +""" +enum proposal_validator_status_snapshot_select_column_proposal_validator_status_snapshot_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + jailed +} + +""" +select "proposal_validator_status_snapshot_aggregate_bool_exp_bool_or_arguments_columns" columns of table "proposal_validator_status_snapshot" +""" +enum proposal_validator_status_snapshot_select_column_proposal_validator_status_snapshot_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + jailed +} + """ input type for updating data in table "proposal_validator_status_snapshot" """ @@ -11081,6 +12698,28 @@ input proposal_validator_status_snapshot_stddev_samp_order_by { voting_power: order_by } +""" +Streaming cursor of the table "proposal_validator_status_snapshot" +""" +input proposal_validator_status_snapshot_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_validator_status_snapshot_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_validator_status_snapshot_stream_cursor_value_input { + height: bigint + id: Int + jailed: Boolean + proposal_id: Int + status: Int + validator_address: String + voting_power: bigint +} + """aggregate sum on columns""" type proposal_validator_status_snapshot_sum_fields { height: bigint @@ -11127,6 +12766,17 @@ enum proposal_validator_status_snapshot_update_column { voting_power } +input proposal_validator_status_snapshot_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_validator_status_snapshot_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_validator_status_snapshot_set_input + + """filter the rows which have to be updated""" + where: proposal_validator_status_snapshot_bool_exp! +} + """aggregate var_pop on columns""" type proposal_validator_status_snapshot_var_pop_fields { height: Float @@ -11231,14 +12881,16 @@ type proposal_vote { account: account! """An object relationship""" - block: block! + block: block height: bigint! option: String! """An object relationship""" proposal: proposal! proposal_id: Int! + timestamp: timestamp voter_address: String! + weight: String! } """ @@ -11249,6 +12901,17 @@ type proposal_vote_aggregate { nodes: [proposal_vote!]! } +input proposal_vote_aggregate_bool_exp { + count: proposal_vote_aggregate_bool_exp_count +} + +input proposal_vote_aggregate_bool_exp_count { + arguments: [proposal_vote_select_column!] + distinct: Boolean + filter: proposal_vote_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "proposal_vote" """ @@ -11289,7 +12952,7 @@ input type for inserting array relation for remote table "proposal_vote" input proposal_vote_arr_rel_insert_input { data: [proposal_vote_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: proposal_vote_on_conflict } @@ -11320,14 +12983,18 @@ input proposal_vote_bool_exp { option: String_comparison_exp proposal: proposal_bool_exp proposal_id: Int_comparison_exp + timestamp: timestamp_comparison_exp voter_address: String_comparison_exp + weight: String_comparison_exp } """ unique or primary key constraints on table "proposal_vote" """ enum proposal_vote_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "voter_address", "option", "proposal_id" + """ unique_vote } @@ -11349,7 +13016,9 @@ input proposal_vote_insert_input { option: String proposal: proposal_obj_rel_insert_input proposal_id: Int + timestamp: timestamp voter_address: String + weight: String } """aggregate max on columns""" @@ -11357,7 +13026,9 @@ type proposal_vote_max_fields { height: bigint option: String proposal_id: Int + timestamp: timestamp voter_address: String + weight: String } """ @@ -11367,7 +13038,9 @@ input proposal_vote_max_order_by { height: order_by option: order_by proposal_id: order_by + timestamp: order_by voter_address: order_by + weight: order_by } """aggregate min on columns""" @@ -11375,7 +13048,9 @@ type proposal_vote_min_fields { height: bigint option: String proposal_id: Int + timestamp: timestamp voter_address: String + weight: String } """ @@ -11385,7 +13060,9 @@ input proposal_vote_min_order_by { height: order_by option: order_by proposal_id: order_by + timestamp: order_by voter_address: order_by + weight: order_by } """ @@ -11400,7 +13077,7 @@ type proposal_vote_mutation_response { } """ -on conflict condition type for table "proposal_vote" +on_conflict condition type for table "proposal_vote" """ input proposal_vote_on_conflict { constraint: proposal_vote_constraint! @@ -11416,7 +13093,9 @@ input proposal_vote_order_by { option: order_by proposal: proposal_order_by proposal_id: order_by + timestamp: order_by voter_address: order_by + weight: order_by } """ @@ -11432,8 +13111,14 @@ enum proposal_vote_select_column { """column name""" proposal_id + """column name""" + timestamp + """column name""" voter_address + + """column name""" + weight } """ @@ -11443,7 +13128,9 @@ input proposal_vote_set_input { height: bigint option: String proposal_id: Int + timestamp: timestamp voter_address: String + weight: String } """aggregate stddev on columns""" @@ -11488,6 +13175,27 @@ input proposal_vote_stddev_samp_order_by { proposal_id: order_by } +""" +Streaming cursor of the table "proposal_vote" +""" +input proposal_vote_stream_cursor_input { + """Stream column input with initial value""" + initial_value: proposal_vote_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input proposal_vote_stream_cursor_value_input { + height: bigint + option: String + proposal_id: Int + timestamp: timestamp + voter_address: String + weight: String +} + """aggregate sum on columns""" type proposal_vote_sum_fields { height: bigint @@ -11515,8 +13223,25 @@ enum proposal_vote_update_column { """column name""" proposal_id + """column name""" + timestamp + """column name""" voter_address + + """column name""" + weight +} + +input proposal_vote_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: proposal_vote_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: proposal_vote_set_input + + """filter the rows which have to be updated""" + where: proposal_vote_bool_exp! } """aggregate var_pop on columns""" @@ -12878,6 +14603,46 @@ type query_root { """fetch data from the table: "slashing_params" using primary key columns""" slashing_params_by_pk(one_row_id: Boolean!): slashing_params + """ + fetch data from the table: "software_upgrade_plan" + """ + software_upgrade_plan( + """distinct select on columns""" + distinct_on: [software_upgrade_plan_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [software_upgrade_plan_order_by!] + + """filter the rows returned""" + where: software_upgrade_plan_bool_exp + ): [software_upgrade_plan!]! + + """ + fetch aggregated fields from the table: "software_upgrade_plan" + """ + software_upgrade_plan_aggregate( + """distinct select on columns""" + distinct_on: [software_upgrade_plan_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [software_upgrade_plan_order_by!] + + """filter the rows returned""" + where: software_upgrade_plan_bool_exp + ): software_upgrade_plan_aggregate! + """ fetch data from the table: "staking_params" """ @@ -13673,7 +15438,9 @@ input slashing_params_bool_exp { unique or primary key constraints on table "slashing_params" """ enum slashing_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ slashing_params_pkey } @@ -13736,7 +15503,7 @@ type slashing_params_mutation_response { } """ -on conflict condition type for table "slashing_params" +on_conflict condition type for table "slashing_params" """ input slashing_params_on_conflict { constraint: slashing_params_constraint! @@ -13799,6 +15566,24 @@ type slashing_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "slashing_params" +""" +input slashing_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: slashing_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input slashing_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type slashing_params_sum_fields { height: bigint @@ -13818,6 +15603,38 @@ enum slashing_params_update_column { params } +input slashing_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: slashing_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: slashing_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: slashing_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: slashing_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: slashing_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: slashing_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: slashing_params_set_input + + """filter the rows which have to be updated""" + where: slashing_params_bool_exp! +} + """aggregate var_pop on columns""" type slashing_params_var_pop_fields { height: Float @@ -13851,27 +15668,298 @@ input smallint_comparison_exp { } """ -columns and relationships of "staking_params" +columns and relationships of "software_upgrade_plan" """ -type staking_params { +type software_upgrade_plan { height: bigint! - one_row_id: Boolean! - params( - """JSON select path""" - path: String - ): jsonb! + info: String! + plan_name: String! + + """An object relationship""" + proposal: proposal + proposal_id: Int + upgrade_height: bigint! } """ -aggregated selection of "staking_params" +aggregated selection of "software_upgrade_plan" """ -type staking_params_aggregate { - aggregate: staking_params_aggregate_fields - nodes: [staking_params!]! +type software_upgrade_plan_aggregate { + aggregate: software_upgrade_plan_aggregate_fields + nodes: [software_upgrade_plan!]! } """ -aggregate fields of "staking_params" +aggregate fields of "software_upgrade_plan" +""" +type software_upgrade_plan_aggregate_fields { + avg: software_upgrade_plan_avg_fields + count(columns: [software_upgrade_plan_select_column!], distinct: Boolean): Int! + max: software_upgrade_plan_max_fields + min: software_upgrade_plan_min_fields + stddev: software_upgrade_plan_stddev_fields + stddev_pop: software_upgrade_plan_stddev_pop_fields + stddev_samp: software_upgrade_plan_stddev_samp_fields + sum: software_upgrade_plan_sum_fields + var_pop: software_upgrade_plan_var_pop_fields + var_samp: software_upgrade_plan_var_samp_fields + variance: software_upgrade_plan_variance_fields +} + +"""aggregate avg on columns""" +type software_upgrade_plan_avg_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +""" +Boolean expression to filter rows from the table "software_upgrade_plan". All fields are combined with a logical 'AND'. +""" +input software_upgrade_plan_bool_exp { + _and: [software_upgrade_plan_bool_exp!] + _not: software_upgrade_plan_bool_exp + _or: [software_upgrade_plan_bool_exp!] + height: bigint_comparison_exp + info: String_comparison_exp + plan_name: String_comparison_exp + proposal: proposal_bool_exp + proposal_id: Int_comparison_exp + upgrade_height: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "software_upgrade_plan" +""" +enum software_upgrade_plan_constraint { + """ + unique or primary key constraint on columns "proposal_id" + """ + software_upgrade_plan_proposal_id_key +} + +""" +input type for incrementing numeric columns in table "software_upgrade_plan" +""" +input software_upgrade_plan_inc_input { + height: bigint + proposal_id: Int + upgrade_height: bigint +} + +""" +input type for inserting data into table "software_upgrade_plan" +""" +input software_upgrade_plan_insert_input { + height: bigint + info: String + plan_name: String + proposal: proposal_obj_rel_insert_input + proposal_id: Int + upgrade_height: bigint +} + +"""aggregate max on columns""" +type software_upgrade_plan_max_fields { + height: bigint + info: String + plan_name: String + proposal_id: Int + upgrade_height: bigint +} + +"""aggregate min on columns""" +type software_upgrade_plan_min_fields { + height: bigint + info: String + plan_name: String + proposal_id: Int + upgrade_height: bigint +} + +""" +response of any mutation on the table "software_upgrade_plan" +""" +type software_upgrade_plan_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [software_upgrade_plan!]! +} + +""" +on_conflict condition type for table "software_upgrade_plan" +""" +input software_upgrade_plan_on_conflict { + constraint: software_upgrade_plan_constraint! + update_columns: [software_upgrade_plan_update_column!]! = [] + where: software_upgrade_plan_bool_exp +} + +"""Ordering options when selecting data from "software_upgrade_plan".""" +input software_upgrade_plan_order_by { + height: order_by + info: order_by + plan_name: order_by + proposal: proposal_order_by + proposal_id: order_by + upgrade_height: order_by +} + +""" +select columns of table "software_upgrade_plan" +""" +enum software_upgrade_plan_select_column { + """column name""" + height + + """column name""" + info + + """column name""" + plan_name + + """column name""" + proposal_id + + """column name""" + upgrade_height +} + +""" +input type for updating data in table "software_upgrade_plan" +""" +input software_upgrade_plan_set_input { + height: bigint + info: String + plan_name: String + proposal_id: Int + upgrade_height: bigint +} + +"""aggregate stddev on columns""" +type software_upgrade_plan_stddev_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +"""aggregate stddev_pop on columns""" +type software_upgrade_plan_stddev_pop_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +"""aggregate stddev_samp on columns""" +type software_upgrade_plan_stddev_samp_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +""" +Streaming cursor of the table "software_upgrade_plan" +""" +input software_upgrade_plan_stream_cursor_input { + """Stream column input with initial value""" + initial_value: software_upgrade_plan_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input software_upgrade_plan_stream_cursor_value_input { + height: bigint + info: String + plan_name: String + proposal_id: Int + upgrade_height: bigint +} + +"""aggregate sum on columns""" +type software_upgrade_plan_sum_fields { + height: bigint + proposal_id: Int + upgrade_height: bigint +} + +""" +update columns of table "software_upgrade_plan" +""" +enum software_upgrade_plan_update_column { + """column name""" + height + + """column name""" + info + + """column name""" + plan_name + + """column name""" + proposal_id + + """column name""" + upgrade_height +} + +input software_upgrade_plan_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: software_upgrade_plan_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: software_upgrade_plan_set_input + + """filter the rows which have to be updated""" + where: software_upgrade_plan_bool_exp! +} + +"""aggregate var_pop on columns""" +type software_upgrade_plan_var_pop_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +"""aggregate var_samp on columns""" +type software_upgrade_plan_var_samp_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +"""aggregate variance on columns""" +type software_upgrade_plan_variance_fields { + height: Float + proposal_id: Float + upgrade_height: Float +} + +""" +columns and relationships of "staking_params" +""" +type staking_params { + height: bigint! + one_row_id: Boolean! + params( + """JSON select path""" + path: String + ): jsonb! +} + +""" +aggregated selection of "staking_params" +""" +type staking_params_aggregate { + aggregate: staking_params_aggregate_fields + nodes: [staking_params!]! +} + +""" +aggregate fields of "staking_params" """ type staking_params_aggregate_fields { avg: staking_params_avg_fields @@ -13913,7 +16001,9 @@ input staking_params_bool_exp { unique or primary key constraints on table "staking_params" """ enum staking_params_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ staking_params_pkey } @@ -13976,7 +16066,7 @@ type staking_params_mutation_response { } """ -on conflict condition type for table "staking_params" +on_conflict condition type for table "staking_params" """ input staking_params_on_conflict { constraint: staking_params_constraint! @@ -14039,6 +16129,24 @@ type staking_params_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "staking_params" +""" +input staking_params_stream_cursor_input { + """Stream column input with initial value""" + initial_value: staking_params_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input staking_params_stream_cursor_value_input { + height: bigint + one_row_id: Boolean + params: jsonb +} + """aggregate sum on columns""" type staking_params_sum_fields { height: bigint @@ -14058,6 +16166,38 @@ enum staking_params_update_column { params } +input staking_params_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: staking_params_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: staking_params_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: staking_params_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: staking_params_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: staking_params_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: staking_params_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: staking_params_set_input + + """filter the rows which have to be updated""" + where: staking_params_bool_exp! +} + """aggregate var_pop on columns""" type staking_params_var_pop_fields { height: Float @@ -14081,6 +16221,8 @@ type staking_pool { height: bigint! not_bonded_tokens: String! one_row_id: Boolean! + staked_not_bonded_tokens: String! + unbonding_tokens: String! } """ @@ -14124,13 +16266,17 @@ input staking_pool_bool_exp { height: bigint_comparison_exp not_bonded_tokens: String_comparison_exp one_row_id: Boolean_comparison_exp + staked_not_bonded_tokens: String_comparison_exp + unbonding_tokens: String_comparison_exp } """ unique or primary key constraints on table "staking_pool" """ enum staking_pool_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ staking_pool_pkey } @@ -14149,6 +16295,8 @@ input staking_pool_insert_input { height: bigint not_bonded_tokens: String one_row_id: Boolean + staked_not_bonded_tokens: String + unbonding_tokens: String } """aggregate max on columns""" @@ -14156,6 +16304,8 @@ type staking_pool_max_fields { bonded_tokens: String height: bigint not_bonded_tokens: String + staked_not_bonded_tokens: String + unbonding_tokens: String } """aggregate min on columns""" @@ -14163,6 +16313,8 @@ type staking_pool_min_fields { bonded_tokens: String height: bigint not_bonded_tokens: String + staked_not_bonded_tokens: String + unbonding_tokens: String } """ @@ -14177,7 +16329,7 @@ type staking_pool_mutation_response { } """ -on conflict condition type for table "staking_pool" +on_conflict condition type for table "staking_pool" """ input staking_pool_on_conflict { constraint: staking_pool_constraint! @@ -14191,6 +16343,8 @@ input staking_pool_order_by { height: order_by not_bonded_tokens: order_by one_row_id: order_by + staked_not_bonded_tokens: order_by + unbonding_tokens: order_by } """primary key columns input for table: staking_pool""" @@ -14213,6 +16367,12 @@ enum staking_pool_select_column { """column name""" one_row_id + + """column name""" + staked_not_bonded_tokens + + """column name""" + unbonding_tokens } """ @@ -14223,6 +16383,8 @@ input staking_pool_set_input { height: bigint not_bonded_tokens: String one_row_id: Boolean + staked_not_bonded_tokens: String + unbonding_tokens: String } """aggregate stddev on columns""" @@ -14240,6 +16402,27 @@ type staking_pool_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "staking_pool" +""" +input staking_pool_stream_cursor_input { + """Stream column input with initial value""" + initial_value: staking_pool_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input staking_pool_stream_cursor_value_input { + bonded_tokens: String + height: bigint + not_bonded_tokens: String + one_row_id: Boolean + staked_not_bonded_tokens: String + unbonding_tokens: String +} + """aggregate sum on columns""" type staking_pool_sum_fields { height: bigint @@ -14260,6 +16443,23 @@ enum staking_pool_update_column { """column name""" one_row_id + + """column name""" + staked_not_bonded_tokens + + """column name""" + unbonding_tokens +} + +input staking_pool_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: staking_pool_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: staking_pool_set_input + + """filter the rows which have to be updated""" + where: staking_pool_bool_exp! } """aggregate var_pop on columns""" @@ -14321,6 +16521,20 @@ type subscription_root { """fetch data from the table: "account" using primary key columns""" account_by_pk(address: String!): account + """ + fetch data from the table in a streaming manner: "account" + """ + account_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [account_stream_cursor_input]! + + """filter the rows returned""" + where: account_bool_exp + ): [account!]! + """ fetch data from the table: "assetft_params" """ @@ -14364,6 +16578,20 @@ type subscription_root { """fetch data from the table: "assetft_params" using primary key columns""" assetft_params_by_pk(one_row_id: Boolean!): assetft_params + """ + fetch data from the table in a streaming manner: "assetft_params" + """ + assetft_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [assetft_params_stream_cursor_input]! + + """filter the rows returned""" + where: assetft_params_bool_exp + ): [assetft_params!]! + """ fetch data from the table: "assetnft_params" """ @@ -14407,6 +16635,20 @@ type subscription_root { """fetch data from the table: "assetnft_params" using primary key columns""" assetnft_params_by_pk(one_row_id: Boolean!): assetnft_params + """ + fetch data from the table in a streaming manner: "assetnft_params" + """ + assetnft_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [assetnft_params_stream_cursor_input]! + + """filter the rows returned""" + where: assetnft_params_bool_exp + ): [assetnft_params!]! + """ fetch data from the table: "average_block_time_from_genesis" """ @@ -14452,6 +16694,20 @@ type subscription_root { """ average_block_time_from_genesis_by_pk(one_row_id: Boolean!): average_block_time_from_genesis + """ + fetch data from the table in a streaming manner: "average_block_time_from_genesis" + """ + average_block_time_from_genesis_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [average_block_time_from_genesis_stream_cursor_input]! + + """filter the rows returned""" + where: average_block_time_from_genesis_bool_exp + ): [average_block_time_from_genesis!]! + """ fetch data from the table: "average_block_time_per_day" """ @@ -14497,6 +16753,20 @@ type subscription_root { """ average_block_time_per_day_by_pk(one_row_id: Boolean!): average_block_time_per_day + """ + fetch data from the table in a streaming manner: "average_block_time_per_day" + """ + average_block_time_per_day_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [average_block_time_per_day_stream_cursor_input]! + + """filter the rows returned""" + where: average_block_time_per_day_bool_exp + ): [average_block_time_per_day!]! + """ fetch data from the table: "average_block_time_per_hour" """ @@ -14542,6 +16812,20 @@ type subscription_root { """ average_block_time_per_hour_by_pk(one_row_id: Boolean!): average_block_time_per_hour + """ + fetch data from the table in a streaming manner: "average_block_time_per_hour" + """ + average_block_time_per_hour_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [average_block_time_per_hour_stream_cursor_input]! + + """filter the rows returned""" + where: average_block_time_per_hour_bool_exp + ): [average_block_time_per_hour!]! + """ fetch data from the table: "average_block_time_per_minute" """ @@ -14587,6 +16871,20 @@ type subscription_root { """ average_block_time_per_minute_by_pk(one_row_id: Boolean!): average_block_time_per_minute + """ + fetch data from the table in a streaming manner: "average_block_time_per_minute" + """ + average_block_time_per_minute_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [average_block_time_per_minute_stream_cursor_input]! + + """filter the rows returned""" + where: average_block_time_per_minute_bool_exp + ): [average_block_time_per_minute!]! + """ fetch data from the table: "block" """ @@ -14630,6 +16928,20 @@ type subscription_root { """fetch data from the table: "block" using primary key columns""" block_by_pk(height: bigint!): block + """ + fetch data from the table in a streaming manner: "block" + """ + block_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [block_stream_cursor_input]! + + """filter the rows returned""" + where: block_bool_exp + ): [block!]! + """ fetch data from the table: "community_pool" """ @@ -14673,6 +16985,20 @@ type subscription_root { """fetch data from the table: "community_pool" using primary key columns""" community_pool_by_pk(one_row_id: Boolean!): community_pool + """ + fetch data from the table in a streaming manner: "community_pool" + """ + community_pool_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [community_pool_stream_cursor_input]! + + """filter the rows returned""" + where: community_pool_bool_exp + ): [community_pool!]! + """ fetch data from the table: "customparams_params" """ @@ -14718,6 +17044,20 @@ type subscription_root { """ customparams_params_by_pk(one_row_id: Boolean!): customparams_params + """ + fetch data from the table in a streaming manner: "customparams_params" + """ + customparams_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [customparams_params_stream_cursor_input]! + + """filter the rows returned""" + where: customparams_params_bool_exp + ): [customparams_params!]! + """ fetch data from the table: "distribution_params" """ @@ -14763,6 +17103,20 @@ type subscription_root { """ distribution_params_by_pk(one_row_id: Boolean!): distribution_params + """ + fetch data from the table in a streaming manner: "distribution_params" + """ + distribution_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [distribution_params_stream_cursor_input]! + + """filter the rows returned""" + where: distribution_params_bool_exp + ): [distribution_params!]! + """ fetch data from the table: "double_sign_evidence" """ @@ -14803,6 +17157,20 @@ type subscription_root { where: double_sign_evidence_bool_exp ): double_sign_evidence_aggregate! + """ + fetch data from the table in a streaming manner: "double_sign_evidence" + """ + double_sign_evidence_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [double_sign_evidence_stream_cursor_input]! + + """filter the rows returned""" + where: double_sign_evidence_bool_exp + ): [double_sign_evidence!]! + """ fetch data from the table: "double_sign_vote" """ @@ -14848,6 +17216,20 @@ type subscription_root { """ double_sign_vote_by_pk(id: Int!): double_sign_vote + """ + fetch data from the table in a streaming manner: "double_sign_vote" + """ + double_sign_vote_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [double_sign_vote_stream_cursor_input]! + + """filter the rows returned""" + where: double_sign_vote_bool_exp + ): [double_sign_vote!]! + """ fetch data from the table: "fee_grant_allowance" """ @@ -14893,6 +17275,20 @@ type subscription_root { """ fee_grant_allowance_by_pk(id: Int!): fee_grant_allowance + """ + fetch data from the table in a streaming manner: "fee_grant_allowance" + """ + fee_grant_allowance_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [fee_grant_allowance_stream_cursor_input]! + + """filter the rows returned""" + where: fee_grant_allowance_bool_exp + ): [fee_grant_allowance!]! + """ fetch data from the table: "feemodel_params" """ @@ -14936,6 +17332,20 @@ type subscription_root { """fetch data from the table: "feemodel_params" using primary key columns""" feemodel_params_by_pk(one_row_id: Boolean!): feemodel_params + """ + fetch data from the table in a streaming manner: "feemodel_params" + """ + feemodel_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [feemodel_params_stream_cursor_input]! + + """filter the rows returned""" + where: feemodel_params_bool_exp + ): [feemodel_params!]! + """ fetch data from the table: "genesis" """ @@ -14979,6 +17389,20 @@ type subscription_root { """fetch data from the table: "genesis" using primary key columns""" genesis_by_pk(one_row_id: Boolean!): genesis + """ + fetch data from the table in a streaming manner: "genesis" + """ + genesis_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [genesis_stream_cursor_input]! + + """filter the rows returned""" + where: genesis_bool_exp + ): [genesis!]! + """ fetch data from the table: "gov_params" """ @@ -15022,6 +17446,20 @@ type subscription_root { """fetch data from the table: "gov_params" using primary key columns""" gov_params_by_pk(one_row_id: Boolean!): gov_params + """ + fetch data from the table in a streaming manner: "gov_params" + """ + gov_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [gov_params_stream_cursor_input]! + + """filter the rows returned""" + where: gov_params_bool_exp + ): [gov_params!]! + """ fetch data from the table: "inflation" """ @@ -15065,6 +17503,20 @@ type subscription_root { """fetch data from the table: "inflation" using primary key columns""" inflation_by_pk(one_row_id: Boolean!): inflation + """ + fetch data from the table in a streaming manner: "inflation" + """ + inflation_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [inflation_stream_cursor_input]! + + """filter the rows returned""" + where: inflation_bool_exp + ): [inflation!]! + """ fetch data from the table: "message" """ @@ -15105,6 +17557,20 @@ type subscription_root { where: message_bool_exp ): message_aggregate! + """ + fetch data from the table in a streaming manner: "message" + """ + message_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [message_stream_cursor_input]! + + """filter the rows returned""" + where: message_bool_exp + ): [message!]! + """ execute function "messages_by_address" which returns "message" """ @@ -15198,6 +17664,20 @@ type subscription_root { """fetch data from the table: "mint_params" using primary key columns""" mint_params_by_pk(one_row_id: Boolean!): mint_params + """ + fetch data from the table in a streaming manner: "mint_params" + """ + mint_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [mint_params_stream_cursor_input]! + + """filter the rows returned""" + where: mint_params_bool_exp + ): [mint_params!]! + """ fetch data from the table: "modules" """ @@ -15241,6 +17721,20 @@ type subscription_root { """fetch data from the table: "modules" using primary key columns""" modules_by_pk(module_name: String!): modules + """ + fetch data from the table in a streaming manner: "modules" + """ + modules_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [modules_stream_cursor_input]! + + """filter the rows returned""" + where: modules_bool_exp + ): [modules!]! + """ fetch data from the table: "pre_commit" """ @@ -15281,6 +17775,20 @@ type subscription_root { where: pre_commit_bool_exp ): pre_commit_aggregate! + """ + fetch data from the table in a streaming manner: "pre_commit" + """ + pre_commit_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pre_commit_stream_cursor_input]! + + """filter the rows returned""" + where: pre_commit_bool_exp + ): [pre_commit!]! + """ fetch data from the table: "proposal" """ @@ -15364,6 +17872,20 @@ type subscription_root { where: proposal_deposit_bool_exp ): proposal_deposit_aggregate! + """ + fetch data from the table in a streaming manner: "proposal_deposit" + """ + proposal_deposit_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_deposit_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_deposit_bool_exp + ): [proposal_deposit!]! + """ fetch data from the table: "proposal_staking_pool_snapshot" """ @@ -15409,6 +17931,34 @@ type subscription_root { """ proposal_staking_pool_snapshot_by_pk(proposal_id: Int!): proposal_staking_pool_snapshot + """ + fetch data from the table in a streaming manner: "proposal_staking_pool_snapshot" + """ + proposal_staking_pool_snapshot_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_staking_pool_snapshot_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_staking_pool_snapshot_bool_exp + ): [proposal_staking_pool_snapshot!]! + + """ + fetch data from the table in a streaming manner: "proposal" + """ + proposal_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_bool_exp + ): [proposal!]! + """ fetch data from the table: "proposal_tally_result" """ @@ -15454,6 +18004,20 @@ type subscription_root { """ proposal_tally_result_by_pk(proposal_id: Int!): proposal_tally_result + """ + fetch data from the table in a streaming manner: "proposal_tally_result" + """ + proposal_tally_result_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_tally_result_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_tally_result_bool_exp + ): [proposal_tally_result!]! + """ fetch data from the table: "proposal_validator_status_snapshot" """ @@ -15499,6 +18063,20 @@ type subscription_root { """ proposal_validator_status_snapshot_by_pk(id: Int!): proposal_validator_status_snapshot + """ + fetch data from the table in a streaming manner: "proposal_validator_status_snapshot" + """ + proposal_validator_status_snapshot_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_validator_status_snapshot_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_validator_status_snapshot_bool_exp + ): [proposal_validator_status_snapshot!]! + """ fetch data from the table: "proposal_vote" """ @@ -15539,6 +18117,20 @@ type subscription_root { where: proposal_vote_bool_exp ): proposal_vote_aggregate! + """ + fetch data from the table in a streaming manner: "proposal_vote" + """ + proposal_vote_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [proposal_vote_stream_cursor_input]! + + """filter the rows returned""" + where: proposal_vote_bool_exp + ): [proposal_vote!]! + """ fetch data from the table: "slashing_params" """ @@ -15582,6 +18174,74 @@ type subscription_root { """fetch data from the table: "slashing_params" using primary key columns""" slashing_params_by_pk(one_row_id: Boolean!): slashing_params + """ + fetch data from the table in a streaming manner: "slashing_params" + """ + slashing_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [slashing_params_stream_cursor_input]! + + """filter the rows returned""" + where: slashing_params_bool_exp + ): [slashing_params!]! + + """ + fetch data from the table: "software_upgrade_plan" + """ + software_upgrade_plan( + """distinct select on columns""" + distinct_on: [software_upgrade_plan_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [software_upgrade_plan_order_by!] + + """filter the rows returned""" + where: software_upgrade_plan_bool_exp + ): [software_upgrade_plan!]! + + """ + fetch aggregated fields from the table: "software_upgrade_plan" + """ + software_upgrade_plan_aggregate( + """distinct select on columns""" + distinct_on: [software_upgrade_plan_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [software_upgrade_plan_order_by!] + + """filter the rows returned""" + where: software_upgrade_plan_bool_exp + ): software_upgrade_plan_aggregate! + + """ + fetch data from the table in a streaming manner: "software_upgrade_plan" + """ + software_upgrade_plan_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [software_upgrade_plan_stream_cursor_input]! + + """filter the rows returned""" + where: software_upgrade_plan_bool_exp + ): [software_upgrade_plan!]! + """ fetch data from the table: "staking_params" """ @@ -15625,6 +18285,20 @@ type subscription_root { """fetch data from the table: "staking_params" using primary key columns""" staking_params_by_pk(one_row_id: Boolean!): staking_params + """ + fetch data from the table in a streaming manner: "staking_params" + """ + staking_params_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [staking_params_stream_cursor_input]! + + """filter the rows returned""" + where: staking_params_bool_exp + ): [staking_params!]! + """ fetch data from the table: "staking_pool" """ @@ -15668,6 +18342,20 @@ type subscription_root { """fetch data from the table: "staking_pool" using primary key columns""" staking_pool_by_pk(one_row_id: Boolean!): staking_pool + """ + fetch data from the table in a streaming manner: "staking_pool" + """ + staking_pool_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [staking_pool_stream_cursor_input]! + + """filter the rows returned""" + where: staking_pool_bool_exp + ): [staking_pool!]! + """ fetch data from the table: "supply" """ @@ -15706,10 +18394,24 @@ type subscription_root { """filter the rows returned""" where: supply_bool_exp - ): supply_aggregate! - - """fetch data from the table: "supply" using primary key columns""" - supply_by_pk(one_row_id: Boolean!): supply + ): supply_aggregate! + + """fetch data from the table: "supply" using primary key columns""" + supply_by_pk(one_row_id: Boolean!): supply + + """ + fetch data from the table in a streaming manner: "supply" + """ + supply_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [supply_stream_cursor_input]! + + """filter the rows returned""" + where: supply_bool_exp + ): [supply!]! """ fetch data from the table: "token" @@ -15839,6 +18541,48 @@ type subscription_root { """ token_price_history_by_pk(id: Int!): token_price_history + """ + fetch data from the table in a streaming manner: "token_price_history" + """ + token_price_history_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [token_price_history_stream_cursor_input]! + + """filter the rows returned""" + where: token_price_history_bool_exp + ): [token_price_history!]! + + """ + fetch data from the table in a streaming manner: "token_price" + """ + token_price_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [token_price_stream_cursor_input]! + + """filter the rows returned""" + where: token_price_bool_exp + ): [token_price!]! + + """ + fetch data from the table in a streaming manner: "token" + """ + token_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [token_stream_cursor_input]! + + """filter the rows returned""" + where: token_bool_exp + ): [token!]! + """ fetch data from the table: "token_unit" """ @@ -15879,6 +18623,20 @@ type subscription_root { where: token_unit_bool_exp ): token_unit_aggregate! + """ + fetch data from the table in a streaming manner: "token_unit" + """ + token_unit_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [token_unit_stream_cursor_input]! + + """filter the rows returned""" + where: token_unit_bool_exp + ): [token_unit!]! + """ fetch data from the table: "transaction" """ @@ -15919,6 +18677,20 @@ type subscription_root { where: transaction_bool_exp ): transaction_aggregate! + """ + fetch data from the table in a streaming manner: "transaction" + """ + transaction_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [transaction_stream_cursor_input]! + + """filter the rows returned""" + where: transaction_bool_exp + ): [transaction!]! + """ fetch data from the table: "validator" """ @@ -16007,6 +18779,20 @@ type subscription_root { """ validator_commission_by_pk(validator_address: String!): validator_commission + """ + fetch data from the table in a streaming manner: "validator_commission" + """ + validator_commission_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_commission_stream_cursor_input]! + + """filter the rows returned""" + where: validator_commission_bool_exp + ): [validator_commission!]! + """ fetch data from the table: "validator_description" """ @@ -16052,6 +18838,20 @@ type subscription_root { """ validator_description_by_pk(validator_address: String!): validator_description + """ + fetch data from the table in a streaming manner: "validator_description" + """ + validator_description_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_description_stream_cursor_input]! + + """filter the rows returned""" + where: validator_description_bool_exp + ): [validator_description!]! + """ fetch data from the table: "validator_info" """ @@ -16095,6 +18895,20 @@ type subscription_root { """fetch data from the table: "validator_info" using primary key columns""" validator_info_by_pk(consensus_address: String!): validator_info + """ + fetch data from the table in a streaming manner: "validator_info" + """ + validator_info_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_info_stream_cursor_input]! + + """filter the rows returned""" + where: validator_info_bool_exp + ): [validator_info!]! + """ fetch data from the table: "validator_signing_info" """ @@ -16140,6 +18954,20 @@ type subscription_root { """ validator_signing_info_by_pk(validator_address: String!): validator_signing_info + """ + fetch data from the table in a streaming manner: "validator_signing_info" + """ + validator_signing_info_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_signing_info_stream_cursor_input]! + + """filter the rows returned""" + where: validator_signing_info_bool_exp + ): [validator_signing_info!]! + """ fetch data from the table: "validator_status" """ @@ -16185,6 +19013,34 @@ type subscription_root { """ validator_status_by_pk(validator_address: String!): validator_status + """ + fetch data from the table in a streaming manner: "validator_status" + """ + validator_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_status_stream_cursor_input]! + + """filter the rows returned""" + where: validator_status_bool_exp + ): [validator_status!]! + + """ + fetch data from the table in a streaming manner: "validator" + """ + validator_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_stream_cursor_input]! + + """filter the rows returned""" + where: validator_bool_exp + ): [validator!]! + """ fetch data from the table: "validator_voting_power" """ @@ -16230,6 +19086,20 @@ type subscription_root { """ validator_voting_power_by_pk(validator_address: String!): validator_voting_power + """ + fetch data from the table in a streaming manner: "validator_voting_power" + """ + validator_voting_power_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [validator_voting_power_stream_cursor_input]! + + """filter the rows returned""" + where: validator_voting_power_bool_exp + ): [validator_voting_power!]! + """ fetch data from the table: "vesting_account" """ @@ -16273,6 +19143,20 @@ type subscription_root { """fetch data from the table: "vesting_account" using primary key columns""" vesting_account_by_pk(id: Int!): vesting_account + """ + fetch data from the table in a streaming manner: "vesting_account" + """ + vesting_account_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [vesting_account_stream_cursor_input]! + + """filter the rows returned""" + where: vesting_account_bool_exp + ): [vesting_account!]! + """ fetch data from the table: "vesting_period" """ @@ -16312,13 +19196,27 @@ type subscription_root { """filter the rows returned""" where: vesting_period_bool_exp ): vesting_period_aggregate! + + """ + fetch data from the table in a streaming manner: "vesting_period" + """ + vesting_period_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [vesting_period_stream_cursor_input]! + + """filter the rows returned""" + where: vesting_period_bool_exp + ): [vesting_period!]! } """ columns and relationships of "supply" """ type supply { - coins: _coin! + coins: [coin!]! height: bigint! one_row_id: Boolean! } @@ -16360,7 +19258,7 @@ input supply_bool_exp { _and: [supply_bool_exp!] _not: supply_bool_exp _or: [supply_bool_exp!] - coins: _coin_comparison_exp + coins: coin_array_comparison_exp height: bigint_comparison_exp one_row_id: Boolean_comparison_exp } @@ -16369,7 +19267,9 @@ input supply_bool_exp { unique or primary key constraints on table "supply" """ enum supply_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "one_row_id" + """ supply_pkey } @@ -16384,18 +19284,20 @@ input supply_inc_input { input type for inserting data into table "supply" """ input supply_insert_input { - coins: _coin + coins: [coin!] height: bigint one_row_id: Boolean } """aggregate max on columns""" type supply_max_fields { + coins: [coin!] height: bigint } """aggregate min on columns""" type supply_min_fields { + coins: [coin!] height: bigint } @@ -16411,7 +19313,7 @@ type supply_mutation_response { } """ -on conflict condition type for table "supply" +on_conflict condition type for table "supply" """ input supply_on_conflict { constraint: supply_constraint! @@ -16449,7 +19351,7 @@ enum supply_select_column { input type for updating data in table "supply" """ input supply_set_input { - coins: _coin + coins: [coin!] height: bigint one_row_id: Boolean } @@ -16469,6 +19371,24 @@ type supply_stddev_samp_fields { height: Float } +""" +Streaming cursor of the table "supply" +""" +input supply_stream_cursor_input { + """Stream column input with initial value""" + initial_value: supply_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input supply_stream_cursor_value_input { + coins: [coin!] + height: bigint + one_row_id: Boolean +} + """aggregate sum on columns""" type supply_sum_fields { height: bigint @@ -16488,6 +19408,17 @@ enum supply_update_column { one_row_id } +input supply_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: supply_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: supply_set_input + + """filter the rows which have to be updated""" + where: supply_bool_exp! +} + """aggregate var_pop on columns""" type supply_var_pop_fields { height: Float @@ -16589,13 +19520,16 @@ input token_bool_exp { _or: [token_bool_exp!] name: String_comparison_exp token_units: token_unit_bool_exp + token_units_aggregate: token_unit_aggregate_bool_exp } """ unique or primary key constraints on table "token" """ enum token_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "name" + """ token_name_key } @@ -16634,12 +19568,12 @@ input type for inserting object relation for remote table "token" input token_obj_rel_insert_input { data: token_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_on_conflict } """ -on conflict condition type for table "token" +on_conflict condition type for table "token" """ input token_on_conflict { constraint: token_constraint! @@ -16675,6 +19609,17 @@ type token_price_aggregate { nodes: [token_price!]! } +input token_price_aggregate_bool_exp { + count: token_price_aggregate_bool_exp_count +} + +input token_price_aggregate_bool_exp_count { + arguments: [token_price_select_column!] + distinct: Boolean + filter: token_price_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "token_price" """ @@ -16715,7 +19660,7 @@ input type for inserting array relation for remote table "token_price" input token_price_arr_rel_insert_input { data: [token_price_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_on_conflict } @@ -16754,10 +19699,14 @@ input token_price_bool_exp { unique or primary key constraints on table "token_price" """ enum token_price_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ token_price_pkey - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "unit_name" + """ token_price_unit_name_key } @@ -16783,6 +19732,17 @@ type token_price_history_aggregate { nodes: [token_price_history!]! } +input token_price_history_aggregate_bool_exp { + count: token_price_history_aggregate_bool_exp_count +} + +input token_price_history_aggregate_bool_exp_count { + arguments: [token_price_history_select_column!] + distinct: Boolean + filter: token_price_history_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "token_price_history" """ @@ -16823,7 +19783,7 @@ input type for inserting array relation for remote table "token_price_history" input token_price_history_arr_rel_insert_input { data: [token_price_history_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_history_on_conflict } @@ -16862,10 +19822,14 @@ input token_price_history_bool_exp { unique or primary key constraints on table "token_price_history" """ enum token_price_history_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ token_price_history_pkey - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "timestamp", "unit_name" + """ unique_price_for_timestamp } @@ -16942,7 +19906,7 @@ type token_price_history_mutation_response { } """ -on conflict condition type for table "token_price_history" +on_conflict condition type for table "token_price_history" """ input token_price_history_on_conflict { constraint: token_price_history_constraint! @@ -17044,6 +20008,26 @@ input token_price_history_stddev_samp_order_by { price: order_by } +""" +Streaming cursor of the table "token_price_history" +""" +input token_price_history_stream_cursor_input { + """Stream column input with initial value""" + initial_value: token_price_history_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input token_price_history_stream_cursor_value_input { + id: Int + market_cap: bigint + price: numeric + timestamp: timestamp + unit_name: String +} + """aggregate sum on columns""" type token_price_history_sum_fields { id: Int @@ -17080,6 +20064,17 @@ enum token_price_history_update_column { unit_name } +input token_price_history_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: token_price_history_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: token_price_history_set_input + + """filter the rows which have to be updated""" + where: token_price_history_bool_exp! +} + """aggregate var_pop on columns""" type token_price_history_var_pop_fields { id: Float @@ -17206,12 +20201,12 @@ input type for inserting object relation for remote table "token_price" input token_price_obj_rel_insert_input { data: token_price_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_price_on_conflict } """ -on conflict condition type for table "token_price" +on_conflict condition type for table "token_price" """ input token_price_on_conflict { constraint: token_price_constraint! @@ -17313,6 +20308,26 @@ input token_price_stddev_samp_order_by { price: order_by } +""" +Streaming cursor of the table "token_price" +""" +input token_price_stream_cursor_input { + """Stream column input with initial value""" + initial_value: token_price_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input token_price_stream_cursor_value_input { + id: Int + market_cap: bigint + price: numeric + timestamp: timestamp + unit_name: String +} + """aggregate sum on columns""" type token_price_sum_fields { id: Int @@ -17349,6 +20364,17 @@ enum token_price_update_column { unit_name } +input token_price_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: token_price_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: token_price_set_input + + """filter the rows which have to be updated""" + where: token_price_bool_exp! +} + """aggregate var_pop on columns""" type token_price_var_pop_fields { id: Float @@ -17412,11 +20438,27 @@ input token_set_input { name: String } +""" +Streaming cursor of the table "token" +""" +input token_stream_cursor_input { + """Stream column input with initial value""" + initial_value: token_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input token_stream_cursor_value_input { + name: String +} + """ columns and relationships of "token_unit" """ type token_unit { - aliases: _text + aliases: [String!] denom: String! exponent: Int! price_id: String @@ -17509,6 +20551,17 @@ type token_unit_aggregate { nodes: [token_unit!]! } +input token_unit_aggregate_bool_exp { + count: token_unit_aggregate_bool_exp_count +} + +input token_unit_aggregate_bool_exp_count { + arguments: [token_unit_select_column!] + distinct: Boolean + filter: token_unit_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "token_unit" """ @@ -17549,7 +20602,7 @@ input type for inserting array relation for remote table "token_unit" input token_unit_arr_rel_insert_input { data: [token_unit_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: token_unit_on_conflict } @@ -17572,7 +20625,7 @@ input token_unit_bool_exp { _and: [token_unit_bool_exp!] _not: token_unit_bool_exp _or: [token_unit_bool_exp!] - aliases: _text_comparison_exp + aliases: String_array_comparison_exp denom: String_comparison_exp exponent: Int_comparison_exp price_id: String_comparison_exp @@ -17580,14 +20633,18 @@ input token_unit_bool_exp { token_name: String_comparison_exp token_price: token_price_bool_exp token_price_histories: token_price_history_bool_exp + token_price_histories_aggregate: token_price_history_aggregate_bool_exp token_prices: token_price_bool_exp + token_prices_aggregate: token_price_aggregate_bool_exp } """ unique or primary key constraints on table "token_unit" """ enum token_unit_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "denom" + """ token_unit_denom_key } @@ -17602,7 +20659,7 @@ input token_unit_inc_input { input type for inserting data into table "token_unit" """ input token_unit_insert_input { - aliases: _text + aliases: [String!] denom: String exponent: Int price_id: String @@ -17615,6 +20672,7 @@ input token_unit_insert_input { """aggregate max on columns""" type token_unit_max_fields { + aliases: [String!] denom: String exponent: Int price_id: String @@ -17625,6 +20683,7 @@ type token_unit_max_fields { order by max() on columns of table "token_unit" """ input token_unit_max_order_by { + aliases: order_by denom: order_by exponent: order_by price_id: order_by @@ -17633,6 +20692,7 @@ input token_unit_max_order_by { """aggregate min on columns""" type token_unit_min_fields { + aliases: [String!] denom: String exponent: Int price_id: String @@ -17643,6 +20703,7 @@ type token_unit_min_fields { order by min() on columns of table "token_unit" """ input token_unit_min_order_by { + aliases: order_by denom: order_by exponent: order_by price_id: order_by @@ -17666,12 +20727,12 @@ input type for inserting object relation for remote table "token_unit" input token_unit_obj_rel_insert_input { data: token_unit_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: token_unit_on_conflict } """ -on conflict condition type for table "token_unit" +on_conflict condition type for table "token_unit" """ input token_unit_on_conflict { constraint: token_unit_constraint! @@ -17716,7 +20777,7 @@ enum token_unit_select_column { input type for updating data in table "token_unit" """ input token_unit_set_input { - aliases: _text + aliases: [String!] denom: String exponent: Int price_id: String @@ -17759,6 +20820,26 @@ input token_unit_stddev_samp_order_by { exponent: order_by } +""" +Streaming cursor of the table "token_unit" +""" +input token_unit_stream_cursor_input { + """Stream column input with initial value""" + initial_value: token_unit_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input token_unit_stream_cursor_value_input { + aliases: [String!] + denom: String + exponent: Int + price_id: String + token_name: String +} + """aggregate sum on columns""" type token_unit_sum_fields { exponent: Int @@ -17791,6 +20872,17 @@ enum token_unit_update_column { token_name } +input token_unit_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: token_unit_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: token_unit_set_input + + """filter the rows which have to be updated""" + where: token_unit_bool_exp! +} + """aggregate var_pop on columns""" type token_unit_var_pop_fields { exponent: Float @@ -17835,6 +20927,14 @@ enum token_update_column { name } +input token_updates { + """sets the columns of the filtered rows to the given values""" + _set: token_set_input + + """filter the rows which have to be updated""" + where: token_bool_exp! +} + """ columns and relationships of "transaction" """ @@ -17860,7 +20960,7 @@ type transaction { ): jsonb! partition_id: bigint! raw_log: String - signatures: _text! + signatures: [String!]! signer_infos( """JSON select path""" path: String @@ -17876,6 +20976,33 @@ type transaction_aggregate { nodes: [transaction!]! } +input transaction_aggregate_bool_exp { + bool_and: transaction_aggregate_bool_exp_bool_and + bool_or: transaction_aggregate_bool_exp_bool_or + count: transaction_aggregate_bool_exp_count +} + +input transaction_aggregate_bool_exp_bool_and { + arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: transaction_bool_exp + predicate: Boolean_comparison_exp! +} + +input transaction_aggregate_bool_exp_bool_or { + arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: transaction_bool_exp + predicate: Boolean_comparison_exp! +} + +input transaction_aggregate_bool_exp_count { + arguments: [transaction_select_column!] + distinct: Boolean + filter: transaction_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "transaction" """ @@ -17924,7 +21051,7 @@ input type for inserting array relation for remote table "transaction" input transaction_arr_rel_insert_input { data: [transaction_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: transaction_on_conflict } @@ -17964,7 +21091,7 @@ input transaction_bool_exp { messages: jsonb_comparison_exp partition_id: bigint_comparison_exp raw_log: String_comparison_exp - signatures: _text_comparison_exp + signatures: String_array_comparison_exp signer_infos: jsonb_comparison_exp success: Boolean_comparison_exp } @@ -17973,7 +21100,9 @@ input transaction_bool_exp { unique or primary key constraints on table "transaction" """ enum transaction_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "partition_id", "hash" + """ unique_tx } @@ -18032,7 +21161,7 @@ input transaction_insert_input { messages: jsonb partition_id: bigint raw_log: String - signatures: _text + signatures: [String!] signer_infos: jsonb success: Boolean } @@ -18046,6 +21175,7 @@ type transaction_max_fields { memo: String partition_id: bigint raw_log: String + signatures: [String!] } """ @@ -18059,6 +21189,7 @@ input transaction_max_order_by { memo: order_by partition_id: order_by raw_log: order_by + signatures: order_by } """aggregate min on columns""" @@ -18070,6 +21201,7 @@ type transaction_min_fields { memo: String partition_id: bigint raw_log: String + signatures: [String!] } """ @@ -18083,6 +21215,7 @@ input transaction_min_order_by { memo: order_by partition_id: order_by raw_log: order_by + signatures: order_by } """ @@ -18102,12 +21235,12 @@ input type for inserting object relation for remote table "transaction" input transaction_obj_rel_insert_input { data: transaction_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: transaction_on_conflict } """ -on conflict condition type for table "transaction" +on_conflict condition type for table "transaction" """ input transaction_on_conflict { constraint: transaction_constraint! @@ -18185,6 +21318,22 @@ enum transaction_select_column { success } +""" +select "transaction_aggregate_bool_exp_bool_and_arguments_columns" columns of table "transaction" +""" +enum transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + success +} + +""" +select "transaction_aggregate_bool_exp_bool_or_arguments_columns" columns of table "transaction" +""" +enum transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + success +} + """ input type for updating data in table "transaction" """ @@ -18199,7 +21348,7 @@ input transaction_set_input { messages: jsonb partition_id: bigint raw_log: String - signatures: _text + signatures: [String!] signer_infos: jsonb success: Boolean } @@ -18258,6 +21407,34 @@ input transaction_stddev_samp_order_by { partition_id: order_by } +""" +Streaming cursor of the table "transaction" +""" +input transaction_stream_cursor_input { + """Stream column input with initial value""" + initial_value: transaction_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input transaction_stream_cursor_value_input { + fee: jsonb + gas_used: bigint + gas_wanted: bigint + hash: String + height: bigint + logs: jsonb + memo: String + messages: jsonb + partition_id: bigint + raw_log: String + signatures: [String!] + signer_infos: jsonb + success: Boolean +} + """aggregate sum on columns""" type transaction_sum_fields { gas_used: bigint @@ -18320,6 +21497,38 @@ enum transaction_update_column { success } +input transaction_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: transaction_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: transaction_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: transaction_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: transaction_delete_key_input + + """increments the numeric columns with given value of the filtered values""" + _inc: transaction_inc_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: transaction_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: transaction_set_input + + """filter the rows which have to be updated""" + where: transaction_bool_exp! +} + """aggregate var_pop on columns""" type transaction_var_pop_fields { gas_used: Float @@ -18772,19 +21981,29 @@ input validator_bool_exp { _not: validator_bool_exp _or: [validator_bool_exp!] blocks: block_bool_exp + blocks_aggregate: block_aggregate_bool_exp consensus_address: String_comparison_exp consensus_pubkey: String_comparison_exp double_sign_votes: double_sign_vote_bool_exp + double_sign_votes_aggregate: double_sign_vote_aggregate_bool_exp pre_commits: pre_commit_bool_exp + pre_commits_aggregate: pre_commit_aggregate_bool_exp proposal_validator_status_snapshot: proposal_validator_status_snapshot_bool_exp proposal_validator_status_snapshots: proposal_validator_status_snapshot_bool_exp + proposal_validator_status_snapshots_aggregate: proposal_validator_status_snapshot_aggregate_bool_exp validator_commissions: validator_commission_bool_exp + validator_commissions_aggregate: validator_commission_aggregate_bool_exp validator_descriptions: validator_description_bool_exp + validator_descriptions_aggregate: validator_description_aggregate_bool_exp validator_info: validator_info_bool_exp validator_infos: validator_info_bool_exp + validator_infos_aggregate: validator_info_aggregate_bool_exp validator_signing_infos: validator_signing_info_bool_exp + validator_signing_infos_aggregate: validator_signing_info_aggregate_bool_exp validator_statuses: validator_status_bool_exp + validator_statuses_aggregate: validator_status_aggregate_bool_exp validator_voting_powers: validator_voting_power_bool_exp + validator_voting_powers_aggregate: validator_voting_power_aggregate_bool_exp } """ @@ -18808,6 +22027,17 @@ type validator_commission_aggregate { nodes: [validator_commission!]! } +input validator_commission_aggregate_bool_exp { + count: validator_commission_aggregate_bool_exp_count +} + +input validator_commission_aggregate_bool_exp_count { + arguments: [validator_commission_select_column!] + distinct: Boolean + filter: validator_commission_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_commission" """ @@ -18848,7 +22078,7 @@ input type for inserting array relation for remote table "validator_commission" input validator_commission_arr_rel_insert_input { data: [validator_commission_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_commission_on_conflict } @@ -18886,7 +22116,9 @@ input validator_commission_bool_exp { unique or primary key constraints on table "validator_commission" """ enum validator_commission_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address" + """ validator_commission_pkey } @@ -18958,7 +22190,7 @@ type validator_commission_mutation_response { } """ -on conflict condition type for table "validator_commission" +on_conflict condition type for table "validator_commission" """ input validator_commission_on_conflict { constraint: validator_commission_constraint! @@ -19055,6 +22287,25 @@ input validator_commission_stddev_samp_order_by { min_self_delegation: order_by } +""" +Streaming cursor of the table "validator_commission" +""" +input validator_commission_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_commission_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_commission_stream_cursor_value_input { + commission: numeric + height: bigint + min_self_delegation: bigint + validator_address: String +} + """aggregate sum on columns""" type validator_commission_sum_fields { commission: numeric @@ -19088,6 +22339,17 @@ enum validator_commission_update_column { validator_address } +input validator_commission_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_commission_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_commission_set_input + + """filter the rows which have to be updated""" + where: validator_commission_bool_exp! +} + """aggregate var_pop on columns""" type validator_commission_var_pop_fields { commission: Float @@ -19140,10 +22402,14 @@ input validator_commission_variance_order_by { unique or primary key constraints on table "validator" """ enum validator_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "consensus_pubkey" + """ validator_consensus_pubkey_key - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "consensus_address" + """ validator_pkey } @@ -19172,6 +22438,17 @@ type validator_description_aggregate { nodes: [validator_description!]! } +input validator_description_aggregate_bool_exp { + count: validator_description_aggregate_bool_exp_count +} + +input validator_description_aggregate_bool_exp_count { + arguments: [validator_description_select_column!] + distinct: Boolean + filter: validator_description_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_description" """ @@ -19212,7 +22489,7 @@ input type for inserting array relation for remote table "validator_description" input validator_description_arr_rel_insert_input { data: [validator_description_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_description_on_conflict } @@ -19250,7 +22527,9 @@ input validator_description_bool_exp { unique or primary key constraints on table "validator_description" """ enum validator_description_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address" + """ validator_description_pkey } @@ -19340,7 +22619,7 @@ type validator_description_mutation_response { } """ -on conflict condition type for table "validator_description" +on_conflict condition type for table "validator_description" """ input validator_description_on_conflict { constraint: validator_description_constraint! @@ -19445,6 +22724,29 @@ input validator_description_stddev_samp_order_by { height: order_by } +""" +Streaming cursor of the table "validator_description" +""" +input validator_description_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_description_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_description_stream_cursor_value_input { + avatar_url: String + details: String + height: bigint + identity: String + moniker: String + security_contact: String + validator_address: String + website: String +} + """aggregate sum on columns""" type validator_description_sum_fields { height: bigint @@ -19486,6 +22788,17 @@ enum validator_description_update_column { website } +input validator_description_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_description_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_description_set_input + + """filter the rows which have to be updated""" + where: validator_description_bool_exp! +} + """aggregate var_pop on columns""" type validator_description_var_pop_fields { height: Float @@ -19547,6 +22860,17 @@ type validator_info_aggregate { nodes: [validator_info!]! } +input validator_info_aggregate_bool_exp { + count: validator_info_aggregate_bool_exp_count +} + +input validator_info_aggregate_bool_exp_count { + arguments: [validator_info_select_column!] + distinct: Boolean + filter: validator_info_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_info" """ @@ -19587,7 +22911,7 @@ input type for inserting array relation for remote table "validator_info" input validator_info_arr_rel_insert_input { data: [validator_info_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_info_on_conflict } @@ -19624,10 +22948,9 @@ input validator_info_bool_exp { unique or primary key constraints on table "validator_info" """ enum validator_info_constraint { - """unique or primary key constraint""" - validator_info_operator_address_key - - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "consensus_address" + """ validator_info_pkey } @@ -19713,12 +23036,12 @@ input type for inserting object relation for remote table "validator_info" input validator_info_obj_rel_insert_input { data: validator_info_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_info_on_conflict } """ -on conflict condition type for table "validator_info" +on_conflict condition type for table "validator_info" """ input validator_info_on_conflict { constraint: validator_info_constraint! @@ -19814,6 +23137,27 @@ input validator_info_stddev_samp_order_by { height: order_by } +""" +Streaming cursor of the table "validator_info" +""" +input validator_info_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_info_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_info_stream_cursor_value_input { + consensus_address: String + height: bigint + max_change_rate: String + max_rate: String + operator_address: String + self_delegate_address: String +} + """aggregate sum on columns""" type validator_info_sum_fields { height: bigint @@ -19849,6 +23193,17 @@ enum validator_info_update_column { self_delegate_address } +input validator_info_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_info_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_info_set_input + + """filter the rows which have to be updated""" + where: validator_info_bool_exp! +} + """aggregate var_pop on columns""" type validator_info_var_pop_fields { height: Float @@ -19934,12 +23289,12 @@ input type for inserting object relation for remote table "validator" input validator_obj_rel_insert_input { data: validator_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: validator_on_conflict } """ -on conflict condition type for table "validator" +on_conflict condition type for table "validator" """ input validator_on_conflict { constraint: validator_constraint! @@ -20010,6 +23365,33 @@ type validator_signing_info_aggregate { nodes: [validator_signing_info!]! } +input validator_signing_info_aggregate_bool_exp { + bool_and: validator_signing_info_aggregate_bool_exp_bool_and + bool_or: validator_signing_info_aggregate_bool_exp_bool_or + count: validator_signing_info_aggregate_bool_exp_count +} + +input validator_signing_info_aggregate_bool_exp_bool_and { + arguments: validator_signing_info_select_column_validator_signing_info_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: validator_signing_info_bool_exp + predicate: Boolean_comparison_exp! +} + +input validator_signing_info_aggregate_bool_exp_bool_or { + arguments: validator_signing_info_select_column_validator_signing_info_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: validator_signing_info_bool_exp + predicate: Boolean_comparison_exp! +} + +input validator_signing_info_aggregate_bool_exp_count { + arguments: [validator_signing_info_select_column!] + distinct: Boolean + filter: validator_signing_info_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_signing_info" """ @@ -20050,7 +23432,7 @@ input type for inserting array relation for remote table "validator_signing_info input validator_signing_info_arr_rel_insert_input { data: [validator_signing_info_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_signing_info_on_conflict } @@ -20092,7 +23474,9 @@ input validator_signing_info_bool_exp { unique or primary key constraints on table "validator_signing_info" """ enum validator_signing_info_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address" + """ validator_signing_info_pkey } @@ -20175,7 +23559,7 @@ type validator_signing_info_mutation_response { } """ -on conflict condition type for table "validator_signing_info" +on_conflict condition type for table "validator_signing_info" """ input validator_signing_info_on_conflict { constraint: validator_signing_info_constraint! @@ -20225,6 +23609,22 @@ enum validator_signing_info_select_column { validator_address } +""" +select "validator_signing_info_aggregate_bool_exp_bool_and_arguments_columns" columns of table "validator_signing_info" +""" +enum validator_signing_info_select_column_validator_signing_info_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + tombstoned +} + +""" +select "validator_signing_info_aggregate_bool_exp_bool_or_arguments_columns" columns of table "validator_signing_info" +""" +enum validator_signing_info_select_column_validator_signing_info_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + tombstoned +} + """ input type for updating data in table "validator_signing_info" """ @@ -20292,6 +23692,28 @@ input validator_signing_info_stddev_samp_order_by { start_height: order_by } +""" +Streaming cursor of the table "validator_signing_info" +""" +input validator_signing_info_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_signing_info_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_signing_info_stream_cursor_value_input { + height: bigint + index_offset: bigint + jailed_until: timestamp + missed_blocks_counter: bigint + start_height: bigint + tombstoned: Boolean + validator_address: String +} + """aggregate sum on columns""" type validator_signing_info_sum_fields { height: bigint @@ -20336,6 +23758,17 @@ enum validator_signing_info_update_column { validator_address } +input validator_signing_info_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_signing_info_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_signing_info_set_input + + """filter the rows which have to be updated""" + where: validator_signing_info_bool_exp! +} + """aggregate var_pop on columns""" type validator_signing_info_var_pop_fields { height: Float @@ -20397,7 +23830,6 @@ type validator_status { height: bigint! jailed: Boolean! status: Int! - tombstoned: Boolean! """An object relationship""" validator: validator! @@ -20412,6 +23844,33 @@ type validator_status_aggregate { nodes: [validator_status!]! } +input validator_status_aggregate_bool_exp { + bool_and: validator_status_aggregate_bool_exp_bool_and + bool_or: validator_status_aggregate_bool_exp_bool_or + count: validator_status_aggregate_bool_exp_count +} + +input validator_status_aggregate_bool_exp_bool_and { + arguments: validator_status_select_column_validator_status_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: validator_status_bool_exp + predicate: Boolean_comparison_exp! +} + +input validator_status_aggregate_bool_exp_bool_or { + arguments: validator_status_select_column_validator_status_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: validator_status_bool_exp + predicate: Boolean_comparison_exp! +} + +input validator_status_aggregate_bool_exp_count { + arguments: [validator_status_select_column!] + distinct: Boolean + filter: validator_status_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_status" """ @@ -20452,7 +23911,7 @@ input type for inserting array relation for remote table "validator_status" input validator_status_arr_rel_insert_input { data: [validator_status_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_status_on_conflict } @@ -20480,7 +23939,6 @@ input validator_status_bool_exp { height: bigint_comparison_exp jailed: Boolean_comparison_exp status: Int_comparison_exp - tombstoned: Boolean_comparison_exp validator: validator_bool_exp validator_address: String_comparison_exp } @@ -20489,7 +23947,9 @@ input validator_status_bool_exp { unique or primary key constraints on table "validator_status" """ enum validator_status_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address" + """ validator_status_pkey } @@ -20508,7 +23968,6 @@ input validator_status_insert_input { height: bigint jailed: Boolean status: Int - tombstoned: Boolean validator: validator_obj_rel_insert_input validator_address: String } @@ -20557,7 +24016,7 @@ type validator_status_mutation_response { } """ -on conflict condition type for table "validator_status" +on_conflict condition type for table "validator_status" """ input validator_status_on_conflict { constraint: validator_status_constraint! @@ -20570,7 +24029,6 @@ input validator_status_order_by { height: order_by jailed: order_by status: order_by - tombstoned: order_by validator: validator_order_by validator_address: order_by } @@ -20594,10 +24052,23 @@ enum validator_status_select_column { status """column name""" - tombstoned + validator_address +} +""" +select "validator_status_aggregate_bool_exp_bool_and_arguments_columns" columns of table "validator_status" +""" +enum validator_status_select_column_validator_status_aggregate_bool_exp_bool_and_arguments_columns { """column name""" - validator_address + jailed +} + +""" +select "validator_status_aggregate_bool_exp_bool_or_arguments_columns" columns of table "validator_status" +""" +enum validator_status_select_column_validator_status_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + jailed } """ @@ -20607,7 +24078,6 @@ input validator_status_set_input { height: bigint jailed: Boolean status: Int - tombstoned: Boolean validator_address: String } @@ -20653,6 +24123,25 @@ input validator_status_stddev_samp_order_by { status: order_by } +""" +Streaming cursor of the table "validator_status" +""" +input validator_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_status_stream_cursor_value_input { + height: bigint + jailed: Boolean + status: Int + validator_address: String +} + """aggregate sum on columns""" type validator_status_sum_fields { height: bigint @@ -20680,13 +24169,21 @@ enum validator_status_update_column { """column name""" status - """column name""" - tombstoned - """column name""" validator_address } +input validator_status_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_status_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_status_set_input + + """filter the rows which have to be updated""" + where: validator_status_bool_exp! +} + """aggregate var_pop on columns""" type validator_status_var_pop_fields { height: Float @@ -20729,6 +24226,23 @@ input validator_status_variance_order_by { status: order_by } +""" +Streaming cursor of the table "validator" +""" +input validator_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_stream_cursor_value_input { + consensus_address: String + consensus_pubkey: String +} + """ update columns of table "validator" """ @@ -20740,6 +24254,14 @@ enum validator_update_column { consensus_pubkey } +input validator_updates { + """sets the columns of the filtered rows to the given values""" + _set: validator_set_input + + """filter the rows which have to be updated""" + where: validator_bool_exp! +} + """ columns and relationships of "validator_voting_power" """ @@ -20762,6 +24284,17 @@ type validator_voting_power_aggregate { nodes: [validator_voting_power!]! } +input validator_voting_power_aggregate_bool_exp { + count: validator_voting_power_aggregate_bool_exp_count +} + +input validator_voting_power_aggregate_bool_exp_count { + arguments: [validator_voting_power_select_column!] + distinct: Boolean + filter: validator_voting_power_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "validator_voting_power" """ @@ -20802,7 +24335,7 @@ input type for inserting array relation for remote table "validator_voting_power input validator_voting_power_arr_rel_insert_input { data: [validator_voting_power_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: validator_voting_power_on_conflict } @@ -20838,7 +24371,9 @@ input validator_voting_power_bool_exp { unique or primary key constraints on table "validator_voting_power" """ enum validator_voting_power_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "validator_address" + """ validator_voting_power_pkey } @@ -20905,7 +24440,7 @@ type validator_voting_power_mutation_response { } """ -on conflict condition type for table "validator_voting_power" +on_conflict condition type for table "validator_voting_power" """ input validator_voting_power_on_conflict { constraint: validator_voting_power_constraint! @@ -20992,6 +24527,24 @@ input validator_voting_power_stddev_samp_order_by { voting_power: order_by } +""" +Streaming cursor of the table "validator_voting_power" +""" +input validator_voting_power_stream_cursor_input { + """Stream column input with initial value""" + initial_value: validator_voting_power_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input validator_voting_power_stream_cursor_value_input { + height: bigint + validator_address: String + voting_power: bigint +} + """aggregate sum on columns""" type validator_voting_power_sum_fields { height: bigint @@ -21020,6 +24573,17 @@ enum validator_voting_power_update_column { voting_power } +input validator_voting_power_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: validator_voting_power_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: validator_voting_power_set_input + + """filter the rows which have to be updated""" + where: validator_voting_power_bool_exp! +} + """aggregate var_pop on columns""" type validator_voting_power_var_pop_fields { height: Float @@ -21071,7 +24635,7 @@ type vesting_account { address: String! end_time: timestamp! id: Int! - original_vesting: _coin! + original_vesting: [coin!]! start_time: timestamp type: String! @@ -21120,6 +24684,17 @@ type vesting_account_aggregate { nodes: [vesting_account!]! } +input vesting_account_aggregate_bool_exp { + count: vesting_account_aggregate_bool_exp_count +} + +input vesting_account_aggregate_bool_exp_count { + arguments: [vesting_account_select_column!] + distinct: Boolean + filter: vesting_account_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "vesting_account" """ @@ -21160,7 +24735,7 @@ input type for inserting array relation for remote table "vesting_account" input vesting_account_arr_rel_insert_input { data: [vesting_account_insert_input!]! - """on conflict condition""" + """upsert condition""" on_conflict: vesting_account_on_conflict } @@ -21187,20 +24762,25 @@ input vesting_account_bool_exp { address: String_comparison_exp end_time: timestamp_comparison_exp id: Int_comparison_exp - original_vesting: _coin_comparison_exp + original_vesting: coin_array_comparison_exp start_time: timestamp_comparison_exp type: String_comparison_exp vesting_periods: vesting_period_bool_exp + vesting_periods_aggregate: vesting_period_aggregate_bool_exp } """ unique or primary key constraints on table "vesting_account" """ enum vesting_account_constraint { - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "address" + """ vesting_account_address_idx - """unique or primary key constraint""" + """ + unique or primary key constraint on columns "id" + """ vesting_account_pkey } @@ -21219,7 +24799,7 @@ input vesting_account_insert_input { address: String end_time: timestamp id: Int - original_vesting: _coin + original_vesting: [coin!] start_time: timestamp type: String vesting_periods: vesting_period_arr_rel_insert_input @@ -21230,6 +24810,7 @@ type vesting_account_max_fields { address: String end_time: timestamp id: Int + original_vesting: [coin!] start_time: timestamp type: String } @@ -21241,6 +24822,7 @@ input vesting_account_max_order_by { address: order_by end_time: order_by id: order_by + original_vesting: order_by start_time: order_by type: order_by } @@ -21250,6 +24832,7 @@ type vesting_account_min_fields { address: String end_time: timestamp id: Int + original_vesting: [coin!] start_time: timestamp type: String } @@ -21261,6 +24844,7 @@ input vesting_account_min_order_by { address: order_by end_time: order_by id: order_by + original_vesting: order_by start_time: order_by type: order_by } @@ -21282,12 +24866,12 @@ input type for inserting object relation for remote table "vesting_account" input vesting_account_obj_rel_insert_input { data: vesting_account_insert_input! - """on conflict condition""" + """upsert condition""" on_conflict: vesting_account_on_conflict } """ -on conflict condition type for table "vesting_account" +on_conflict condition type for table "vesting_account" """ input vesting_account_on_conflict { constraint: vesting_account_constraint! @@ -21342,7 +24926,7 @@ input vesting_account_set_input { address: String end_time: timestamp id: Int - original_vesting: _coin + original_vesting: [coin!] start_time: timestamp type: String } @@ -21383,6 +24967,27 @@ input vesting_account_stddev_samp_order_by { id: order_by } +""" +Streaming cursor of the table "vesting_account" +""" +input vesting_account_stream_cursor_input { + """Stream column input with initial value""" + initial_value: vesting_account_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input vesting_account_stream_cursor_value_input { + address: String + end_time: timestamp + id: Int + original_vesting: [coin!] + start_time: timestamp + type: String +} + """aggregate sum on columns""" type vesting_account_sum_fields { id: Int @@ -21418,6 +25023,17 @@ enum vesting_account_update_column { type } +input vesting_account_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: vesting_account_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: vesting_account_set_input + + """filter the rows which have to be updated""" + where: vesting_account_bool_exp! +} + """aggregate var_pop on columns""" type vesting_account_var_pop_fields { id: Float @@ -21458,7 +25074,7 @@ input vesting_account_variance_order_by { columns and relationships of "vesting_period" """ type vesting_period { - amount: _coin! + amount: [coin!]! length: bigint! period_order: bigint! @@ -21475,6 +25091,17 @@ type vesting_period_aggregate { nodes: [vesting_period!]! } +input vesting_period_aggregate_bool_exp { + count: vesting_period_aggregate_bool_exp_count +} + +input vesting_period_aggregate_bool_exp_count { + arguments: [vesting_period_select_column!] + distinct: Boolean + filter: vesting_period_bool_exp + predicate: Int_comparison_exp! +} + """ aggregate fields of "vesting_period" """ @@ -21539,7 +25166,7 @@ input vesting_period_bool_exp { _and: [vesting_period_bool_exp!] _not: vesting_period_bool_exp _or: [vesting_period_bool_exp!] - amount: _coin_comparison_exp + amount: coin_array_comparison_exp length: bigint_comparison_exp period_order: bigint_comparison_exp vesting_account: vesting_account_bool_exp @@ -21559,7 +25186,7 @@ input vesting_period_inc_input { input type for inserting data into table "vesting_period" """ input vesting_period_insert_input { - amount: _coin + amount: [coin!] length: bigint period_order: bigint vesting_account: vesting_account_obj_rel_insert_input @@ -21568,6 +25195,7 @@ input vesting_period_insert_input { """aggregate max on columns""" type vesting_period_max_fields { + amount: [coin!] length: bigint period_order: bigint vesting_account_id: bigint @@ -21577,6 +25205,7 @@ type vesting_period_max_fields { order by max() on columns of table "vesting_period" """ input vesting_period_max_order_by { + amount: order_by length: order_by period_order: order_by vesting_account_id: order_by @@ -21584,6 +25213,7 @@ input vesting_period_max_order_by { """aggregate min on columns""" type vesting_period_min_fields { + amount: [coin!] length: bigint period_order: bigint vesting_account_id: bigint @@ -21593,6 +25223,7 @@ type vesting_period_min_fields { order by min() on columns of table "vesting_period" """ input vesting_period_min_order_by { + amount: order_by length: order_by period_order: order_by vesting_account_id: order_by @@ -21639,7 +25270,7 @@ enum vesting_period_select_column { input type for updating data in table "vesting_period" """ input vesting_period_set_input { - amount: _coin + amount: [coin!] length: bigint period_order: bigint vesting_account_id: bigint @@ -21693,6 +25324,25 @@ input vesting_period_stddev_samp_order_by { vesting_account_id: order_by } +""" +Streaming cursor of the table "vesting_period" +""" +input vesting_period_stream_cursor_input { + """Stream column input with initial value""" + initial_value: vesting_period_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input vesting_period_stream_cursor_value_input { + amount: [coin!] + length: bigint + period_order: bigint + vesting_account_id: bigint +} + """aggregate sum on columns""" type vesting_period_sum_fields { length: bigint @@ -21709,6 +25359,17 @@ input vesting_period_sum_order_by { vesting_account_id: order_by } +input vesting_period_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: vesting_period_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: vesting_period_set_input + + """filter the rows which have to be updated""" + where: vesting_period_bool_exp! +} + """aggregate var_pop on columns""" type vesting_period_var_pop_fields { length: Float